MoonWorksTemplate/ProjectName.csproj

33 lines
1.1 KiB
XML
Raw Permalink Normal View History

<Project Sdk="Microsoft.NET.Sdk">
2022-08-30 05:11:51 +00:00
<PropertyGroup>
2023-12-21 23:23:36 +00:00
<OutputType Condition="'$(Configuration)' == 'Debug'">Exe</OutputType>
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
2023-12-13 19:21:23 +00:00
<TargetFramework>net8.0</TargetFramework>
2022-08-30 05:11:51 +00:00
<TargetName>ProjectName</TargetName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<StartupObject>ProjectName.Program</StartupObject>
<AssemblyName>ProjectName</AssemblyName>
<RootNamespace>ProjectName</RootNamespace>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationIcon />
</PropertyGroup>
2022-08-30 05:11:51 +00:00
<ItemGroup>
<Content Include="Content\**\*.*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
2022-08-30 05:11:51 +00:00
<PropertyGroup>
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
</PropertyGroup>
2022-08-30 05:11:51 +00:00
<ItemGroup>
<ProjectReference Include="lib\MoonWorks\MoonWorks.csproj" />
</ItemGroup>
2022-08-30 05:11:51 +00:00
<Import Project=".\CopyMoonlibs.targets" />
2021-04-04 21:01:40 +00:00
</Project>