Skip to content

Commit

Permalink
feat!: require net472, net6.0 or net8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viceice committed Jan 25, 2024
1 parent 0f3979c commit 6260f98
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net472;net6.0;net8.0</TargetFrameworks>

<Title>C# Less Parser</Title>
<Description>A simple LESS parser to categorise strings of content and optionally generate a hierarchical representation of it</Description>
Expand Down
2 changes: 1 addition & 1 deletion CSSParser/CSSParser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net472;net6.0;net8.0</TargetFrameworks>

<Title>C# Css Parser</Title>
<Description>A simple CSS parser to categorise strings of content and optionally generate a hierarchical representation of it</Description>
Expand Down
2 changes: 1 addition & 1 deletion CSSRenderers/CSSRenderers.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net462;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net472;net6.0;net8.0</TargetFrameworks>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down

0 comments on commit 6260f98

Please sign in to comment.