Skip to content

Commit e5a7490

Browse files
committed
chore: Update README, fix Solution items folder, fix manifest for vs 2017-2019 extension
1 parent 091becc commit e5a7490

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
![Logo](img/Unchase-OpenAPI-Swagger-Connected-Service-Logo.png)
22

3-
[Unchase OpenAPI (Swagger) Connected Service](https://marketplace.visualstudio.com/items?itemName=Unchase.unchaseOpenAPIConnectedService) is a Visual Studio 2017/2019 extension to generate `C#` (`TypeScript`) `HttpClient` (or `C#` `Controllers`) code for `OpenAPI` (formerly [`Swagger API`](https://swagger.io/docs/specification/about/)) web service with [NSwag](https://github.com/RSuter/NSwag).
3+
[Unchase OpenAPI (Swagger) Connected Service](https://marketplace.visualstudio.com/items?itemName=Unchase.unchaseOpenAPIConnectedService) is a Visual Studio 2017/2019/2022 extension to generate `C#` (`TypeScript`) `HttpClient` (or `C#` `Controllers`) code for `OpenAPI` (formerly [`Swagger API`](https://swagger.io/docs/specification/about/)) web service with [NSwag](https://github.com/RSuter/NSwag).
44

55
> Starting from Visual Studio Community 2019 v16.1.3 extensions based on `Microsoft Connected Services` now work fine.
66

src/Unchase.OpenAPI.ConnectedService.sln

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,32 @@ MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Unchase.OpenAPI.ConnectedService", "Unchase.OpenAPI.ConnectedService\Unchase.OpenAPI.ConnectedService.csproj", "{CFB451DE-8645-4125-8254-3C3BEB6C6CC7}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{2E792B87-132B-4E5F-B542-86E96D18FAD8}"
9+
ProjectSection(SolutionItems) = preProject
10+
..\.gitignore = ..\.gitignore
11+
..\appveyor.yml = ..\appveyor.yml
12+
..\CHANGELOG.md = ..\CHANGELOG.md
13+
..\CNAME = ..\CNAME
14+
..\LICENSE.md = ..\LICENSE.md
15+
..\README.md = ..\README.md
16+
EndProjectSection
917
EndProject
1018
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "img", "img", "{FEC756D6-3315-4914-B04F-B2CEA3F6A7F6}"
19+
ProjectSection(SolutionItems) = preProject
20+
..\img\buymeacoffe.png = ..\img\buymeacoffe.png
21+
..\img\CompareOpenAPISpecificationsCommandResult.png = ..\img\CompareOpenAPISpecificationsCommandResult.png
22+
..\img\CompareOpenAPISpecificationsOneFileCommandMenu.png = ..\img\CompareOpenAPISpecificationsOneFileCommandMenu.png
23+
..\img\CompareOpenAPISpecificationsTwoFilesCommandMenu.png = ..\img\CompareOpenAPISpecificationsTwoFilesCommandMenu.png
24+
..\img\Csharp-Client-Generation-Exclude-Type-Names.png = ..\img\Csharp-Client-Generation-Exclude-Type-Names.png
25+
..\img\Csharp-Client-Generation-OData.png = ..\img\Csharp-Client-Generation-OData.png
26+
..\img\OpenWithNSwagCommandMenu.png = ..\img\OpenWithNSwagCommandMenu.png
27+
..\img\Unchase-OpenAPI-Connected-Service-ReportBug.png = ..\img\Unchase-OpenAPI-Connected-Service-ReportBug.png
28+
..\img\Unchase-OpenAPI-Swagger-Connected-Service-Customize.gif = ..\img\Unchase-OpenAPI-Swagger-Connected-Service-Customize.gif
29+
..\img\Unchase-OpenAPI-Swagger-Connected-Service-Logo.png = ..\img\Unchase-OpenAPI-Swagger-Connected-Service-Logo.png
30+
..\img\Unchase-OpenAPI-Swagger-Connected-Service-Settings-Meaning.png = ..\img\Unchase-OpenAPI-Swagger-Connected-Service-Settings-Meaning.png
31+
..\img\Unchase-OpenAPI-Swagger-Connected-Service.gif = ..\img\Unchase-OpenAPI-Swagger-Connected-Service.gif
32+
..\img\UnchaseOpenAPIConnectedServiceCommandsOptions1.png = ..\img\UnchaseOpenAPIConnectedServiceCommandsOptions1.png
33+
..\img\UnchaseOpenAPIConnectedServiceCommandsOptions2.png = ..\img\UnchaseOpenAPIConnectedServiceCommandsOptions2.png
34+
EndProjectSection
1135
EndProject
1236
Project("{D954291E-2A0B-460D-934E-DC6B0785DB48}") = "Unchase.OpenAPI.Connectedservice.Shared", "Unchase.OpenAPI.Connectedservice.Shared\Unchase.OpenAPI.Connectedservice.Shared.shproj", "{F9C2B492-3068-4F7D-9AA4-D4CD086C4468}"
1337
EndProject

src/Unchase.OpenAPI.Connectedservice/source.extension.vsixmanifest

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
<Tags>OpenAPI, Swagger, REST API, OAS, OAI, Web API, .NET Core, HttpClient, Swashbuckle, NSwag, NSwagStudio, Code Generation, Scaffolding, Connected Service</Tags>
1414
</Metadata>
1515
<Installation>
16-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,)" />
17-
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Pro" />
18-
<InstallationTarget Version="[15.0,)" Id="Microsoft.VisualStudio.Enterprise" />
16+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[15.0,17.0)" />
17+
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
18+
<InstallationTarget Version="[15.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
1919
</Installation>
2020
<Dependencies>
2121
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />

0 commit comments

Comments
 (0)