@@ -140,15 +140,15 @@ you'll need to run `git submodule update --init` once.
140140## Building
141141
142142Currently there are two different build setups for .NET Framework 3.5
143- and .NET Standard 2.0. Bith build from the same sources and run the
143+ and .NET Standard 2.0. Both build from the same sources and run the
144144same tests but use separate solution and project files. The
145145constraints for NUnit 2.x are ony built as part of the .NET Framework
146146/ Mono build.
147147
148148### .NET Framework / Mono 3.5
149149
150150XMLUnit for .NET uses NuGet and ` msbuild ` /` xbuild ` - or Visual Studio
151- 2015 . The correspondig solution and project files are suffixed with
151+ 2013 . The correspondig solution and project files are suffixed with
152152` .NetFramework ` .
153153
154154When using Visual Studio the build should automatically refresh the
@@ -194,7 +194,7 @@ trusted by Firefox' default installation.
194194### .NET Standard 2.0
195195
196196XMLUnit for .NET uses the ` dotnet ` CLI - or Visual Studio
197- 2017 . In order to run the tests, .NET Core 2.0 ist requested .
197+ 2017 . In order to run the tests, .NET Core 2.0 is required .
198198
199199When using Visual Studio the build should automatically refresh the
200200NuGet packages, build the ` core ` and ` constraints ` assemblies as well
@@ -213,9 +213,11 @@ only NUnit right now). After that you can run `dotnet` like
213213> dotnet build XMLUnit.NET.sln -c Debug
214214```
215215
216- which compiles ` core ` and ` constraints ` and builds the assemblies. In
217- order to run the tests use
216+ which compiles ` core ` , ` constraints ` and ` placeholder ` and builds the
217+ assemblies. In order to run the tests use
218218
219219``` sh
220- > dotnet test XMLUnit.NET.sln
220+ > dotnet test src/tests/net-core/XMLUnit.Core.Tests.csproj
221+ > dotnet test src/tests/net-constraints-nunit3/XMLUnit.NUnit3.Constraints.Test.csproj
222+ > dotnet test src/tests/net-placeholders/XMLUnit.Placeholders.Tests.csproj
221223```
0 commit comments