Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit 31c3fe3

Browse files
author
github-actions-bot
committed
fix: bump logger
1 parent e8a916a commit 31c3fe3

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

AffixApi.Api.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AffixApi.Api", "src\AffixApi.Api\AffixApi.Api.csproj", "{BAF54A92-8AD2-4ED8-B5AB-F95100452C63}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AffixApi.Api", "src\AffixApi.Api\AffixApi.Api.csproj", "{4582B4E7-A680-41AD-84DB-2445B78F079F}"
66
EndProject
77
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AffixApi.Api.Test", "src\AffixApi.Api.Test\AffixApi.Api.Test.csproj", "{19F1DEBC-DE5E-4517-8062-F000CD499087}"
88
EndProject
@@ -12,10 +12,10 @@ Global
1212
Release|Any CPU = Release|Any CPU
1313
EndGlobalSection
1414
GlobalSection(ProjectConfigurationPlatforms) = postSolution
15-
{BAF54A92-8AD2-4ED8-B5AB-F95100452C63}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16-
{BAF54A92-8AD2-4ED8-B5AB-F95100452C63}.Debug|Any CPU.Build.0 = Debug|Any CPU
17-
{BAF54A92-8AD2-4ED8-B5AB-F95100452C63}.Release|Any CPU.ActiveCfg = Release|Any CPU
18-
{BAF54A92-8AD2-4ED8-B5AB-F95100452C63}.Release|Any CPU.Build.0 = Release|Any CPU
15+
{4582B4E7-A680-41AD-84DB-2445B78F079F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
16+
{4582B4E7-A680-41AD-84DB-2445B78F079F}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{4582B4E7-A680-41AD-84DB-2445B78F079F}.Release|Any CPU.ActiveCfg = Release|Any CPU
18+
{4582B4E7-A680-41AD-84DB-2445B78F079F}.Release|Any CPU.Build.0 = Release|Any CPU
1919
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2020
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Debug|Any CPU.Build.0 = Debug|Any CPU
2121
{19F1DEBC-DE5E-4517-8062-F000CD499087}.Release|Any CPU.ActiveCfg = Release|Any CPU

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Things to keep in mind:
211211
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
212212

213213
- API version: 2023-03-01
214-
- SDK version: 1.1.99
214+
- SDK version: 1.1.100
215215
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen
216216

217217
<a name="frameworks-supported"></a>

src/AffixApi.Api/AffixApi.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<Description>A library generated from a OpenAPI doc</Description>
1313
<Copyright>No Copyright</Copyright>
1414
<RootNamespace>AffixApi.Api</RootNamespace>
15-
<Version>1.1.99</Version>
15+
<Version>1.1.100</Version>
1616
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\AffixApi.Api.xml</DocumentationFile>
1717
<RepositoryUrl>https://github.com/GIT_USER_ID/GIT_REPO_ID.git</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>

src/AffixApi.Api/Client/Configuration.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class Configuration : IReadableConfiguration
3232
/// Version of the package.
3333
/// </summary>
3434
/// <value>Version of the package.</value>
35-
public const string Version = "1.1.99";
35+
public const string Version = "1.1.100";
3636

3737
/// <summary>
3838
/// Identifier for ISO 8601 DateTime Format
@@ -107,7 +107,7 @@ public class Configuration : IReadableConfiguration
107107
public Configuration()
108108
{
109109
Proxy = null;
110-
UserAgent = "OpenAPI-Generator/1.1.99/csharp";
110+
UserAgent = "OpenAPI-Generator/1.1.100/csharp";
111111
BasePath = "https://api.affixapi.com";
112112
DefaultHeaders = new ConcurrentDictionary<string, string>();
113113
ApiKey = new ConcurrentDictionary<string, string>();
@@ -458,7 +458,7 @@ public static String ToDebugReport()
458458
report += " OS: " + System.Environment.OSVersion + "\n";
459459
report += " .NET Framework Version: " + System.Environment.Version + "\n";
460460
report += " Version of the API: 2023-03-01\n";
461-
report += " SDK Package Version: 1.1.99\n";
461+
report += " SDK Package Version: 1.1.100\n";
462462

463463
return report;
464464
}

src/AffixApi.Api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Things to keep in mind:
211211
This C# SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
212212

213213
- API version: 2023-03-01
214-
- SDK version: 1.1.99
214+
- SDK version: 1.1.100
215215
- Build package: org.openapitools.codegen.languages.CSharpNetCoreClientCodegen
216216

217217
<a name="frameworks-supported"></a>

0 commit comments

Comments
 (0)