WutheringWaves/Core/Core.csproj

29 lines
784 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Content Include="data\config\*\*.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<None Remove="data\config\blueprint\blueprintconfig.json" />
<None Remove="data\config\property\baseproperty.json" />
<None Remove="data\config\weapon\weaponconf.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="data\config\level_entity\" />
</ItemGroup>
</Project>