Skip to content

Commit e2e44bf

Browse files
committed
Update target frameworks to support .NET 10
1 parent 996bd37 commit e2e44bf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cake/BuildContext.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public void PushNugetPackages(string artifactDirectory)
185185
//}
186186
}
187187

188-
public IEnumerable<string> TargetFrameworks { get; } = new List<string>() { "net9.0", "net8.0" };
188+
public IEnumerable<string> TargetFrameworks { get; } = new List<string>() { "net10.0", "net9.0" };
189189
public string ApaxSignKey { get; set; } = System.Environment.GetEnvironmentVariable("APAX_KEY");
190190
public string GitHubUser { get; set; } = System.Environment.GetEnvironmentVariable("GH_USER");
191191
public string GitHubToken { get; set; } = System.Environment.GetEnvironmentVariable("GH_TOKEN");

src/AXSharp.compiler/src/AXSharp.Cs.Compiler/CsProject.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ private void EnsureCsProjFile()
138138
var defaultCsProjectWhenNotProvidedByTemplate =
139139
$@"<Project Sdk=""Microsoft.NET.Sdk"">
140140
<PropertyGroup>
141-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
141+
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
142142
<ImplicitUsings>enable</ImplicitUsings>
143143
<Nullable>enable</Nullable>
144144
</PropertyGroup>

0 commit comments

Comments
 (0)