diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index f54d08c53..95f2f981c 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -12,9 +12,9 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v4 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Install dotnet tool run: dotnet tool install -g dotnetCampus.TagToVersion diff --git a/Directory.Build.props b/Directory.Build.props index 53e27aa4e..c93e85ef7 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -1,6 +1,6 @@ - net8.0 + net10.0 10.0 enable disable diff --git a/global.json b/global.json new file mode 100644 index 000000000..ade345013 --- /dev/null +++ b/global.json @@ -0,0 +1,6 @@ +{ + "sdk": { + "version": "10.0.0", + "rollForward": "latestFeature" + } +}