MoonWorksTemplate/ProjectName.csproj

33 lines
1.0 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2021-04-04 21:01:40 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2022-03-03 19:05:23 +00:00
<TargetFramework>net6.0</TargetFramework>
2021-04-04 21:01:40 +00:00
<TargetName>ProjectName</TargetName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<LangVersion>8.0</LangVersion>
<StartupObject>ProjectName.Program</StartupObject>
<AssemblyName>ProjectName</AssemblyName>
<RootNamespace>ProjectName</RootNamespace>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
2022-03-03 19:05:23 +00:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2021-04-04 21:01:40 +00:00
<ApplicationIcon />
</PropertyGroup>
2021-04-04 21:01:40 +00:00
<ItemGroup>
<Content Include="Content\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
</PropertyGroup>
2021-04-04 21:01:40 +00:00
<ItemGroup>
<ProjectReference Include="lib\MoonWorks\MoonWorks.csproj" />
2021-04-04 21:01:40 +00:00
</ItemGroup>
2021-04-04 21:01:40 +00:00
<Import Project=".\CopyMoonlibs.targets" />
</Project>