Skip to content

Commit

Permalink
Update to .NET SDK 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianeicher committed Dec 15, 2024
1 parent 730b946 commit 00c8c62
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion doc/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pushd $PSScriptRoot

function Run-DotNet {
..\0install.ps1 run --batch --version 6.0.. https://apps.0install.net/dotnet/sdk.xml @args
..\0install.ps1 run --batch --version 8.0.. https://apps.0install.net/dotnet/sdk.xml @args
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
}

Expand Down
2 changes: 1 addition & 1 deletion doc/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd `dirname $0`
if command -v dotnet > /dev/null 2> /dev/null; then
dotnet="dotnet"
else
dotnet="../0install.sh run --version 6.0.. https://apps.0install.net/dotnet/sdk.xml"
dotnet="../0install.sh run --version 8.0.. https://apps.0install.net/dotnet/sdk.xml"
fi

# Build docs
Expand Down
2 changes: 1 addition & 1 deletion src/UnitTests/UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<AssemblyName>PowerDns.Client.UnitTests</AssemblyName>
<RootNamespace>PowerDns.Client</RootNamespace>
<LangVersion>7.3</LangVersion>
<TargetFramework>netcoreapp6.0</TargetFramework>
<TargetFramework>netcoreapp8.0</TargetFramework>
<OutputType>Library</OutputType>
<IsPackable>False</IsPackable>
<DeterministicSourcePaths>False</DeterministicSourcePaths>
Expand Down
2 changes: 1 addition & 1 deletion src/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ $ErrorActionPreference = "Stop"
pushd $PSScriptRoot

function Run-DotNet {
..\0install.ps1 run --batch --version 6.0.. https://apps.0install.net/dotnet/sdk.xml @args
..\0install.ps1 run --batch --version 8.0.. https://apps.0install.net/dotnet/sdk.xml @args
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
}

Expand Down
2 changes: 1 addition & 1 deletion src/test.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
pushd $PSScriptRoot

function Run-DotNet {
..\0install.ps1 run --batch --version 6.0..!6.1 https://apps.0install.net/dotnet/sdk.xml @args
..\0install.ps1 run --batch --version 8.0..!6.1 https://apps.0install.net/dotnet/sdk.xml @args
if ($LASTEXITCODE -ne 0) {throw "Exit Code: $LASTEXITCODE"}
}

Expand Down
2 changes: 1 addition & 1 deletion src/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd `dirname $0`
if command -v dotnet > /dev/null 2> /dev/null; then
dotnet="dotnet"
else
dotnet="../0install.sh run --version 6.0..!6.1 https://apps.0install.net/dotnet/sdk.xml"
dotnet="../0install.sh run --version 8.0..!6.1 https://apps.0install.net/dotnet/sdk.xml"
fi

# Unit tests (without .NET Framework)
Expand Down

0 comments on commit 00c8c62

Please sign in to comment.