2022-01-26 00:25:44 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-08-30 05:11:51 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</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-01-26 00:25:44 +00:00
|
|
|
|
2022-08-30 05:11:51 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="Content\**\*.*">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
2022-01-26 00:25:44 +00:00
|
|
|
|
2022-08-30 05:11:51 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes>
|
|
|
|
</PropertyGroup>
|
2022-01-26 00:25:44 +00:00
|
|
|
|
2022-08-30 05:11:51 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="lib\MoonWorks\MoonWorks.csproj" />
|
|
|
|
</ItemGroup>
|
2022-01-26 00:25:44 +00:00
|
|
|
|
2022-08-30 05:11:51 +00:00
|
|
|
<Import Project=".\CopyMoonlibs.targets" />
|
2021-04-04 21:01:40 +00:00
|
|
|
</Project>
|