| 12345678910111213141516171819202122232425262728293031323334353637 |
- <!-- .xnb copy ItemGroup moved inside <Project> below -->
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net9.0</TargetFramework>
- <OutputType>Exe</OutputType>
- <RootNamespace>Sound</RootNamespace>
- <AssemblyName>Sound</AssemblyName>
- <Nullable>enable</Nullable>
- <Description></Description>
- <Company></Company>
- <Product>Sound</Product>
- <Copyright>Copyright © 2011</Copyright>
- <Version>1.0.0.0</Version>
- <FileVersion>1.0.0.0</FileVersion>
- <MonoGamePlatform>DesktopGL</MonoGamePlatform>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\Sound.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
-
- <ItemGroup>
- <None Include="Sound.icns">
- <Link>$(AssemblyName).icns</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|