2
0

Samples.SLMC.DESKTOPGL.NET6.csproj 2.4 KB

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