forked from CarlVerret/csFastFloat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcsFastFloat.csproj
More file actions
47 lines (39 loc) · 1.98 KB
/
Copy pathcsFastFloat.csproj
File metadata and controls
47 lines (39 loc) · 1.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net8.0;net5.0;netcoreapp3.1;netstandard2.0</TargetFrameworks>
<Authors>Carl Verret</Authors>
<Description>C# port of Daniel Lemire's fast_float fully ported from C++ to C#. It is up to 9 times faster than the standard library in some cases while providing exact results.</Description>
<Copyright>csFastFloat is licensed under the MIT license</Copyright>
<PackageProjectUrl></PackageProjectUrl>
<RepositoryUrl>https://github.com/CarlVerret/csFastFloat</RepositoryUrl>
<PackageTags>C# Double Float Parsing</PackageTags>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<AssemblyVersion>4.1.5.0</AssemblyVersion>
<FileVersion>4.1.5.0</FileVersion>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>csFastFloat : a fast and accurate float parser</Title>
<LangVersion>9</LangVersion>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>4.1.5</Version>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)'!='netstandard2.0'">
<DefineConstants>$(DefineConstants);HAS_BITOPERATIONS;HAS_INTRINSICS</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<DocumentationFile>bin\Release\$(TargetFramework)\csFastFloat.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="System.Memory" Version="4.6.0" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Enums\**" />
<EmbeddedResource Remove="Enums\**" />
<None Remove="Enums\**" />
<None Include="docs\readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>