Minecraft-Realms-Emulator/Panel/Panel.csproj
2024-05-28 11:48:10 +02:00

32 lines
935 B
XML

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\lib\**" />
<Content Remove="wwwroot\lib\**" />
<EmbeddedResource Remove="wwwroot\lib\**" />
<None Remove="wwwroot\lib\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="DotNetEnv" Version="3.0.0" />
</ItemGroup>
<ItemGroup>
<Content Update="wwwroot\bootstrap\bootstrap.min.css">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
<Content Update="wwwroot\bootstrap\bootstrap.min.css.map">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</Content>
</ItemGroup>
</Project>