2024-06-05 21:19:43 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-06-06 05:47:06 +00:00
|
|
|
<OutputType>Exe</OutputType>
|
2024-06-05 21:19:43 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-06 05:47:06 +00:00
|
|
|
<Content Include="Common\Content\**\*.*">
|
2024-06-05 21:19:43 +00:00
|
|
|
<Link>Content\%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</Content>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\MoonWorks\MoonWorks.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-06 05:47:06 +00:00
|
|
|
<!-- 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" />
|
2024-06-06 18:14:24 +00:00
|
|
|
<Compile Include="Examples\CopyTextureExample.cs" />
|
2024-06-06 19:06:37 +00:00
|
|
|
<Compile Include="Examples\CubeExample.cs" />
|
2024-06-06 05:47:06 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-05 21:19:43 +00:00
|
|
|
<Import Project=".\CopyMoonlibs.targets" />
|
|
|
|
|
|
|
|
</Project>
|