Fixed an issue where if a route didn't end with a /, the generated code would still contain an ending slash. Bumped package version to 1.7.1
This commit is contained in:
parent
69a1d9c3a8
commit
2f71c18b65
@ -406,6 +406,18 @@ namespace MontoyaTech.Rest.Net
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the last character written to the writer if there was one, otherwise it returns character 0.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns></returns>
|
||||||
|
public char Peek()
|
||||||
|
{
|
||||||
|
if (this.Builder.Length > 0)
|
||||||
|
return this.Builder[this.Builder.Length - 1];
|
||||||
|
else
|
||||||
|
return (char)0;
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets all the written data from the writer.
|
/// Gets all the written data from the writer.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -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.7.0</Version>
|
<Version>1.7.1</Version>
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
<PackageReleaseNotes></PackageReleaseNotes>
|
||||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
@ -448,10 +448,11 @@ namespace MontoyaTech.Rest.Net
|
|||||||
int argumentIndex = 0;
|
int argumentIndex = 0;
|
||||||
foreach (var component in components)
|
foreach (var component in components)
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrWhiteSpace(component))
|
if (writer.Peek() != '/')
|
||||||
{
|
|
||||||
writer.Write('/');
|
writer.Write('/');
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(component))
|
||||||
|
{
|
||||||
if (component.StartsWith("{"))
|
if (component.StartsWith("{"))
|
||||||
{
|
{
|
||||||
writer.Write("{").Write(parameters[argumentIndex++ + 1].Name).Write("}");
|
writer.Write("{").Write(parameters[argumentIndex++ + 1].Name).Write("}");
|
||||||
|
@ -549,10 +549,11 @@ namespace MontoyaTech.Rest.Net
|
|||||||
int argumentIndex = 0;
|
int argumentIndex = 0;
|
||||||
foreach (var component in components)
|
foreach (var component in components)
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrWhiteSpace(component))
|
if (writer.Peek() != '/')
|
||||||
{
|
|
||||||
writer.Write('/');
|
writer.Write('/');
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(component))
|
||||||
|
{
|
||||||
if (component.StartsWith("{"))
|
if (component.StartsWith("{"))
|
||||||
{
|
{
|
||||||
writer.Write("${").Write(parameters[argumentIndex++ + 1].Name).Write("}");
|
writer.Write("${").Write(parameters[argumentIndex++ + 1].Name).Write("}");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user