44 lines
1.4 KiB
XML
44 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="Common\Content\**\*.*">
|
|
<Link>Content\%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MoonWorks\MoonWorks.csproj" />
|
|
</ItemGroup>
|
|
|
|
<!-- TODO: remove this once examples are fully converted -->
|
|
<PropertyGroup>
|
|
<DefaultItemExcludes>$(DefaultItemExcludes);Examples\**\*</DefaultItemExcludes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Examples\Example.cs" />
|
|
<Compile Include="Examples\BasicComputeExample.cs" />
|
|
<Compile Include="Examples\BasicStencilExample.cs" />
|
|
<Compile Include="Examples\BasicTriangleExample.cs" />
|
|
<Compile Include="Examples\ClearScreenExample.cs" />
|
|
<Compile Include="Examples\ClearScreen_MultiWindowExample.cs" />
|
|
<Compile Include="Examples\CompressedTexturesExample.cs" />
|
|
<Compile Include="Examples\ComputeUniformsExample.cs" />
|
|
<Compile Include="Examples\CopyTextureExample.cs" />
|
|
<Compile Include="Examples\CubeExample.cs" />
|
|
<Compile Include="Examples\CullFaceExample.cs" />
|
|
<Compile Include="Examples\DepthMSAAExample.cs" />
|
|
<Compile Include="Examples\DrawIndirectExample.cs" />
|
|
</ItemGroup>
|
|
|
|
<Import Project=".\CopyMoonlibs.targets" />
|
|
|
|
</Project>
|