Files
PurrLobby/PurrLobby/PurrLobby.csproj
Exil Productions 3f46c6f5a5 Add project files.
2025-09-12 15:20:46 +02:00

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>