Samples.SLMC.DESKTOPGL.NET6.csproj 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
  3. <PropertyGroup>
  4. <EnableDefaultItems>false</EnableDefaultItems>
  5. <TargetFramework>net6.0</TargetFramework>
  6. <OutputType>WinExe</OutputType>
  7. <RootNamespace>Samples.SLMC</RootNamespace>
  8. <AssemblyName>Samples.SLMC</AssemblyName>
  9. <MonoGamePlatform>Windows</MonoGamePlatform>
  10. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  11. <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
  12. </PropertyGroup>
  13. <PropertyGroup>
  14. <ApplicationIcon>Icon.ico</ApplicationIcon>
  15. </PropertyGroup>
  16. <PropertyGroup>
  17. <ApplicationManifest>app.manifest</ApplicationManifest>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
  20. <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
  23. <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <Compile Include="SLMCSampleComponent.cs" />
  27. <Compile Include="SampleGame.cs" />
  28. <Compile Include="Program.cs" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <Compile Include="Properties\AssemblyInfo.cs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <Reference Include="Xna.Framework">
  35. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Framework\netstandard2.0\Xna.Framework.dll</HintPath>
  36. </Reference>
  37. <Reference Include="MonoGame.Framework">
  38. <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\MonoGame.Framework.dll</HintPath>
  39. </Reference>
  40. </ItemGroup>
  41. <ItemGroup>
  42. <Content Include="Icon.ico" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <MonoGameContentReference Include="..\SLMCContent\Samples.SLMCContent.mgcb">
  46. <Link>Content\Content.mgcb</Link>
  47. </MonoGameContentReference>
  48. </ItemGroup>
  49. <ItemGroup>
  50. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\SDL2.dll">
  51. <Link>x64\SDL2.dll</Link>
  52. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  53. </None>
  54. <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\soft_oal.dll">
  55. <Link>x64\soft_oal.dll</Link>
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </None>
  58. </ItemGroup>
  59. <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
  60. </Project>