mirror of
https://github.com/CyberL1/Minecraft-Realms-Emulator.git
synced 2024-11-09 16:08:21 -05:00
32 lines
935 B
XML
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>
|