Skip to content

Commit c2a8e97

Browse files
committed
User Story 37654: Create Abstractions package
- Addressed PR comments.
1 parent 836505e commit c2a8e97

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

BUILDGUIDE.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The following build targets are defined in `build.proj`:
2121
|Target|Description|
2222
|-|-|
2323
|`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/`.|
2525
|`BuildNetCore`|Builds the .NET driver for all target frameworks.|
2626
|`BuildNetCoreAllOS`|Builds the .NET driver for all target frameworks and operating systems.|
2727
|`BuildNetFx`|Builds the .NET Framework driver for all target frameworks.|
@@ -56,7 +56,7 @@ build:
5656
Using the default configuration and running all tests:
5757

5858
```bash
59-
msbuild -t:BuildExtensionsPackage
59+
msbuild -t:BuildAbstractionsPackage
6060
msbuild
6161
msbuild -t:BuildTestsNetFx -p:TF=net462
6262
msbuild -t:BuildTestsNetCore
@@ -66,7 +66,7 @@ msbuild -t:RunTests
6666
Using the Release configuration:
6767

6868
```bash
69-
msbuild -t:BuildExtensionsPackage -p:Configuration=Release
69+
msbuild -t:BuildAbstractionsPackage -p:Configuration=Release
7070
msbuild -p:Configuration=Release
7171
msbuild -t:BuildTestsNetFx -p:TF=net462 -p:Configuration=Release
7272
msbuild -t:BuildTestsNetCore -p:Configuration=Release
@@ -76,7 +76,7 @@ msbuild -t:RunTests -p:Configuration=Release
7676
Running only the unit tests:
7777

7878
```bash
79-
msbuild -t:BuildExtensionsPackage
79+
msbuild -t:BuildAbstractionsPackage
8080
msbuild
8181
msbuild -t:BuildTestsNetFx -p:TF=net462
8282
msbuild -t:BuildTestsNetCore
@@ -86,7 +86,7 @@ msbuild -t:RunUnitTests
8686
Using a specific .NET runtime to run tests:
8787

8888
```bash
89-
msbuild -t:BuildExtensionsPackage
89+
msbuild -t:BuildAbstractionsPackage
9090
msbuild
9191
msbuild -t:BuildTestsNetFx -p:TF=net462
9292
msbuild -t:BuildTestsNetCore
@@ -210,7 +210,7 @@ Tests can be built and run with custom "Reference Type" property that enables di
210210
> CREATE A NUGET PACKAGE WITH BELOW COMMAND AND ADD TO LOCAL FOLDER + UPDATE NUGET CONFIG FILE TO READ FROM THAT LOCATION
211211
>
212212
> ```bash
213-
> msbuild -t:BuildExtensionsPackage -p:Configuration=Release
213+
> msbuild -t:BuildAbstractionsPackage -p:Configuration=Release
214214
> msbuild -p:Configuration=Release
215215
> ```
216216

eng/pipelines/dotnet-sqlclient-ci-package-reference-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
6565
- name: abstractionsPackageVersion
6666
displayName: Abstractions Package Version Override
6767
type: string
68-
default: 7.0.0
68+
default: 1.0.0
6969

7070
- name: useManagedSNI
7171
displayName: |

eng/pipelines/dotnet-sqlclient-ci-project-reference-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
5757
- name: abstractionsPackageVersion
5858
displayName: Abstractions Package Version Override
5959
type: string
60-
default: 7.0.0
60+
default: 1.0.0
6161

6262
- name: useManagedSNI
6363
displayName: |

src/Microsoft.Data.SqlClient/NuGet.config

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<configuration>
33
<packageSources>
44
<!--
5-
During development, the Extensions package that MDS depends on may only
5+
During development, the Abstractions package that MDS depends on may only
66
be available locally.
77
88
This directory must exist before MDS restore will succeed. Building and
9-
packing the Extensions package will create it.
9+
packing the Abstractions package will create it.
1010
-->
1111
<add key="local" value="../../packages/" />
1212
</packageSources>

0 commit comments

Comments
 (0)