2024-01-18 16:18:25 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
2024-01-23 17:54:53 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
2024-01-18 16:18:25 +00:00
|
|
|
|
|
2024-01-23 17:54:53 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
|
|
|
|
</ItemGroup>
|
2024-01-18 22:13:40 +00:00
|
|
|
|
|
2024-01-23 17:54:53 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
|
|
|
|
|
</ItemGroup>
|
2024-01-19 14:45:18 +00:00
|
|
|
|
|
2024-01-23 17:54:53 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="data\Config\LevelOutput\Floor\*.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="data\Config\LevelOutput\Group\**\*.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
<Content Include="data\Config\ExcelBinOutput\*.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Remove="data\Config\ExcelBinOutput\MonsterExcelTable.json" />
|
|
|
|
|
<None Remove="data\Config\ExcelBinOutput\MonsterTemplateExcelTable.json" />
|
|
|
|
|
<None Remove="data\Config\ExcelBinOutput\StageExcelTable.json" />
|
|
|
|
|
</ItemGroup>
|
2024-01-19 14:45:18 +00:00
|
|
|
|
|
2024-01-18 16:18:25 +00:00
|
|
|
|
</Project>
|