27 lines
947 B
XML
27 lines
947 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<Import Project="../shared.props" />
|
|
|
|
<PropertyGroup>
|
|
<PublishAot>true</PublishAot>
|
|
|
|
<IlcDisableReflection>false</IlcDisableReflection>
|
|
<StaticExecutable>true</StaticExecutable>
|
|
<StripSymbols>true</StripSymbols>
|
|
<StaticallyLinked>true</StaticallyLinked>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0"/>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4"/>
|
|
<ProjectReference Include="../DisplayCommands/DisplayCommands.csproj"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="./assets/tank.png" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Always"/>
|
|
<!-- TODO include maps in release -->
|
|
<None Include="./assets/maps/**" CopyToOutputDirectory="PreserveNewest"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|