Feature Request - add 'net5.0-windows' support
makeProjectGreatAgain opened this issue · 0 comments
makeProjectGreatAgain commented
I have added 'net5.0-windows' support for ExceptionReporter.WinForms in #59 PR.
I am going to update other projects in the solution ( Demo, WPF etc ) if it is ok
Also, I want to mention that there are some disadvantages of supporting both NetFramework and .NET Core. You will need to use different versions of Handlebars, AutoMoq
ExceptionReporter.WinForms.csproj
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<PackageReference Include="Handlebars.Net" Version="1.9.0" />
...
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0-windows' ">
...
<PackageReference Include="Handlebars.Net" Version="2.0.2" />
<PackageReference Include="System.Management" Version="6.0.0" />
<PackageReference Include="System.Resources.Extensions" Version="6.0.0" />
</ItemGroup>