- Fix LootTable.GuaranteedRolls type (int -> List<string>) to match JSON schema - Fix BoxEngine guaranteed rolls to iterate item IDs directly - Fix BoxEngine resource condition evaluation for "any" targetId - Make ItemDefinition.DescriptionKey optional - Fix font meta item nameKeys to use proper localization keys - Add 43 xUnit content validation tests (deserialization, cross-refs, localization) - Add self-contained single-file publish via publish.ps1 - Update README with distribute and test sections
32 lines
No EOL
940 B
XML
32 lines
No EOL
940 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="Xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\OpenTheBox\OpenTheBox.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="..\..\content\**\*">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Link>content\%(RecursiveDir)%(Filename)%(Extension)</Link>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
</Project> |