HashCode.Combine is called nowhere; the package (and its DLL in the dist zip) was dead weight since the Core projects were created. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
22 lines
756 B
XML
22 lines
756 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<!-- net48 so it runs in-box on the cabinet PCs, same as RIOJoy. Uses
|
|
System.IO.Ports from the framework BCL; Span/records/init come from
|
|
System.Memory + PolySharp. -->
|
|
<TargetFramework>net48</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Memory" Version="4.5.5" />
|
|
<PackageReference Include="PolySharp" Version="1.14.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|