first commit

This commit is contained in:
2026-09-13 16:52:34 +04:00
commit fbb7b0ad84
16 changed files with 1159 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<Project>
<Import Project="../Directory.Build.props" />
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
</Project>
@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Just.PreciseMath.Benchmarks</AssemblyName>
<RootNamespace>Just.PreciseMath.Benchmarks</RootNamespace>
<Description>BenchmarkDotNet scaffold for measuring Just.PreciseMath arithmetic and mathematical functions.</Description>
<!-- Source-free scaffold: change to Exe when adding the benchmark entry point. -->
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.15.8" />
<ProjectReference Include="../../0-source/Just.PreciseMath/Just.PreciseMath.csproj" />
</ItemGroup>
</Project>