30 lines
844 B
XML
30 lines
844 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Hubs\**" />
|
|
<Content Remove="Hubs\**" />
|
|
<EmbeddedResource Remove="Hubs\**" />
|
|
<None Remove="Hubs\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="ILobbyProvider.cs" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.8" />
|
|
</ItemGroup>
|
|
|
|
<!-- Copy static web assets to output on build so running the exe from bin works -->
|
|
<ItemGroup>
|
|
<Content Update="wwwroot\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project>
|