mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-19 15:07:24 -05:00
Item fetches the kind of item it is, then picks out a color for the kind of item items of the same kind will have the same color, rather than randomly mapped colors :D
22 lines
651 B
XML
22 lines
651 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
|
|
<LangVersion>8</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Resources\byte\item_kind.bin" />
|
|
<None Remove="Resources\text\en\text_item_en.txt" />
|
|
<None Remove="Resources\text\en\text_villager_en.txt" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Resources\byte\item_kind.bin" />
|
|
<EmbeddedResource Include="Resources\text\en\text_item_en.txt" />
|
|
<EmbeddedResource Include="Resources\text\en\text_villager_en.txt" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|