Skip to content

Commit

Permalink
Fix framework id
Browse files Browse the repository at this point in the history
  • Loading branch information
yevhen committed Dec 30, 2023
1 parent 2fb95f1 commit 2ee6e05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
</PropertyGroup>

<PropertyGroup>
<LibProjectTargetFramework>net8.0</LibProjectTargetFramework>
<ConsoleProjectTargetFramework>net8.0</ConsoleProjectTargetFramework>
<LibProjectTargetFramework>net8</LibProjectTargetFramework>
<ConsoleProjectTargetFramework>net8</ConsoleProjectTargetFramework>
<TestProjectTargetFramework>$(ConsoleProjectTargetFramework)</TestProjectTargetFramework>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions Nake.csx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ var ArtifactsPath = $@"{RootPath}\Artifacts";
var ReleasePackagesPath = $@"{ArtifactsPath}\Release";

var AppVeyorJobId = Var["APPVEYOR_JOB_ID"];
var TargetFramework = "netcoreapp6.0";
var Version = "2.0.0-dev";
var TargetFramework = "net8";
var Version = "3.0.0-dev";

/// Installs dependencies and builds sources in Debug mode
[Nake] async Task Default() => await Build();
Expand Down

0 comments on commit 2ee6e05

Please sign in to comment.