mirror of
https://github.com/Ale32bit/Capy64.git
synced 2025-01-18 18:46:43 +00:00
73 lines
No EOL
2.7 KiB
XML
73 lines
No EOL
2.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RollForward>Major</RollForward>
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
<TieredCompilation>false</TieredCompilation>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<ApplicationIcon>Icon.ico</ApplicationIcon>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<PackageLicenseFile>LICENSE</PackageLicenseFile>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="Assets\default.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<Content Include="Assets\font.ttf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
<EmbeddedResource Include="Icon.ico" />
|
|
<EmbeddedResource Include="Icon.bmp">
|
|
<LogicalName>Icon.bmp</LogicalName>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="Assets\Lua/**">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\LICENSE">
|
|
<Pack>True</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="DiscordRichPresence" Version="1.1.3.18" />
|
|
<PackageReference Include="FontStashSharp.MonoGame" Version="1.2.8" />
|
|
<PackageReference Include="KeraLua" Version="1.3.3" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
|
|
<PackageReference Include="MonoGame.Extended.Graphics" 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" />
|
|
<PackageReference Include="System.ComponentModel.Composition" Version="7.0.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="Assets\bios.lua">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
<Message Text="Restoring dotnet tools" Importance="High" />
|
|
<Exec Command="dotnet tool restore" />
|
|
</Target>
|
|
<ItemGroup>
|
|
<EditorConfigFiles Remove="C:\Users\Alex\source\repos\Capy64\Capy64\Capy64\.editorconfig" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
|
|
<DefineConstants>_WINDOWS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' ">
|
|
<DefineConstants>_LINUX</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" '$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' ">
|
|
<DefineConstants>_OSX</DefineConstants>
|
|
</PropertyGroup>
|
|
</Project> |