Skip to content
This repository has been archived by the owner on Dec 26, 2023. It is now read-only.

Commit

Permalink
(GH-176) Multi-Target .NET Core 3.1, 5 & 6 instead of .NET Standard 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger committed Jul 23, 2022
1 parent bf3d31d commit be2017f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
15 changes: 9 additions & 6 deletions nuspec/nuget/Cake.Issues.Markdownlint.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,14 @@ See the Project Site for an overview of the whole ecosystem of addins for workin
</metadata>
<files>
<file src="..\..\..\..\nuspec\nuget\icon.png" target="" />
<file src="net461/Cake.Issues.Markdownlint.dll" target="lib\net461" />
<file src="net461/Cake.Issues.Markdownlint.pdb" target="lib\net461" />
<file src="net461/Cake.Issues.Markdownlint.xml" target="lib\net461" />
<file src="netstandard2.0/Cake.Issues.Markdownlint.dll" target="lib\netstandard2.0" />
<file src="netstandard2.0/Cake.Issues.Markdownlint.pdb" target="lib\netstandard2.0" />
<file src="netstandard2.0/Cake.Issues.Markdownlint.xml" target="lib\netstandard2.0" />
<file src="netcoreapp3.1/Cake.Issues.Markdownlint.dll" target="lib\netcoreapp3.1" />
<file src="netcoreapp3.1/Cake.Issues.Markdownlint.pdb" target="lib\netcoreapp3.1" />
<file src="netcoreapp3.1/Cake.Issues.Markdownlint.xml" target="lib\netcoreapp3.1" />
<file src="net5.0/Cake.Issues.Markdownlint.dll" target="lib\net5.0" />
<file src="net5.0/Cake.Issues.Markdownlint.pdb" target="lib\net5.0" />
<file src="net5.0/Cake.Issues.Markdownlint.xml" target="lib\net5.0" />
<file src="net6.0/Cake.Issues.Markdownlint.dll" target="lib\net6.0" />
<file src="net6.0/Cake.Issues.Markdownlint.pdb" target="lib\net6.0" />
<file src="net6.0/Cake.Issues.Markdownlint.xml" target="lib\net6.0" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netcoreapp2.1;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
<IsPackable>false</IsPackable>
<Description>Tests for the Cake.Issues.Markdownlint addin</Description>
<Authors>BBT Software AG</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<Description>Markdownlint support for the Cake.Issues Addin for Cake Build Automation System</Description>
<Authors>BBT Software AG</Authors>
<Company>BBT Software AG</Company>
Expand Down

0 comments on commit be2017f

Please sign in to comment.