Fixed an absolutely stupid bug. Bumped package version to 1.6.8
This commit is contained in:
parent
7934f807ef
commit
4b05b1b6b9
@ -17,7 +17,7 @@
|
|||||||
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
||||||
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
<Version>1.6.7</Version>
|
<Version>1.6.8</Version>
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
<PackageReleaseNotes></PackageReleaseNotes>
|
||||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -31,7 +31,7 @@ namespace MontoyaTech.Rest.Net
|
|||||||
builder.Append(input[0]);
|
builder.Append(input[0]);
|
||||||
|
|
||||||
for (int i = 1; i < input.Count; i++)
|
for (int i = 1; i < input.Count; i++)
|
||||||
builder.Append(separator).Append(input[1]);
|
builder.Append(separator).Append(input[i]);
|
||||||
|
|
||||||
return builder.ToString();
|
return builder.ToString();
|
||||||
}
|
}
|
||||||
@ -48,7 +48,7 @@ namespace MontoyaTech.Rest.Net
|
|||||||
builder.Append(input[0]);
|
builder.Append(input[0]);
|
||||||
|
|
||||||
for (int i = 1; i < input.Count; i++)
|
for (int i = 1; i < input.Count; i++)
|
||||||
builder.Append(separator).Append(input[1]);
|
builder.Append(separator).Append(input[i]);
|
||||||
|
|
||||||
return builder.ToString();
|
return builder.ToString();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user