MoonWorksTest/MoonWorksTest.csproj

27 lines
755 B
XML
Raw Permalink Normal View History

2021-01-20 03:37:30 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2021-11-15 05:50:26 +00:00
<TargetFramework>net5.0</TargetFramework>
2021-01-20 03:37:30 +00:00
<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>
2021-01-20 04:08:29 +00:00
<ItemGroup>
<ProjectReference Include=".\lib\MoonWorks\MoonWorks.csproj" />
</ItemGroup>
<Import Project=".\CopyMoonlibs.targets"/>
2021-01-20 03:37:30 +00:00
</Project>