Skip to content

Commit

Permalink
.NET SDK 6.0.301
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy committed Jul 30, 2024
1 parent 9bb7822 commit 22d2610
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup .NET 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.101'
dotnet-version: '6.0.301'
- name: Restore dotnet tools
run: dotnet tool restore
- name: remove current fake runner tool
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup .NET 6
uses: actions/setup-dotnet@v4
with:
dotnet-version: '6.0.101'
dotnet-version: '6.0.301'
- name: Restore dotnet tools
run: dotnet tool restore
- name: remove current fake runner tool
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk" : {
"version": "6.0.101",
"version": "6.0.301",
"rollForward": "latestMinor"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk" : {
"version": "6.0.100"
"version": "6.0.300"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk" : {
"version": "6.0.100"
"version": "6.0.300"
}
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk" : {
"version": "6.0.101"
"version": "6.0.301"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ open Fake.Runtime
let tests =
testList
"Fake.DotNet.sdkAssemblyResolverTests"
[ testCase "Runner run script with 6.0.100 SDK version assemblies"
[ testCase "Runner run script with 6.0.300 SDK version assemblies"
<| fun _ ->
try
use d = createTestDir ()
Expand All @@ -30,7 +30,7 @@ let tests =
WorkingDirectory = scenarioTempPath "core-reference-assemblies-net60100"
CustomInstallDir = Some preparedDir
Channel = DotNet.CliChannel.Version 6 0
Version = DotNet.CliVersion.Version "6.0.100" })
Version = DotNet.CliVersion.Version "6.0.300" })
|> ignore

Environment.setEnvironVar "FAKE_SDK_RESOLVER_CUSTOM_DOTNET_PATH" preparedDir
Expand All @@ -47,15 +47,15 @@ let tests =
let stdOut = String.Join("\n", result.Messages).Trim()

let expectedNet6PathPortion =
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.0" </> "ref" </> "net6.0"
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.5" </> "ref" </> "net6.0"

(sprintf "stdout should contain path like '%s', but was: '%s'" expectedNet6PathPortion stdOut)
|> Expect.isTrue (stdOut.Contains expectedNet6PathPortion)
finally
// clean up after the test run
Environment.setEnvironVar "FAKE_SDK_RESOLVER_CUSTOM_DOTNET_PATH" ""

testCase "Runner run script with 6.0.101 SDK version assemblies"
testCase "Runner run script with 6.0.301 SDK version assemblies"
<| fun _ ->
try
use d = createTestDir ()
Expand All @@ -72,7 +72,7 @@ let tests =
WorkingDirectory = scenarioTempPath "core-reference-assemblies-net60101"
CustomInstallDir = Some preparedDir
Channel = DotNet.CliChannel.Version 6 0
Version = DotNet.CliVersion.Version "6.0.101" })
Version = DotNet.CliVersion.Version "6.0.301" })
|> ignore

Environment.setEnvironVar "FAKE_SDK_RESOLVER_CUSTOM_DOTNET_PATH" preparedDir
Expand All @@ -89,7 +89,7 @@ let tests =
let stdOut = String.Join("\n", result.Messages).Trim()

let expectedNet6PathPortion =
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.1" </> "ref" </> "net6.0"
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.6" </> "ref" </> "net6.0"

(sprintf "stdout should contain path like '%s', but was: '%s'" expectedNet6PathPortion stdOut)
|> Expect.isTrue (stdOut.Contains expectedNet6PathPortion)
Expand All @@ -113,7 +113,7 @@ let tests =
WorkingDirectory = scenarioTempPath "core-reference-assemblies-net60101-rollforward"
CustomInstallDir = Some preparedDir
Channel = DotNet.CliChannel.Version 6 0
Version = DotNet.CliVersion.Version "6.0.101" })
Version = DotNet.CliVersion.Version "6.0.301" })
|> ignore

let result =
Expand All @@ -127,7 +127,7 @@ let tests =

Expect.isTrue result.OK "The build did not succeed"

testCase "Runner run script with 6.0.100 SDK version assemblies and resolve runtime version from cached file"
testCase "Runner run script with 6.0.300 SDK version assemblies and resolve runtime version from cached file"
<| fun _ ->
try
use d = createTestDir ()
Expand All @@ -144,7 +144,7 @@ let tests =
WorkingDirectory = scenarioTempPath "core-reference-assemblies-net60100"
CustomInstallDir = Some preparedDir
Channel = DotNet.CliChannel.Version 6 0
Version = DotNet.CliVersion.Version "6.0.100" })
Version = DotNet.CliVersion.Version "6.0.300" })
|> ignore

Environment.setEnvironVar "FAKE_SDK_RESOLVER_CUSTOM_DOTNET_PATH" preparedDir
Expand All @@ -164,7 +164,7 @@ let tests =
printfn "%s" stdOut

let expectedNet6PathPortion =
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.0" </> "ref" </> "net6.0"
"packs" </> "Microsoft.NETCore.App.Ref" </> "6.0.5" </> "ref" </> "net6.0"

let expectedCacheFileResolutionMessage =
"Trying to resolve runtime version from cache.."
Expand Down

0 comments on commit 22d2610

Please sign in to comment.