12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <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-windows</TargetFramework>
- <OutputType>WinExe</OutputType>
- <RootNamespace>Samples.Animation</RootNamespace>
- <AssemblyName>Samples.Animation</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>
- <UseWindowsForms>True</UseWindowsForms>
- </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="AnimationSampleComponent.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\Windows\net6.0-windows\MonoGame.Framework.dll</HintPath>
- </Reference>
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <MonoGameContentReference Include="..\AnimationContent\Content.mgcb">
- <Link>Content\Content.mgcb</Link>
- </MonoGameContentReference>
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Animation\Aether.Animation.NETSTANDARD.DX.csproj" />
- <ProjectReference Include="..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.NETSTANDARD.csproj" />
- </ItemGroup>
- <Import Project="C:\Program Files (x86)\MSBuild\MonoGame\v3.0\MonoGame.Content.Builder17.targets" />
- </Project>
|