Skip to content

Commit

Permalink
Restore NET 6 support and remove System.Text.Json dependency (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma authored Aug 8, 2024
1 parent bf09331 commit 01d6e4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/WebOptimizer.Core/WebOptimizer.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\WebOptimizer.Core.xml</DocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
Expand All @@ -21,11 +21,11 @@
<RootNamespace>WebOptimizer</RootNamespace>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="NUglify" Version="1.21.9" />
<PackageReference Include="System.Text.Json" Version="8.0.4" />
</ItemGroup>
<ItemGroup>
<Content Include="Build/$(PackageId).targets">
Expand Down

0 comments on commit 01d6e4d

Please sign in to comment.