mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-13 06:27:11 +03:00
3eda15242a
Seems like there's either a net6 bug or something wrong with my local install, as starting the worker works on net5 but not net6 ("hostfxr.dll" error message when running from Rider). Plus net5 is probably a good general target right now in terms of compatibility, too.
14 lines
358 B
XML
14 lines
358 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net5;net462</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="..\NAPS2.Setup\CommonTargets.targets" />
|
|
<Import Project="..\NAPS2.Setup\SdkUsers.targets" />
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NAPS2.Sdk\NAPS2.Sdk.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |