Fixed an accidental bug introduced to the client generation. Bumped package version to 1.7.4

This commit is contained in:
MattMo 2023-09-24 19:49:25 -07:00
parent b9260dbdb1
commit 9633e211a1
2 changed files with 9 additions and 9 deletions

View File

@ -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.3</Version> <Version>1.7.4</Version>
<PackageReleaseNotes></PackageReleaseNotes> <PackageReleaseNotes></PackageReleaseNotes>
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon> <PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
</PropertyGroup> </PropertyGroup>

View File

@ -263,15 +263,15 @@ namespace MontoyaTech.Rest.Net
writer.WriteLine(")"); writer.WriteLine(")");
writer.WriteLine('{').Indent(); writer.WriteLine('{').Indent();
foreach (var field in fields)
writer.WriteLine($"this.{field.Name} = {field.Name};");
foreach (var property in properties)
writer.WriteLine($"this.{property.Name} = {property.Name};");
writer.Outdent().WriteLine('}');
} }
foreach (var field in fields)
writer.WriteLine($"this.{field.Name} = {field.Name};");
foreach (var property in properties)
writer.WriteLine($"this.{property.Name} = {property.Name};");
writer.Outdent().WriteLine('}');
} }
//Generate C# for any types that belong to this one. //Generate C# for any types that belong to this one.