You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
720 B
26 lines
720 B
1 month ago
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
<PlatformTarget>x64</PlatformTarget>
|
||
|
<OutputPath>../bin</OutputPath>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
<PlatformTarget>x64</PlatformTarget>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Compile Remove="publish\**" />
|
||
|
<EmbeddedResource Remove="publish\**" />
|
||
|
<None Remove="publish\**" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|