Skip to content

Commit ffc7279

Browse files
authored
Use RTM version of the SDK (#19130)
1 parent 1dfbe75 commit ffc7279

File tree

4 files changed

+2
-14
lines changed

4 files changed

+2
-14
lines changed

NuGet.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
<add key="darc-pub-dotnet-aspnetcore-tooling-2dab42e" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-dotnet-aspnetcore-tooling-2dab42e1/nuget/v3/index.json" />
1111
<add key="darc-pub-aspnet-Extensions-1286a6f" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/darc-pub-aspnet-Extensions-1286a6ff/nuget/v3/index.json" />
1212
<!--End: Package sources managed by Dependency Flow automation. Do not edit the sources above.-->
13-
<add key="aspnetcore" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/3.1.102-servicing-014873/nuget/v3/index.json" />
1413
<add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
1514
<add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
1615
<add key="aspnet-blazor" value="https://dotnetfeed.blob.core.windows.net/aspnet-blazor/index.json" />

build.ps1

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -362,12 +362,6 @@ try {
362362

363363
$toolsetBuildProj = InitializeToolset
364364

365-
$dotnetInstallDir = Join-Path $RepoRoot ".dotnet"
366-
$sdkPath = [IO.Path]::Combine($dotnetInstallDir, 'sdk', '3.1.102')
367-
if (!(Test-Path $sdkPath)) {
368-
InstallDotNetSdk $dotnetInstallDir '3.1.102-servicing-014873' -skipNonVersionedFiles $true
369-
}
370-
371365
$restore = $tmpRestore
372366

373367
if ($ci) {

build.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -316,11 +316,6 @@ restore=true
316316

317317
InitializeToolset
318318

319-
dotnet_install_dir="$repo_root/.dotnet"
320-
if [[ ! -d "$dotnet_install_dir/sdk/3.1.102" ]]; then
321-
InstallDotNetSdk "$dotnet_install_dir" "3.1.102-servicing-014873"
322-
fi
323-
324319
restore=$_tmp_restore=
325320

326321
if [ "$build_repo_tasks" = true ]; then

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "3.1.101"
3+
"version": "3.1.102"
44
},
55
"tools": {
6-
"dotnet": "3.1.101",
6+
"dotnet": "3.1.102",
77
"runtimes": {
88
"dotnet/x64": [
99
"$(MicrosoftNETCoreAppInternalPackageVersion)"

0 commit comments

Comments
 (0)