diff --git a/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache b/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache index 4206b3434e4..19b60adae9f 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/ApiClient.mustache @@ -34,11 +34,13 @@ namespace {{packageName}}.Client /// /// Gets or sets the base path. /// + /// The base path public string BasePath { get; set; } /// /// Gets or sets the RestClient. /// + /// An instance of the RestClient public RestClient RestClient { get; set; } /// @@ -205,28 +207,34 @@ namespace {{packageName}}.Client { if (type == typeof(Object)) // return an object { - return (Object)content; - } else if (type == typeof(Stream)) - { - String fileName, filePath; - if (String.IsNullOrEmpty (Configuration.TempFolderPath)) - filePath = System.IO.Path.GetTempPath (); - else - filePath = Configuration.TempFolderPath; - - Regex regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$"); - Match match = regex.Match(headers.ToString()); - if (match.Success) // replace first and last " or ', if found - fileName = filePath + match.Value.Replace("\"", "").Replace("'",""); - else - fileName = filePath + Guid.NewGuid().ToString(); + return content; + } - File.WriteAllText (fileName, content); + if (type == typeof(Stream)) + { + var filePath = String.IsNullOrEmpty(Configuration.TempFolderPath) + ? Path.GetTempPath() + : Configuration.TempFolderPath; + + var fileName = filePath + Guid.NewGuid(); + if (headers != null) + { + var regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$"); + var match = regex.Match(headers.ToString()); + if (match.Success) + fileName = filePath + match.Value.Replace("\"", "").Replace("'", ""); + } + File.WriteAllText(fileName, content); return new FileStream(fileName, FileMode.Open); - } else if (type.Name.StartsWith("System.Nullable`1[[System.DateTime")) // return a datetime object + + } + + if (type.Name.StartsWith("System.Nullable`1[[System.DateTime")) // return a datetime object { return DateTime.Parse(content, null, System.Globalization.DateTimeStyles.RoundtripKind); - } else if (type.Name == "String" || type.Name.StartsWith("System.Nullable")) // return primitive type + } + + if (type == typeof(String) || type.Name.StartsWith("System.Nullable")) // return primitive type { return ConvertType(content, type); } diff --git a/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache b/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache index ce2f351b433..67b07069e2f 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/Configuration.mustache @@ -82,10 +82,9 @@ namespace {{packageName}}.Client /// /// Returns a string with essential information for debugging. /// - /// Debugging Report public static String ToDebugReport() { - String report = "C# SDK ({{invokerPackage}}) Debug Report:\n"; + String report = "C# SDK ({{packageName}}) Debug Report:\n"; report += " OS: " + Environment.OSVersion + "\n"; report += " .NET Framework Version: " + Assembly .GetExecutingAssembly() diff --git a/modules/swagger-codegen/src/main/resources/csharp/api.mustache b/modules/swagger-codegen/src/main/resources/csharp/api.mustache index d7483489d28..8ca15af026b 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/api.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/api.mustache @@ -59,6 +59,7 @@ namespace {{packageName}}.Api /// /// Sets the base path of the API client. /// + /// The base path /// The base path public void SetBasePath(String basePath) { @@ -68,6 +69,7 @@ namespace {{packageName}}.Api /// /// Gets the base path of the API client. /// + /// The base path /// The base path public String GetBasePath(String basePath) { @@ -77,7 +79,7 @@ namespace {{packageName}}.Api /// /// Gets or sets the API client. /// - /// The API client. + /// An instance of the ApiClient public ApiClient ApiClient {get; set;} {{#operation}} diff --git a/modules/swagger-codegen/src/main/resources/csharp/model.mustache b/modules/swagger-codegen/src/main/resources/csharp/model.mustache index c0fac63b385..99da4f8302a 100644 --- a/modules/swagger-codegen/src/main/resources/csharp/model.mustache +++ b/modules/swagger-codegen/src/main/resources/csharp/model.mustache @@ -15,7 +15,10 @@ namespace {{packageName}}.Model { [DataContract] public class {{classname}}{{#parent}} : {{{parent}}}{{/parent}} { {{#vars}} - {{#description}}/* {{{description}}} */{{/description}} + /// + /// {{^description}}Gets or Sets {{{name}}}{{/description}}{{#description}}{{{description}}}{{/description}} + /// {{#description}} + /// {{{description}}}{{/description}} [DataMember(Name="{{baseName}}", EmitDefaultValue=false)] public {{{datatype}}} {{name}} { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs index 5c670b2a36e..91790cb7e06 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/PetApi.cs @@ -166,6 +166,7 @@ namespace IO.Swagger.Api /// /// Sets the base path of the API client. /// + /// The base path /// The base path public void SetBasePath(String basePath) { @@ -175,6 +176,7 @@ namespace IO.Swagger.Api /// /// Gets the base path of the API client. /// + /// The base path /// The base path public String GetBasePath(String basePath) { @@ -184,7 +186,7 @@ namespace IO.Swagger.Api /// /// Gets or sets the API client. /// - /// The API client. + /// An instance of the ApiClient public ApiClient ApiClient {get; set;} diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs index 8bb9056d1f7..014a44cddd7 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/StoreApi.cs @@ -98,6 +98,7 @@ namespace IO.Swagger.Api /// /// Sets the base path of the API client. /// + /// The base path /// The base path public void SetBasePath(String basePath) { @@ -107,6 +108,7 @@ namespace IO.Swagger.Api /// /// Gets the base path of the API client. /// + /// The base path /// The base path public String GetBasePath(String basePath) { @@ -116,7 +118,7 @@ namespace IO.Swagger.Api /// /// Gets or sets the API client. /// - /// The API client. + /// An instance of the ApiClient public ApiClient ApiClient {get; set;} diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs index 934786eff3d..227ebd3a4b5 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Api/UserApi.cs @@ -158,6 +158,7 @@ namespace IO.Swagger.Api /// /// Sets the base path of the API client. /// + /// The base path /// The base path public void SetBasePath(String basePath) { @@ -167,6 +168,7 @@ namespace IO.Swagger.Api /// /// Gets the base path of the API client. /// + /// The base path /// The base path public String GetBasePath(String basePath) { @@ -176,7 +178,7 @@ namespace IO.Swagger.Api /// /// Gets or sets the API client. /// - /// The API client. + /// An instance of the ApiClient public ApiClient ApiClient {get; set;} diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/ApiClient.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/ApiClient.cs index 1b6198e3e7f..a33675bb5c9 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/ApiClient.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/ApiClient.cs @@ -34,11 +34,13 @@ namespace IO.Swagger.Client /// /// Gets or sets the base path. /// + /// The base path public string BasePath { get; set; } /// /// Gets or sets the RestClient. /// + /// An instance of the RestClient public RestClient RestClient { get; set; } /// @@ -205,28 +207,34 @@ namespace IO.Swagger.Client { if (type == typeof(Object)) // return an object { - return (Object)content; - } else if (type == typeof(Stream)) - { - String fileName, filePath; - if (String.IsNullOrEmpty (Configuration.TempFolderPath)) - filePath = System.IO.Path.GetTempPath (); - else - filePath = Configuration.TempFolderPath; - - Regex regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$"); - Match match = regex.Match(headers.ToString()); - if (match.Success) // replace first and last " or ', if found - fileName = filePath + match.Value.Replace("\"", "").Replace("'",""); - else - fileName = filePath + Guid.NewGuid().ToString(); + return content; + } - File.WriteAllText (fileName, content); + if (type == typeof(Stream)) + { + var filePath = String.IsNullOrEmpty(Configuration.TempFolderPath) + ? Path.GetTempPath() + : Configuration.TempFolderPath; + + var fileName = filePath + Guid.NewGuid(); + if (headers != null) + { + var regex = new Regex(@"Content-Disposition:.*filename=['""]?([^'""\s]+)['""]?$"); + var match = regex.Match(headers.ToString()); + if (match.Success) + fileName = filePath + match.Value.Replace("\"", "").Replace("'", ""); + } + File.WriteAllText(fileName, content); return new FileStream(fileName, FileMode.Open); - } else if (type.Name.StartsWith("System.Nullable`1[[System.DateTime")) // return a datetime object + + } + + if (type.Name.StartsWith("System.Nullable`1[[System.DateTime")) // return a datetime object { return DateTime.Parse(content, null, System.Globalization.DateTimeStyles.RoundtripKind); - } else if (type.Name == "String" || type.Name.StartsWith("System.Nullable")) // return primitive type + } + + if (type == typeof(String) || type.Name.StartsWith("System.Nullable")) // return primitive type { return ConvertType(content, type); } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/Configuration.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/Configuration.cs index b875606e6c9..80df0f4ec72 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/Configuration.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Client/Configuration.cs @@ -82,10 +82,9 @@ namespace IO.Swagger.Client /// /// Returns a string with essential information for debugging. /// - /// Debugging Report public static String ToDebugReport() { - String report = "C# SDK () Debug Report:\n"; + String report = "C# SDK (IO.Swagger) Debug Report:\n"; report += " OS: " + Environment.OSVersion + "\n"; report += " .NET Framework Version: " + Assembly .GetExecutingAssembly() diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Category.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Category.cs index 4a410e8220d..c402188b9fc 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Category.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Category.cs @@ -13,12 +13,16 @@ namespace IO.Swagger.Model { [DataContract] public class Category { - + /// + /// Gets or Sets Id + /// [DataMember(Name="id", EmitDefaultValue=false)] public long? Id { get; set; } - + /// + /// Gets or Sets Name + /// [DataMember(Name="name", EmitDefaultValue=false)] public string Name { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Order.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Order.cs index 9e7e706f77e..07b3d14e598 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Order.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Order.cs @@ -13,32 +13,45 @@ namespace IO.Swagger.Model { [DataContract] public class Order { - + /// + /// Gets or Sets Id + /// [DataMember(Name="id", EmitDefaultValue=false)] public long? Id { get; set; } - + /// + /// Gets or Sets PetId + /// [DataMember(Name="petId", EmitDefaultValue=false)] public long? PetId { get; set; } - + /// + /// Gets or Sets Quantity + /// [DataMember(Name="quantity", EmitDefaultValue=false)] public int? Quantity { get; set; } - + /// + /// Gets or Sets ShipDate + /// [DataMember(Name="shipDate", EmitDefaultValue=false)] public DateTime? ShipDate { get; set; } - /* Order Status */ + /// + /// Order Status + /// + /// Order Status [DataMember(Name="status", EmitDefaultValue=false)] public string Status { get; set; } - + /// + /// Gets or Sets Complete + /// [DataMember(Name="complete", EmitDefaultValue=false)] public bool? Complete { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Pet.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Pet.cs index 49e6d582f5e..41216b52802 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Pet.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Pet.cs @@ -13,32 +13,45 @@ namespace IO.Swagger.Model { [DataContract] public class Pet { - + /// + /// Gets or Sets Id + /// [DataMember(Name="id", EmitDefaultValue=false)] public long? Id { get; set; } - + /// + /// Gets or Sets Category + /// [DataMember(Name="category", EmitDefaultValue=false)] public Category Category { get; set; } - + /// + /// Gets or Sets Name + /// [DataMember(Name="name", EmitDefaultValue=false)] public string Name { get; set; } - + /// + /// Gets or Sets PhotoUrls + /// [DataMember(Name="photoUrls", EmitDefaultValue=false)] public List PhotoUrls { get; set; } - + /// + /// Gets or Sets Tags + /// [DataMember(Name="tags", EmitDefaultValue=false)] public List Tags { get; set; } - /* pet status in the store */ + /// + /// pet status in the store + /// + /// pet status in the store [DataMember(Name="status", EmitDefaultValue=false)] public string Status { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Tag.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Tag.cs index 47c87ae9ef1..10ace1ad185 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Tag.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/Tag.cs @@ -13,12 +13,16 @@ namespace IO.Swagger.Model { [DataContract] public class Tag { - + /// + /// Gets or Sets Id + /// [DataMember(Name="id", EmitDefaultValue=false)] public long? Id { get; set; } - + /// + /// Gets or Sets Name + /// [DataMember(Name="name", EmitDefaultValue=false)] public string Name { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/User.cs b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/User.cs index f2c3db54608..d22ac54c094 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/User.cs +++ b/samples/client/petstore/csharp/SwaggerClientTest/Lib/SwaggerClient/src/main/csharp/IO/Swagger/Model/User.cs @@ -13,42 +13,59 @@ namespace IO.Swagger.Model { [DataContract] public class User { - + /// + /// Gets or Sets Id + /// [DataMember(Name="id", EmitDefaultValue=false)] public long? Id { get; set; } - + /// + /// Gets or Sets Username + /// [DataMember(Name="username", EmitDefaultValue=false)] public string Username { get; set; } - + /// + /// Gets or Sets FirstName + /// [DataMember(Name="firstName", EmitDefaultValue=false)] public string FirstName { get; set; } - + /// + /// Gets or Sets LastName + /// [DataMember(Name="lastName", EmitDefaultValue=false)] public string LastName { get; set; } - + /// + /// Gets or Sets Email + /// [DataMember(Name="email", EmitDefaultValue=false)] public string Email { get; set; } - + /// + /// Gets or Sets Password + /// [DataMember(Name="password", EmitDefaultValue=false)] public string Password { get; set; } - + /// + /// Gets or Sets Phone + /// [DataMember(Name="phone", EmitDefaultValue=false)] public string Phone { get; set; } - /* User Status */ + /// + /// User Status + /// + /// User Status [DataMember(Name="userStatus", EmitDefaultValue=false)] public int? UserStatus { get; set; } diff --git a/samples/client/petstore/csharp/SwaggerClientTest/SwaggerClientTest.userprefs b/samples/client/petstore/csharp/SwaggerClientTest/SwaggerClientTest.userprefs index 6dc436a4642..509243bbdfc 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/SwaggerClientTest.userprefs +++ b/samples/client/petstore/csharp/SwaggerClientTest/SwaggerClientTest.userprefs @@ -2,7 +2,7 @@ - + diff --git a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll index a120d21961c..9fd1a6e805a 100755 Binary files a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll and b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll differ diff --git a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb index fc4d75c3a45..3ca8f9fa3f2 100644 Binary files a/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb and b/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb differ diff --git a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.csproj.FilesWrittenAbsolute.txt b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.csproj.FilesWrittenAbsolute.txt index af9606f3079..dded8c015ee 100644 --- a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.csproj.FilesWrittenAbsolute.txt +++ b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.csproj.FilesWrittenAbsolute.txt @@ -1,8 +1,8 @@ /Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttribute.cs -/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/Newtonsoft.Json.dll -/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/RestSharp.dll -/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/nunit.framework.dll /Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll.mdb /Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/SwaggerClientTest.dll /Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll /Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb +/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/Newtonsoft.Json.dll +/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/RestSharp.dll +/Users/williamcheng/Code/swagger-codegen/samples/client/petstore/csharp/SwaggerClientTest/bin/Debug/nunit.framework.dll diff --git a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll index a120d21961c..9fd1a6e805a 100755 Binary files a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll and b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll differ diff --git a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb index fc4d75c3a45..3ca8f9fa3f2 100644 Binary files a/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb and b/samples/client/petstore/csharp/SwaggerClientTest/obj/Debug/SwaggerClientTest.dll.mdb differ