Skip to content

Commit f7937de

Browse files
authoredDec 15, 2023
Remove dotnet8 feeds from NuGet.config (dotnet#95860)
1 parent 80245dd commit f7937de

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed
 

‎NuGet.config

-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
<add key="dotnet-libraries" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries/nuget/v3/index.json" />
1919
<!-- Required for System.CommandLine SB intermediate -->
2020
<add key="dotnet-libraries-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-libraries-transport/nuget/v3/index.json" />
21-
<add key="dotnet8" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8/nuget/v3/index.json" />
22-
<add key="dotnet8-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet8-transport/nuget/v3/index.json" />
2321
<add key="dotnet9" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9/nuget/v3/index.json" />
2422
<add key="dotnet9-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet9-transport/nuget/v3/index.json" />
2523
</packageSources>

‎src/installer/tests/Assets/TestUtils/TestProjects.targets

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@
44
provides basic info needed for restore and build with the vanilla SDK.
55
-->
66

7-
<!-- TODO: Remove when the SDK understands the net8.0 tfm. -->
7+
<!-- TODO: Remove when the SDK understands the net9.0 tfm. -->
88
<PropertyGroup>
99
<NETCoreAppMaximumVersion>9.0</NETCoreAppMaximumVersion>
1010
</PropertyGroup>
1111

1212
<ItemGroup>
1313
<KnownFrameworkReference Include="Microsoft.NETCore.App"
14-
DefaultRuntimeFrameworkVersion="8.0.0-rc.1.23415.6"
15-
LatestRuntimeFrameworkVersion="8.0.0-rc.1.23415.6"
14+
DefaultRuntimeFrameworkVersion="9.0.0-alpha.1.23615.3"
15+
LatestRuntimeFrameworkVersion="9.0.0-alpha.1.23615.3"
1616
RuntimeFrameworkName="Microsoft.NETCore.App"
1717
RuntimePackNamePatterns="Microsoft.NETCore.App.Runtime.**RID**"
1818
RuntimePackRuntimeIdentifiers="linux-arm;linux-arm64;linux-musl-arm64;linux-musl-x64;linux-x64;osx-x64;rhel.6-x64;tizen.4.0.0-armel;tizen.5.0.0-armel;win-arm64;win-x64;win-x86;linux-musl-arm;osx-arm64;maccatalyst-x64;maccatalyst-arm64;linux-s390x;linux-bionic-arm;linux-bionic-arm64;linux-bionic-x64;linux-bionic-x86"
1919
TargetFramework="$(NetCoreAppCurrent)"
2020
TargetingPackName="Microsoft.NETCore.App.Ref"
21-
TargetingPackVersion="8.0.0-rc.1.23415.6"
21+
TargetingPackVersion="9.0.0-alpha.1.23615.3"
2222
Condition="'@(KnownFrameworkReference)' == '' or !@(KnownFrameworkReference->AnyHaveMetadataValue('TargetFramework', '$(NetCoreAppCurrent)'))" />
2323

2424
<KnownAppHostPack Include="Microsoft.NETCore.App"
2525
ExcludedRuntimeIdentifiers="android"
2626
AppHostPackNamePattern="Microsoft.NETCore.App.Host.**RID**"
27-
AppHostPackVersion="8.0.0-rc.1.23415.6"
27+
AppHostPackVersion="9.0.0-alpha.1.23615.3"
2828
AppHostRuntimeIdentifiers="linux-arm;linux-arm64;linux-musl-arm64;linux-musl-x64;linux-x64;osx-x64;rhel.6-x64;tizen.4.0.0-armel;tizen.5.0.0-armel;win-arm64;win-x64;win-x86;linux-musl-arm;osx-arm64;linux-s390x;linux-bionic-arm;linux-bionic-arm64;linux-bionic-x64;linux-bionic-x86"
2929
TargetFramework="$(NetCoreAppCurrent)"
3030
Condition="'@(KnownAppHostPack)' == '' or !@(KnownAppHostPack->AnyHaveMetadataValue('TargetFramework', '$(NetCoreAppCurrent)'))" />

0 commit comments

Comments
 (0)
Please sign in to comment.