Skip to content

Commit

Permalink
Update projects to target .NET 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
albertospelta committed Nov 16, 2024
1 parent f2e3c3d commit 2d29768
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion samples/getting-started/BasicFormatter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Dax.Formatter.Tests/Dax.Formatter.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;net6.0</TargetFrameworks>
<TargetFrameworks>net472;net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
Expand Down
5 changes: 4 additions & 1 deletion src/Dax.Formatter/Dax.Formatter.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<NeutralLanguage>en-US</NeutralLanguage>
Expand Down Expand Up @@ -60,5 +60,8 @@
<PropertyGroup Condition="'$(TargetFramework)' == 'net6.0'">
<AssemblyTitle>Dax.Formatter .NET 6.0</AssemblyTitle>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net8.0'">
<AssemblyTitle>Dax.Formatter .NET 8.0</AssemblyTitle>
</PropertyGroup>

</Project>

0 comments on commit 2d29768

Please sign in to comment.