| 12345678910111213141516171819202122232425262728293031323334 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0-windows</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>BloomSample.Windows</RootNamespace>
- <AssemblyName>BloomSample.Windows</AssemblyName>
- <UseWindowsForms>false</UseWindowsForms>
- <UseWPF>false</UseWPF>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\BloomSample.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\sunset.xnb" Link="Content\sunset.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\hudFont.xnb" Link="Content\hudFont.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Models\tank.xnb" Link="Content\tank.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Effects\BloomExtract.xnb" Link="Content\BloomExtract.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Effects\BloomCombine.xnb" Link="Content\BloomCombine.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Effects\GaussianBlur.xnb" Link="Content\GaussianBlur.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|