@@ -72,6 +72,7 @@ The following build targets are defined in `build.proj`:
7272| ` BuildNetCore ` | Builds the .NET driver for all target frameworks.|
7373| ` BuildNetCoreAllOS ` | Builds the .NET driver for all target frameworks and operating systems.|
7474| ` BuildNetFx ` | Builds the .NET Framework driver for all target frameworks.|
75+ | ` BuildSqlClient ` | Build the driver for all target frameworks.|
7576| ` Clean ` | Cleans all generated files.|
7677| ` PackAbstractions ` | Pack the Abstractions NuGet package into ` packages/ ` . Requires ` BuildAbstractions ` first.|
7778| ` PackAzure ` | Pack the Azure NuGet package into ` packages/ ` . Requires ` BuildAzure ` first.|
@@ -192,15 +193,13 @@ packages in the root packages/ directory, and will be automatically searched by
192193Then, you can specify ` Package ` references be used, for example:
193194
194195``` bash
195- dotnet build -t:BuildLogging
196- dotnet build -t:PackLogging
197- dotnet build -t:BuildAbstractions -p:ReferenceType=Package
198- dotnet build -t:PackAbstractions -p:ReferenceType=Package
199- dotnet build -t:BuildAzure -p:ReferenceType=Package
200- dotnet build -t:PackAzure -p:ReferenceType=Package
201- dotnet build -t:BuildAll -p:ReferenceType=Package
202- dotnet build -t:BuildAKVNetCore -p:ReferenceType=Package
196+ dotnet build -t:BuildLogging,PackLogging
197+ dotnet build -t:BuildSqlServer,PackSqlServer
198+ dotnet build -t:BuildAbstractions,PackAbstractions -p:ReferenceType=Package
199+ dotnet build -t:BuildAzure,PackAzure -p:ReferenceType=Package
200+ dotnet build -t:BuildSqlClient -p:ReferenceType=Package
203201dotnet build -t:GenerateMdsPackage
202+ dotnet build -t:BuildAKVNetCore -p:ReferenceType=Package
204203dotnet build -t:GenerateAkvPackage
205204```
206205
0 commit comments