19 lines
593 B
XML
19 lines
593 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>KRY_0x00_netcore</RootNamespace>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<StartupObject>KRY_0x00_netcore.startup</StartupObject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="MMLib.Extensions" Version="1.0.10.13" />
|
|
</ItemGroup>
|
|
|
|
</Project> |