Skip to content

Commit 46e170c

Browse files
committed
Merged PR 55161: Prep for 308 hotfix by removing vssdk feeds
Update branding downgrade implicit version Remove vssdk feeds ---- #### AI description (iteration 1) #### PR Classification This pull request prepares the repository for the 308 hotfix by updating configuration and version properties. #### PR Summary The update adjusts key configuration files to align with the new hotfix release requirements. - **`NuGet.config`**: Removed the "vssdk" and "vssdk-archived" package sources. - **`eng/Versions.props`**: Updated `<VersionFeature>` from "07" to "08" and modified `<VersionFeature80>` from adding 15 to adding 14. <!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
2 parents 3bc3012 + 6ca86fc commit 46e170c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

NuGet.config

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@
6060
<add key="dotnet-tools-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools-transport/nuget/v3/index.json" />
6161
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
6262
<add key="dotnet-libraries-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries-transport/nuget/v3/index.json" />
63-
<add key="vssdk" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vssdk/nuget/v3/index.json" />
64-
<add key="vssdk-archived" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vssdk-archived/nuget/v3/index.json" />
6563
<add key="vs-impl" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-impl/nuget/v3/index.json" />
6664
<!-- Used for Rich Navigation indexing task -->
6765
<add key="richnav" value="https://pkgs.dev.azure.com/azure-public/vside/_packaging/vs-buildservices/nuget/v3/index.json" />

eng/Versions.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<VersionMajor>9</VersionMajor>
77
<VersionMinor>0</VersionMinor>
88
<VersionSDKMinor>3</VersionSDKMinor>
9-
<VersionFeature>07</VersionFeature>
9+
<VersionFeature>08</VersionFeature>
1010
<!-- This property powers the SdkAnalysisLevel property in end-user MSBuild code.
1111
It should always be the hundreds-value of the current SDK version, never any
1212
preview version components or anything else. E.g. 8.0.100, 9.0.300, etc. -->
@@ -35,7 +35,7 @@
3535
<VersionFeature50>17</VersionFeature50>
3636
<VersionFeature60>36</VersionFeature60>
3737
<VersionFeature70>20</VersionFeature70>
38-
<VersionFeature80>$([MSBuild]::Add($(VersionFeature), 15))</VersionFeature80>
38+
<VersionFeature80>$([MSBuild]::Add($(VersionFeature), 14))</VersionFeature80>
3939
<!-- Should be kept in sync with VersionFeature70. It should match the version of Microsoft.NET.ILLink.Tasks
4040
referenced by the same 7.0 SDK that references the 7.0.VersionFeature70 runtime pack. -->
4141
<_NET70ILLinkPackVersion>7.0.100-1.23211.1</_NET70ILLinkPackVersion>
@@ -184,7 +184,7 @@
184184
Additionally, set the MinimumVSVersion for the installer UI that's required for targeting NetCurrent -->
185185
<MicrosoftBuildVersion>17.14.28</MicrosoftBuildVersion>
186186
<MicrosoftBuildLocalizationVersion>17.14.28-servicing-25466-01</MicrosoftBuildLocalizationVersion>
187-
<MicrosoftBuildMinimumVersion Condition="'$(DotNetBuildSourceOnly)' != 'true'">17.11.31</MicrosoftBuildMinimumVersion>
187+
<MicrosoftBuildMinimumVersion Condition="'$(DotNetBuildSourceOnly)' != 'true'">17.11.48</MicrosoftBuildMinimumVersion>
188188
<MinimumVSVersion>17.12</MinimumVSVersion>
189189
</PropertyGroup>
190190
<PropertyGroup>

test/TestAssets/Directory.Build.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<ManagePackageVersionsCentrally>false</ManagePackageVersionsCentrally>
66
<CheckEolTargetFramework>false</CheckEolTargetFramework>
77
<DefaultItemExcludes>$(DefaultItemExcludes);**/*.tmp</DefaultItemExcludes>
8+
<NuGetAudit>false</NuGetAudit>
89
</PropertyGroup>
910

1011
</Project>

0 commit comments

Comments
 (0)