17 lines
543 B
XML
17 lines
543 B
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<RootNamespace>netcore_wf_test</RootNamespace>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<NoWin32Manifest>true</NoWin32Manifest>
|
|
<SignAssembly>false</SignAssembly>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Optimize>true</Optimize>
|
|
</PropertyGroup>
|
|
|
|
</Project> |