mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-18 05:59:03 +03:00
# Description The documentation for it can be found here: https://numerics.mathdotnet.com/api/MathNet.Numerics/index.htm This adds an entire massive library of academic/scientific/engineering math functions. I basically need this going forwards to start comprehensively fixing this game's terrible math. # Changelog Not player facing, but it deserves to be here: 🆑 - add: (For Developers): Added the MathNet.Numerics library. It contains a great number of scientific and engineering math related functions. For more information, its documentation can be found here, https://numerics.mathdotnet.com/api/MathNet.Numerics/index.htm (cherry picked from commit 09d438d1035a276c01b708552f35782d4fa54941)
30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<!-- Work around https://github.com/dotnet/project-system/issues/4314 -->
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
|
<LangVersion>12</LangVersion>
|
|
<IsPackable>false</IsPackable>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
|
|
<PackageReference Include="MathNet.Numerics" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Content.Shared.Database\Content.Shared.Database.csproj" />
|
|
<ProjectReference Include="..\RobustToolbox\Lidgren.Network\Lidgren.Network.csproj">
|
|
<Private>false</Private>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared.Maths\Robust.Shared.Maths.csproj">
|
|
<Private>false</Private>
|
|
</ProjectReference>
|
|
<ProjectReference Include="..\RobustToolbox\Robust.Shared\Robust.Shared.csproj">
|
|
<Private>false</Private>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.Properties.targets" />
|
|
<Import Project="..\RobustToolbox\MSBuild\Robust.CompNetworkGenerator.targets" />
|
|
</Project>
|