Skip to content

Commit bbb0f22

Browse files
committed
dotnet: 8 -> 10
1 parent eebc0f0 commit bbb0f22

File tree

4 files changed

+25
-2676
lines changed

4 files changed

+25
-2676
lines changed

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
devShells = withPkgs (pkgs: {
4949
default = pkgs.mkShell {
5050
packages = with pkgs; [
51-
dotnet-sdk_8
51+
dotnet-sdk_10
5252
omnisharp-roslyn
5353
];
5454
};

moe.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<OutputType>Exe</OutputType>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<Version>1.6.2</Version>

nix/package.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
lib,
33
buildDotnetModule,
44
stdenv,
5-
dotnet-sdk_8,
6-
dotnet-runtime_8,
5+
dotnet-sdk_10,
6+
dotnet-runtime_10,
77

88
nuget-packageslock2nix,
99
version,
@@ -22,8 +22,8 @@ buildDotnetModule {
2222

2323
projectFile = [ "moe.csproj" ];
2424

25-
dotnet-sdk = dotnet-sdk_8;
26-
dotnet-runtime = dotnet-runtime_8;
25+
dotnet-sdk = dotnet-sdk_10;
26+
dotnet-runtime = dotnet-runtime_10;
2727

2828
executables = [ "moe" ];
2929

0 commit comments

Comments
 (0)