-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathInnovoft.Text.JSON.csproj
More file actions
45 lines (40 loc) · 1.84 KB
/
Innovoft.Text.JSON.csproj
File metadata and controls
45 lines (40 loc) · 1.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>1.3.0</Version>
<PackageId>Innovoft.Text.JSON</PackageId>
<Title>Innovoft.Text.JSON</Title>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/innovoft/Innovoft.Text.JSON</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>json efficincy efficient efficient-algorithm</PackageTags>
<Authors>Steven Retz</Authors>
<Company>Innovoft</Company>
<Copyright>Copyright © Innovoft 2021</Copyright>
<Description>Instead of only passing a Utf8JsonReader also pass a UTF8JSONReaderStream and call public bool Read(ref Utf8JsonReader reader) which handle all the issues with reading from a stream.</Description>
<PackageProjectUrl>https://github.com/innovoft/Innovoft.Text.JSON</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<Target Name="SetSourceRevisionId" BeforeTargets="InitializeSourceControlInformation" Condition="$(SourceRevisionId) == ''">
<Exec Command="git rev-parse HEAD" ConsoleToMSBuild="True" IgnoreExitCode="False">
<Output PropertyName="SourceRevisionId" TaskParameter="ConsoleOutput" />
</Exec>
</Target>
<Target Name="RevisionAttribute" AfterTargets="InitializeSourceControlInformation" Condition="$(SourceRevisionId) != ''">
<ItemGroup>
<AssemblyAttribute Include="System.Reflection.AssemblyMetadataAttribute">
<_Parameter1>Revision</_Parameter1>
<_Parameter2>$(SourceRevisionId)</_Parameter2>
</AssemblyAttribute>
</ItemGroup>
</Target>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>