Skip to content

Commit 6be7743

Browse files
authored
Enabling Package validation and moving to GA SDK (#6675)
* Enabling Package validation and moving to GA SDK * Missed one * Address feedback
1 parent c0ff16d commit 6be7743

File tree

17 files changed

+12
-32
lines changed

17 files changed

+12
-32
lines changed

eng/Versions.props

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,12 @@
66
<PatchVersion>0</PatchVersion>
77
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
88
<PreReleaseVersionLabel>preview.1</PreReleaseVersionLabel>
9-
<!--
10-
When running package validation as part of the build, we want to ensure we didn't break the API against the previous
11-
version of each package. The following property points to the package version that should be used as baseline.
12-
This should get updated each time packages are shipped.
13-
-->
14-
<BaselineVersionForPackageValidation>8.0.1</BaselineVersionForPackageValidation>
159
<DefaultTargetFramework>net8.0</DefaultTargetFramework>
1610
<AllTargetFrameworks>$(DefaultTargetFramework);net9.0</AllTargetFrameworks>
1711
<!-- dotnet 8.0 versions for running tests -->
18-
<DotNetRuntimePreviousVersionForTesting>8.0.10</DotNetRuntimePreviousVersionForTesting>
12+
<DotNetRuntimePreviousVersionForTesting>8.0.11</DotNetRuntimePreviousVersionForTesting>
1913
<!-- dotnet 8.0 versions for running tests - used for workload tests -->
20-
<DotNetSdkPreviousVersionForTesting>8.0.403</DotNetSdkPreviousVersionForTesting>
14+
<DotNetSdkPreviousVersionForTesting>8.0.404</DotNetSdkPreviousVersionForTesting>
2115
<UseVSTestRunner>true</UseVSTestRunner>
2216
<!-- Enable to remove prerelease label. -->
2317
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"sdk": {
3-
"version": "9.0.100-rc.2.24474.11",
3+
"version": "9.0.100",
44
"rollForward": "major",
55
"allowPrerelease": true
66
},
77
"tools": {
8-
"dotnet": "9.0.100-rc.2.24474.11",
8+
"dotnet": "9.0.100",
99
"runtimes": {
1010
"dotnet/x64": [
1111
"$(DotNetRuntimePreviousVersionForTesting)"

src/Aspire.AppHost.Sdk/Aspire.AppHost.Sdk.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<PackageTags>aspire apphost sdk</PackageTags>
77
<Description>.NET Aspire AppHost SDK. Must be referenced by .NET Aspire AppHost projects.</Description>
88
<TargetsForTfmSpecificContentInPackage>_PublishAndPackRIDTool;$(TargetsForTfmSpecificContentInPackage)</TargetsForTfmSpecificContentInPackage>
9+
<EnablePackageValidation>false</EnablePackageValidation>
910
</PropertyGroup>
1011

1112
<PropertyGroup>

src/Aspire.AppHost.Sdk/Aspire.RuntimeIdentifier.Tool/Aspire.RuntimeIdentifier.Tool.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<RollForward>Major</RollForward>
77
<UsePublicApiAnalyzers>false</UsePublicApiAnalyzers>
88
<IsPackable>false</IsPackable>
9+
<EnablePackageValidation>false</EnablePackageValidation>
910
<UseAppHost>false</UseAppHost>
1011
</PropertyGroup>
1112

src/Aspire.Hosting.Analyzers/Aspire.Hosting.Analyzers.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<IsRoslynComponent>true</IsRoslynComponent>
66
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
77
<UsePublicApiAnalyzers>false</UsePublicApiAnalyzers>
8+
<EnablePackageValidation>false</EnablePackageValidation>
89
<IsPackable>false</IsPackable>
910
<LangVersion>12.0</LangVersion>
1011
<!--

src/Aspire.Hosting.Azure.WebPubSub/Aspire.Hosting.Azure.WebPubSub.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
<PackageTags>aspire integration hosting azure webpubsub pubsub websocket</PackageTags>
77
<Description>Azure WebPubSub resource types for .NET Aspire.</Description>
88
<PackageIconFullPath>$(SharedDir)AzureWebPubSub_256x.png</PackageIconFullPath>
9-
<!-- Disable package validation as this package hasn't shipped yet. -->
10-
<EnablePackageValidation>false</EnablePackageValidation>
119
</PropertyGroup>
1210

1311
<PropertyGroup>

src/Aspire.Hosting.Garnet/Aspire.Hosting.Garnet.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
<PackageTags>aspire integration hosting garnet</PackageTags>
77
<Description>Garnet® support for .NET Aspire.</Description>
88
<PackageIconFullPath>$(SharedDir)garnet-cube-red_white-rgb.png</PackageIconFullPath>
9-
<!-- Disable package validation as this package hasn't shipped yet. -->
10-
<EnablePackageValidation>false</EnablePackageValidation>
119
</PropertyGroup>
1210

1311
<PropertyGroup>

src/Aspire.Hosting.Milvus/Aspire.Hosting.Milvus.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
<Description>Milvus vector database support for .NET Aspire.</Description>
88
<PackageIconFullPath>$(SharedDir)Milvus_256x.png</PackageIconFullPath>
99
<NoWarn>$(NoWarn);CS8002</NoWarn><!-- Milvus.Client packages are not signed -->
10-
11-
<!-- Disable package validation as this package hasn't shipped yet. -->
12-
<EnablePackageValidation>false</EnablePackageValidation>
1310
</PropertyGroup>
1411

1512
<PropertyGroup>

src/Aspire.Hosting.Valkey/Aspire.Hosting.Valkey.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
<IsPackable>true</IsPackable>
66
<PackageTags>aspire integration hosting valkey</PackageTags>
77
<Description>Valkey® support for .NET Aspire.</Description>
8-
<!-- Disable package validation as this package hasn't shipped yet. -->
9-
<EnablePackageValidation>false</EnablePackageValidation>
108
</PropertyGroup>
119

1210
<PropertyGroup>

src/Components/Aspire.Azure.AI.OpenAI/Aspire.Azure.AI.OpenAI.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
<Description>A client for Azure OpenAI that integrates with Aspire, including logging and telemetry.</Description>
88
<PackageIconFullPath>$(SharedDir)AzureOpenAI_256x.png</PackageIconFullPath>
99
<NoWarn>$(NoWarn);SYSLIB1100;SYSLIB1101</NoWarn>
10-
<!-- Disable package validation as this package hasn't shipped stable yet. -->
11-
<EnablePackageValidation>false</EnablePackageValidation>
1210
<!-- In preview until the public API is validated and the Microsoft.Extensions.AI integration is designed.. -->
1311
<SuppressFinalPackageVersion>true</SuppressFinalPackageVersion>
1412
</PropertyGroup>

0 commit comments

Comments
 (0)