1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <EnableDefaultItems>false</EnableDefaultItems>
- <TargetFramework>net8.0-windows</TargetFramework>
- <RollForward>Major</RollForward>
- <UseWindowsForms>true</UseWindowsForms>
- <ProjectGuid>8543bf7a-a5ca-480f-89de-aa0e9522844a</ProjectGuid>
- <OutputType>WinExe</OutputType>
- <AppDesignerFolder>Properties</AppDesignerFolder>
- <RootNamespace>Animation</RootNamespace>
- <AssemblyName>Animation</AssemblyName>
- <OutputPath>bin\$(Platform)\$(Configuration)\</OutputPath>
- <DefineConstants>$(DefineConstants);WINDOWSDX</DefineConstants>
- <KniPlatform>Windows</KniPlatform>
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
- </PropertyGroup>
-
- <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
- </PropertyGroup>
-
- <PropertyGroup>
- <ApplicationIcon>Icon.ico</ApplicationIcon>
- </PropertyGroup>
- <PropertyGroup>
- <ApplicationManifest>app.manifest</ApplicationManifest>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="nkast.Xna.Framework" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Content" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Media" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Input" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Game" Version="3.13.9001" />
- <PackageReference Include="MonoGame.Framework.WindowsDX.9000" Version="3.13.9001" />
- <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.13.9001" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="Icon.ico" />
- </ItemGroup>
- <ItemGroup>
- <KniContentReference Include="..\AnimationContent\AnimationContent.mgcb">
- <Link>Content\AnimationContent.mgcb</Link>
- </KniContentReference>
- <None Include="app.manifest" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\..\Animation\Aether.Animation.NETSTANDARD.csproj" />
- <ProjectReference Include="..\..\..\Shaders\InfiniteGrid\Aether.Shaders.InfiniteGrid.NETSTANDARD.csproj" />
- </ItemGroup>
- <Import Project="..\Animation.Shared\Animation.Shared.projitems" Label="Shared" />
- </Project>
|