| 123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Audio3D.DesktopGL</RootNamespace>
- <AssemblyName>Audio3D</AssemblyName>
- <AssemblyTitle>Audio3D DesktopGL</AssemblyTitle>
- <Description>DesktopGL platform for Audio3D MonoGame sample.</Description>
- <Authors>CartBlanche</Authors>
- <Company>CartBlanche</Company>
- <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Audio3D.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- <ItemGroup>
- <None Include="Audio3D.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|