@@ -21,7 +21,7 @@ The following build targets are defined in `build.proj`:
21
21
| Target| Description|
22
22
| -| -|
23
23
| ` BuildAllConfigurations ` | Default target. Builds the .NET Framework and .NET drivers for all target frameworks and operating systems.|
24
- | ` BuildExtensionsPackage ` | Restore, build, and pack the Extensions package, publishing the resulting NuGet into ` packages/ ` .|
24
+ | ` BuildAbstractionsPackage ` | Restore, build, and pack the Abstractions package, publishing the resulting NuGet into ` packages/ ` .|
25
25
| ` BuildNetCore ` | Builds the .NET driver for all target frameworks.|
26
26
| ` BuildNetCoreAllOS ` | Builds the .NET driver for all target frameworks and operating systems.|
27
27
| ` BuildNetFx ` | Builds the .NET Framework driver for all target frameworks.|
56
56
Using the default configuration and running all tests:
57
57
58
58
``` bash
59
- msbuild -t:BuildExtensionsPackage
59
+ msbuild -t:BuildAbstractionsPackage
60
60
msbuild
61
61
msbuild -t:BuildTestsNetFx -p:TF=net462
62
62
msbuild -t:BuildTestsNetCore
@@ -66,7 +66,7 @@ msbuild -t:RunTests
66
66
Using the Release configuration:
67
67
68
68
``` bash
69
- msbuild -t:BuildExtensionsPackage -p:Configuration=Release
69
+ msbuild -t:BuildAbstractionsPackage -p:Configuration=Release
70
70
msbuild -p:Configuration=Release
71
71
msbuild -t:BuildTestsNetFx -p:TF=net462 -p:Configuration=Release
72
72
msbuild -t:BuildTestsNetCore -p:Configuration=Release
@@ -76,7 +76,7 @@ msbuild -t:RunTests -p:Configuration=Release
76
76
Running only the unit tests:
77
77
78
78
``` bash
79
- msbuild -t:BuildExtensionsPackage
79
+ msbuild -t:BuildAbstractionsPackage
80
80
msbuild
81
81
msbuild -t:BuildTestsNetFx -p:TF=net462
82
82
msbuild -t:BuildTestsNetCore
@@ -86,7 +86,7 @@ msbuild -t:RunUnitTests
86
86
Using a specific .NET runtime to run tests:
87
87
88
88
``` bash
89
- msbuild -t:BuildExtensionsPackage
89
+ msbuild -t:BuildAbstractionsPackage
90
90
msbuild
91
91
msbuild -t:BuildTestsNetFx -p:TF=net462
92
92
msbuild -t:BuildTestsNetCore
@@ -210,7 +210,7 @@ Tests can be built and run with custom "Reference Type" property that enables di
210
210
> CREATE A NUGET PACKAGE WITH BELOW COMMAND AND ADD TO LOCAL FOLDER + UPDATE NUGET CONFIG FILE TO READ FROM THAT LOCATION
211
211
>
212
212
> ``` bash
213
- > msbuild -t:BuildExtensionsPackage -p:Configuration=Release
213
+ > msbuild -t:BuildAbstractionsPackage -p:Configuration=Release
214
214
> msbuild -p:Configuration=Release
215
215
> ` ` `
216
216
0 commit comments