-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInnovoft.Text.StringDecodingTrees.csproj
More file actions
50 lines (44 loc) · 2.12 KB
/
Innovoft.Text.StringDecodingTrees.csproj
File metadata and controls
50 lines (44 loc) · 2.12 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
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Version>1.0.6</Version>
<PackageId>Innovoft.Text.StringDecodingTrees</PackageId>
<Title>Innovoft.Text.StringDecodingTrees</Title>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/innovoft/Innovoft.Text.StringDecodingTrees</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>string decoding stream GC efficincy efficient efficient-algorithm</PackageTags>
<RootNamespace>Innovoft.Text</RootNamespace>
<Authors>Steven Retz</Authors>
<Company>Innovoft</Company>
<Copyright>Copyright © Innovoft 2021</Copyright>
<Description>Innovoft.Text.StringDecodingTrees is a library for efficient string decoding. When decoding the same string multiple times using StringDecodingTree takes a third of the time than Encoding.GeString. Not to mention the GC benifit of not creating the same string over and over.</Description>
<PackageProjectUrl>https://github.com/innovoft/Innovoft.Text.StringDecodingTrees</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<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>
<Compile Remove="Benchmarks\**" />
<EmbeddedResource Remove="Benchmarks\**" />
<None Remove="Benchmarks\**" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>