Skip to content

Commit 8512684

Browse files
committed
Added fix: Added the ability to automatically install required nuget-packages for .net core
1 parent b4ac319 commit 8512684

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@
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.14 `(2019-04-19)`
11+
12+
- [x] Added fix: Added the ability to automatically install required nuget-packages for .net core
13+
1014
## v1.1.13 `(2019-04-16)`
1115

1216
- [x] Added bug fix: Service update no longer blocks input fields for `ServiceName` and `Endpoint` (if you added several endpoints and want to update one of them).

src/CodeGeneration/NSwagCodeGenDescriptor.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ internal async Task AddCSharpClientNugetPackages()
4343
switch (projectTargetFrameworkDescriptions[0])
4444
{
4545
case ".NETStandard":
46+
case ".NETCoreApp":
4647
nugetPackages = Constants.NetStandartUnsupportedVersions.Contains(projectTargetFrameworkDescriptions[1])
4748
? new string[0]
4849
: Constants.NetStandartNuGetPackages;

0 commit comments

Comments
 (0)