Skip to content

Commit

Permalink
fix: Fix #73
Browse files Browse the repository at this point in the history
  • Loading branch information
unchase committed Feb 6, 2022
1 parent d1bd999 commit 3f1658f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@

These are the changes to each version that has been released on the official [Visual Studio extension gallery](https://marketplace.visualstudio.com/items?itemName=unchase.UnchaseODataConnectedService).

## v1.5.0 `(2021-01-23)`
## v1.5.1 `(2022-02-07)`

- Fix [issue #73](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/73)

## v1.5.0 `(2022-01-23)`

- [x] Update dependencies: add support for NSwag.Commands v13.14.8
- [x] Fix [issue #63](https://github.com/unchase/Unchase.Odata.Connectedservice/issues/63) - Visual Studio 2022 Support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,10 @@ private static void ExecuteNoncriticalOperation(
catch (Exception ex)
{
var loggerTask = logger.WriteMessageAsync(LoggerMessageCategory.Warning, failureMessage, failureMessageArg, ex);
loggerTask.RunSynchronously();
if (!loggerTask.IsCompleted)
{
loggerTask.RunSynchronously();
}
}
}
#endregion
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ internal sealed partial class Vsix
public const string Name = "Unchase OData Connected Service VS2022";
public const string Description = @"OData V1-V4 connected service with extension methods for client-side proxy class.";
public const string Language = "en-US";
public const string Version = "1.5.0";
public const string Version = "1.5.1";
public const string Author = "Unchase";
public const string Tags = "OData, REST API, Code Generation, Scaffolding, Connected Service";
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Unchase.OData.ConnectedService.afc46f39-8c64-4e14-85d0-af6c7c4291f4" Version="1.5.0" Language="en-US" Publisher="Unchase" />
<Identity Id="Unchase.OData.ConnectedService.afc46f39-8c64-4e14-85d0-af6c7c4291f4" Version="1.5.1" Language="en-US" Publisher="Unchase" />
<DisplayName>Unchase OData Connected Service VS2022</DisplayName>
<Description xml:space="preserve">OData V1-V4 connected service with extension methods for client-side proxy class.</Description>
<MoreInfo>https://github.com/unchase/Unchase.Odata.Connectedservice</MoreInfo>
Expand Down
4 changes: 2 additions & 2 deletions src/Unchase.OData.ConnectedService/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
[assembly: AssemblyVersion("1.5.1.0")]
[assembly: AssemblyFileVersion("1.5.1.0")]
[assembly: NeutralResourcesLanguage("en")]

Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" ?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="Unchase.OData.ConnectedService.afc46f39-8c64-4e14-85d0-af6c7c4291f3" Version="1.5.0" Language="en-US" Publisher="Unchase" />
<Identity Id="Unchase.OData.ConnectedService.afc46f39-8c64-4e14-85d0-af6c7c4291f3" Version="1.5.1" Language="en-US" Publisher="Unchase" />
<DisplayName>Unchase OData Connected Service</DisplayName>
<Description xml:space="preserve">OData V1-V4 connected service with extension methods for client-side proxy class.</Description>
<MoreInfo>https://github.com/unchase/Unchase.Odata.Connectedservice</MoreInfo>
Expand Down

0 comments on commit 3f1658f

Please sign in to comment.