21 lines
601 B
XML
21 lines
601 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net461</TargetFramework>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<RootNamespace>MoonWorksTest</RootNamespace>
|
||
|
<Platforms>x64</Platforms>
|
||
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<Content Include="Content\**\*.*">
|
||
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
</Content>
|
||
|
</ItemGroup>
|
||
|
</Project>
|