123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\MonoGame\v3.0\MonoGame.Common.props')" />
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>net6.0</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Samples.SLMC</RootNamespace>
- <AssemblyName>Samples.SLMC</AssemblyName>
- <MonoGamePlatform>Windows</MonoGamePlatform>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <OutputPath>bin\$(Configuration)\DesktopGL\net6\</OutputPath>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
- <DefineConstants>TRACE;DEBUG;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
- <DefineConstants>TRACE;WINDOWS MG</DefineConstants>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="SLMCSampleComponent.cs" />
- <Compile Include="SampleGame.cs" />
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Properties\AssemblyInfo.cs" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Xna.Framework">
- <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\Framework\netstandard2.0\Xna.Framework.dll</HintPath>
- </Reference>
- <Reference Include="MonoGame.Framework">
- <HintPath>$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\MonoGame.Framework.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\SLMCContent\Samples.SLMCContent.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <ItemGroup>
- <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\SDL2.dll">
- <Link>x64\SDL2.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Include="$(MonoGameInstallDirectory)\MonoGame\v3.0\Assemblies\DesktopGL\netstandard2.0\x64\soft_oal.dll">
- <Link>x64\soft_oal.dll</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
- </Project>
|