Skip to content

Commit 52672de

Browse files
committed
1) Added fix: service now visible in VisualBasic projects;
2) Added small fix: Fixed service "ExtensionName".
1 parent 8512684 commit 52672de

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77

88
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.UnchaseOpenAPIConnectedService).
99

10+
## v1.1.15 `(2019-04-20)`
11+
12+
- [x] Added fix: service now visible in `VisualBasic` projects
13+
- [x] Added small fix: Fixed service "ExtensionName"
14+
1015
## v1.1.14 `(2019-04-19)`
1116

1217
- [x] Added fix: Added the ability to automatically install required nuget-packages for .net core

src/Constants.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ public static class Constants
44
{
55
public const string Author = "Nikolay Chebotov (Unchase)";
66
public const string ExtensionCategory = "OpenAPI";
7-
public const string ExtensionName = "Uncahse OpenAPI (Swagger) Connected Service";
7+
public const string ExtensionName = "Unchase OpenAPI (Swagger) Connected Service";
88
public const string ExtensionDescription = "Generates C# HttpClient code for OpenAPI (Swagger API) web service with NSwag.";
99
public const string ProviderId = "Unchase.OpenAPI.ConnectedService";
1010
public const string Version = "1.1";

src/Handler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Unchase.OpenAPI.ConnectedService
88
{
9-
[ConnectedServiceHandlerExport(Constants.ProviderId, AppliesTo = "CSharp")]
9+
[ConnectedServiceHandlerExport(Constants.ProviderId, AppliesTo = "VB | CSharp | Web")]
1010
internal class Handler : ConnectedServiceHandler
1111
{
1212
public override async Task<AddServiceInstanceResult> AddServiceInstanceAsync(ConnectedServiceHandlerContext context, CancellationToken cancellationToken)

0 commit comments

Comments
 (0)