28 lines
878 B
XML
28 lines
878 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>x64</Platforms>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<BaseOutputPath>$(SolutionDir)out</BaseOutputPath>
|
|
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
|
|
<Version>0.0.1</Version>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<NoWarn>$(NoWarn);NETSDK1206</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.CommandLine" Version="2.0.0-rc.2.25502.107" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\SFMLRenderer\SFMLRenderer.csproj" />
|
|
<ProjectReference Include="..\Spine\Spine.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|