Skip to content

Commit

Permalink
[cli] Update target frameworks to target both .NET 6.0 and 8.0 (#130)
Browse files Browse the repository at this point in the history
* Bump dotnet SDK 8.0.300 in global.json

* Update target frameworks to target both `.NET 6.0` and `.NET 8.0`
  • Loading branch information
albertospelta authored Jul 21, 2024
1 parent 7b2aa7f commit 23c06b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
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.400",
"version": "8.0.300",
"allowPrerelease": false,
"rollForward": "latestFeature"
}
Expand Down
3 changes: 1 addition & 2 deletions src/Dax.Vpax.CLI/Dax.Vpax.CLI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
Expand Down Expand Up @@ -31,7 +31,6 @@
<PackageReference Include="Dax.Vpax" Version="1.6.0" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 23c06b7

Please sign in to comment.