Skip to content

Commit

Permalink
Update to .net 5
Browse files Browse the repository at this point in the history
  • Loading branch information
citizenmatt committed Aug 22, 2021
1 parent bd0f3e9 commit 9fa5080
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
15 changes: 9 additions & 6 deletions nuget/resharper-template-compiler.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>CitizenMatt.ReSharper.LiveTemplateCompiler</id>
<version>3.0.0</version>
<version>3.1.0</version>
<title>ReSharper Live Template Compiler</title>
<authors>Matt Ellis</authors>
<owners>citizenmatt</owners>
Expand All @@ -11,6 +11,9 @@
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>MSBuild tooling to convert markdown files into ReSharper Live Templates in a .DotSettings file</description>
<releaseNotes>
&#822; Update to .net 5

From 3.0:
&#822; Update to MarkDig
&#822; YAML front matter is no longer parsed as Markdown, so can contain characters used in Markdown

Expand Down Expand Up @@ -57,10 +60,10 @@ From 2.1.0:
<file src="..\src\resharper-template-compiler\bin\Release\net48\rstc.exe.config" target="tools/" />
<file src="..\src\resharper-template-compiler\bin\Release\net48\CommandLine.dll" target="tools/" />
<file src="..\src\resharper-template-compiler\bin\Release\net48\MarkDig.dll" target="tools/" />
<file src="..\src\resharper-template-compiler\bin\Release\netcoreapp31\rstc.dll" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\netcoreapp31\rstc.runtimeconfig.json" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\netcoreapp31\rstc.deps.json" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\netcoreapp31\CommandLine.dll" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\netcoreapp31\MarkDig.dll" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\net5.0\rstc.dll" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\net5.0\rstc.runtimeconfig.json" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\net5.0\rstc.deps.json" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\net5.0\CommandLine.dll" target="tools/netcore/" />
<file src="..\src\resharper-template-compiler\bin\Release\net5.0\MarkDig.dll" target="tools/netcore/" />
</files>
</package>
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>CitizenMatt.ReSharper.TemplateCompiler</RootNamespace>
<TargetFrameworks>net48;netcoreapp31</TargetFrameworks>
<TargetFrameworks>net48;net5.0</TargetFrameworks>
<RollForward>Major</RollForward>
<AssemblyName>rstc</AssemblyName>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<AssemblyTitle>resharper-template-compiler</AssemblyTitle>
<Product>resharper-template-compiler</Product>
<Copyright>Copyright © Matt Ellis 2021</Copyright>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.0.0</FileVersion>
<AssemblyVersion>3.1.0.0</AssemblyVersion>
<FileVersion>3.1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
Expand Down

0 comments on commit 9fa5080

Please sign in to comment.