You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1012 B
32 lines
1012 B
<Project Sdk="Microsoft.NET.Sdk"> |
|
<PropertyGroup> |
|
<OutputType>Exe</OutputType> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<TargetName>ProjectName</TargetName> |
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> |
|
<LangVersion>7.3</LangVersion> |
|
<StartupObject>ProjectName.Program</StartupObject> |
|
<AssemblyName>ProjectName</AssemblyName> |
|
<RootNamespace>ProjectName</RootNamespace> |
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> |
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
<ApplicationIcon /> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<Content Include="Content\**\*.*"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</Content> |
|
</ItemGroup> |
|
|
|
<PropertyGroup> |
|
<DefaultItemExcludes>$(DefaultItemExcludes);lib\**\*</DefaultItemExcludes> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="lib\MoonWorks\MoonWorks.csproj" /> |
|
</ItemGroup> |
|
|
|
<Import Project=".\CopyMoonlibs.targets" /> |
|
</Project>
|
|
|