Skip to content

Commit 4777911

Browse files
committed
Updates to csproj version
1 parent af60610 commit 4777911

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed

src/json-ld.net/Core/NormalizeUtils.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ public virtual object HashBlankNodes(IEnumerable<string> unnamed_)
4646
bool named = false;
4747
IList<string> hashes = new List<string>(unique.Keys);
4848
hashes.SortInPlace();
49-
5049
foreach (string hash in hashes)
5150
{
5251
string bnode = unique[hash];
@@ -75,7 +74,6 @@ public virtual object HashBlankNodes(IEnumerable<string> unnamed_)
7574
// enumerate duplicate hash groups in sorted order
7675
hashes = new List<string>(duplicates.Keys);
7776
hashes.SortInPlace();
78-
7977
// process each group
8078
for (int pgi = 0; ; pgi++)
8179
{
@@ -113,7 +111,6 @@ public virtual object HashBlankNodes(IEnumerable<string> unnamed_)
113111

114112
// sort normalized output
115113
normalized.SortInPlace();
116-
117114
// handle output format
118115
if (options.format != null)
119116
{
@@ -147,7 +144,6 @@ public virtual object HashBlankNodes(IEnumerable<string> unnamed_)
147144
{
148145
// name bnodes in hash order
149146
results.SortInPlace(new _IComparer_145());
150-
151147
foreach (NormalizeUtils.HashResult r in results)
152148
{
153149
// name all bnodes in path namer in

src/json-ld.net/json-ld.net.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Description>JSON-LD processor for .NET
44

55
Implements the W3C JSON-LD 1.0 standard.</Description>
6-
<VersionPrefix>1.0.7.1</VersionPrefix>
6+
<VersionPrefix>1.0.7</VersionPrefix>
77
<Authors>NuGet;linked-data-dotnet</Authors>
88
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.1</TargetFrameworks>
99
<AssemblyName>json-ld.net</AssemblyName>
@@ -17,7 +17,6 @@ Implements the W3C JSON-LD 1.0 standard.</Description>
1717
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1818
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1919
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
20-
<IsPackable>true</IsPackable>
2120
</PropertyGroup>
2221
<ItemGroup>
2322
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />

0 commit comments

Comments
 (0)