File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
src/Microsoft.Data.SqlClient.Extensions/Extensions/src Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ variables:
89
89
stages :
90
90
91
91
# Build the Extensions package, and publish it to the pipeline artifacts
92
- # under the default name 'Extensions.Artifact' .
92
+ # under the name specified by the 'extensionsArtifactName' variable .
93
93
- template : stages/ci-build-extensions-package-stage.yml@self
94
94
parameters :
95
95
buildConfiguration : Release
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ stages:
207
207
- task : UseDotNet@2
208
208
displayName : Install .NET 8.0 Runtime
209
209
inputs :
210
- packageType : sdk
210
+ packageType : runtime
211
211
version : 8.x
212
212
213
213
- task : DotNetCoreCLI@2
@@ -264,7 +264,7 @@ stages:
264
264
- task : UseDotNet@2
265
265
displayName : Install .NET 8.0 Runtime
266
266
inputs :
267
- packageType : sdk
267
+ packageType : runtime
268
268
version : 8.x
269
269
270
270
- task : DotNetCoreCLI@2
Original file line number Diff line number Diff line change 10
10
<PropertyGroup >
11
11
<!--
12
12
We use the ExtensionsPackageVersion from Versions.props. It may be
13
- specified on the command-line, or a default vlaue is used.
13
+ specified on the command-line, or a default value is used.
14
14
-->
15
15
<PackageVersion >$(ExtensionsPackageVersion)</PackageVersion >
16
16
<!--
45
45
<RootNamespace >Microsoft.Data.SqlClient.Extensions</RootNamespace >
46
46
</PropertyGroup >
47
47
<ItemGroup >
48
+ <!-- Our API is CLS Compliant. -->
48
49
<AssemblyAttribute Include =" System.CLSCompliantAttribute" >
49
50
<_Parameter1 >true</_Parameter1 >
50
51
</AssemblyAttribute >
52
+
53
+ <!-- Our unit tests have access to our internal types. -->
51
54
<InternalsVisibleTo Include =" Microsoft.Data.SqlClient.Extensions.Test" />
52
55
</ItemGroup >
53
56
You can’t perform that action at this time.
0 commit comments