Skip to content

Commit 5e0042f

Browse files
authored
dotnet: february 2025 releases (#381484)
2 parents e825e5b + 0e971dd commit 5e0042f

File tree

13 files changed

+1154
-1053
lines changed

13 files changed

+1154
-1053
lines changed

pkgs/by-name/bi/bicep/package.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
fetchFromGitHub,
66
dotnetCorePackages,
77
mono,
8+
jq,
89
}:
910

1011
buildDotnetModule rec {
@@ -20,6 +21,9 @@ buildDotnetModule rec {
2021

2122
postPatch = ''
2223
substituteInPlace src/Directory.Build.props --replace-fail "<TreatWarningsAsErrors>true</TreatWarningsAsErrors>" ""
24+
# Upstream uses rollForward = disable, which pins to an *exact* .NET SDK version.
25+
jq '.sdk.rollForward = "latestMinor"' < global.json > global.json.tmp
26+
mv global.json.tmp global.json
2327
'';
2428

2529
projectFile = [
@@ -33,6 +37,8 @@ buildDotnetModule rec {
3337

3438
dotnet-runtime = dotnetCorePackages.runtime_8_0;
3539

40+
nativeBuildInputs = [ jq ];
41+
3642
doCheck = !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64); # mono is not available on aarch64-darwin
3743

3844
nativeCheckInputs = [ mono ];

pkgs/development/compilers/dotnet/8/bootstrap-sdk.nix

Lines changed: 276 additions & 276 deletions
Large diffs are not rendered by default.

pkgs/development/compilers/dotnet/8/deps.json

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"tarballHash": "sha256-j0LNvn08bF0fPOOKBSSBJV3G7BzqmvNYTpSYC9XrbcQ=",
3-
"artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.111-servicing.24523.1.centos.9-x64.tar.gz",
4-
"artifactsHash": "sha256-Y9v+IYeAvuwddtQnDNUwBEWXGsDZACs596nQrdGOdaY="
2+
"tarballHash": "sha256-CpSHgYJoLHlFcSwtuurN+a6sKZbGsPSZIZE+C0f9uM0=",
3+
"artifactsUrl": "https://builds.dotnet.microsoft.com/source-built-artifacts/assets/Private.SourceBuilt.Artifacts.8.0.112-servicing.24604.1.centos.9-x64.tar.gz",
4+
"artifactsHash": "sha256-wx3ov1hW6ck1I/zygzGxnS6Y5wxS9cxtg6pLl7LQn7I="
55
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"release": "8.0.12",
2+
"release": "8.0.13",
33
"channel": "8.0",
4-
"tag": "v8.0.12",
5-
"sdkVersion": "8.0.112",
6-
"runtimeVersion": "8.0.12",
7-
"aspNetCoreVersion": "8.0.12",
4+
"tag": "v8.0.13",
5+
"sdkVersion": "8.0.113",
6+
"runtimeVersion": "8.0.13",
7+
"aspNetCoreVersion": "8.0.13",
88
"sourceRepository": "https://github.com/dotnet/dotnet",
9-
"sourceVersion": "ab5d79b36d4f8a16f9f91f53fd6504b354c977b1"
9+
"sourceVersion": "a970a1cfdd960e99b4b8b9bdc3099b943f70adde"
1010
}

0 commit comments

Comments
 (0)