NHSE/NHSE.Core/NHSE.Core.csproj
Kurt f5ffb2477f Add item type enum & mapping, and better item color generator
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
2020-03-31 13:27:54 -07:00

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>