diff options
| author | hazel <hazel@hazelthats.me> | 2026-01-26 22:04:39 +0100 |
|---|---|---|
| committer | hazel <hazel@hazelthats.me> | 2026-01-26 22:04:39 +0100 |
| commit | 567c422f8cd42eba2437f9a8c2522716a1649be7 (patch) | |
| tree | 93c5b296f3b7c14b626d0aadf5cad37764c41c74 /Celesteia.csproj | |
| download | celesteia-567c422f8cd42eba2437f9a8c2522716a1649be7.tar.gz celesteia-567c422f8cd42eba2437f9a8c2522716a1649be7.tar.bz2 celesteia-567c422f8cd42eba2437f9a8c2522716a1649be7.zip | |
celesteia archive, last updated april 9th 2024
Signed-off-by: hazel <hazel@hazelthats.me>
Diffstat (limited to 'Celesteia.csproj')
| -rw-r--r-- | Celesteia.csproj | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/Celesteia.csproj b/Celesteia.csproj new file mode 100644 index 0000000..1cca541 --- /dev/null +++ b/Celesteia.csproj @@ -0,0 +1,46 @@ +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>net6.0</TargetFramework> + <RollForward>Major</RollForward> + <PublishReadyToRun>false</PublishReadyToRun> + <TieredCompilation>false</TieredCompilation> + </PropertyGroup> + <PropertyGroup> + <ApplicationManifest>app.manifest</ApplicationManifest> + <ApplicationIcon>Icon.ico</ApplicationIcon> + </PropertyGroup> + <PropertyGroup Condition="'$(Configuration)'=='Release'"> + <DebugType>none</DebugType> + <DebugSymbols>false</DebugSymbols> + <PublishSingleFile>true</PublishSingleFile> + </PropertyGroup> + <ItemGroup> + <None Remove="Icon.ico" /> + <None Remove="Icon.bmp" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Icon.ico" /> + <EmbeddedResource Include="Icon.bmp" /> + </ItemGroup> + <ItemGroup> + <MonoGameContentReference Include="Content\Content.mgcb" /> + </ItemGroup> + <ItemGroup> + <TrimmerRootAssembly Include="Microsoft.Xna.Framework.Content.ContentTypeReader" Visible="false" /> + </ItemGroup> + <ItemGroup> + <PackageReference Include="MonoGame.Extended" Version="3.8.0" /> + <PackageReference Include="MonoGame.Extended.Entities" Version="3.8.0" /> + <PackageReference Include="MonoGame.Extended.Input" Version="3.8.0" /> + <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" /> + <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" /> + </ItemGroup> + <Target Name="RestoreDotnetTools" BeforeTargets="Restore"> + <Message Text="Restoring dotnet tools" Importance="High" /> + <Exec Command="dotnet tool restore" /> + </Target> + <ItemGroup> + <RuntimeHostConfigurationOption Include="System.Globalization.Invariant" Value="true" /> + </ItemGroup> +</Project>
\ No newline at end of file |
