-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNumericParser.csproj
More file actions
25 lines (21 loc) · 888 Bytes
/
NumericParser.csproj
File metadata and controls
25 lines (21 loc) · 888 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>NumericParser</PackageId>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Version>0.9.6</Version>
<Authors>navferty</Authors>
<PackageDescription>Flexible parser for decimal values from string.</PackageDescription>
<RepositoryUrl>https://github.com/navferty/NumericParser</RepositoryUrl>
</PropertyGroup>
<ItemGroup Condition="$(TargetFramework)=='NETSTANDARD2.0'">
<PackageReference Include="System.Memory" Version="4.5.5" />
</ItemGroup>
<ItemGroup>
<None Include="../readme.md" Pack="true" PackagePath="/" />
</ItemGroup>
</Project>