Skip to content

Commit b2c287b

Browse files
committed
Update dependencies: add support for "OpenAPI.NET.OData v1.0.4"
1 parent 82c8cde commit b2c287b

File tree

7 files changed

+28
-6
lines changed

7 files changed

+28
-6
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.5.3 `(2020-07-23)`
11+
12+
- [x] Update dependencies: add support for [OpenAPI.NET.OData v1.0.4](https://www.nuget.org/packages/Microsoft.OpenApi.OData)
13+
1014
## v1.5.2 `(2020-06-26)`
1115

1216
- [x] Update dependencies: add support for [NSwag.Commands v13.6.2](https://github.com/RicoSuter/NSwag/pull/2925)

src/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
// You can specify all the values or you can default the Build and Revision Numbers
3131
// by using the '*' as shown below:
3232
// [assembly: AssemblyVersion("1.2.*")]
33-
[assembly: AssemblyVersion("1.5.2")]
34-
[assembly: AssemblyFileVersion("1.5.2.0")]
33+
[assembly: AssemblyVersion("1.5.3")]
34+
[assembly: AssemblyFileVersion("1.5.3.0")]
3535
[assembly: NeutralResourcesLanguage("en-US")]
3636

src/Unchase.OpenAPI.ConnectedService.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,8 +359,8 @@
359359
<Reference Include="Microsoft.OpenApi, Version=1.1.4.0, Culture=neutral, PublicKeyToken=3f5743946376f042, processorArchitecture=MSIL">
360360
<HintPath>packages\Microsoft.OpenApi.1.1.4\lib\net46\Microsoft.OpenApi.dll</HintPath>
361361
</Reference>
362-
<Reference Include="Microsoft.OpenApi.OData.Reader, Version=1.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
363-
<HintPath>packages\Microsoft.OpenApi.OData.1.0.2\lib\netstandard2.0\Microsoft.OpenApi.OData.Reader.dll</HintPath>
362+
<Reference Include="Microsoft.OpenApi.OData.Reader, Version=1.0.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
363+
<HintPath>packages\Microsoft.OpenApi.OData.1.0.4\lib\netstandard2.0\Microsoft.OpenApi.OData.Reader.dll</HintPath>
364364
</Reference>
365365
<Reference Include="Microsoft.VisualStudio.ComponentModelHost, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
366366
<HintPath>packages\Microsoft.VisualStudio.ComponentModelHost.15.8.525\lib\net46\Microsoft.VisualStudio.ComponentModelHost.dll</HintPath>

src/Views/ConfigOpenApiEndpoint.xaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,20 @@
332332
Margin="40,5,10,5"
333333
HorizontalAlignment="Stretch"
334334
Text="{Binding Path=UserSettings.OpenApiConvertSettings.PathPrefix, Mode=TwoWay}" />
335+
<CheckBox
336+
x:Name="OpenApiConvertSettingsShowLinks"
337+
Margin="20,5,10,5"
338+
HorizontalAlignment="Stretch"
339+
VerticalAlignment="Bottom"
340+
Content="Show the OpenAPI links in the responses."
341+
IsChecked="{Binding Path=UserSettings.OpenApiConvertSettings.ShowLinks, Mode=TwoWay}" />
342+
<CheckBox
343+
x:Name="OpenApiConvertSettingsShowSchemaExamples"
344+
Margin="20,5,10,5"
345+
HorizontalAlignment="Stretch"
346+
VerticalAlignment="Bottom"
347+
Content="Show schema examples."
348+
IsChecked="{Binding Path=UserSettings.OpenApiConvertSettings.ShowSchemaExamples, Mode=TwoWay}" />
335349
</StackPanel>
336350
</StackPanel>
337351

src/app.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@
274274
<assemblyIdentity name="System.Text.Encoding.CodePages" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
275275
<bindingRedirect oldVersion="0.0.0.0-4.1.1.0" newVersion="4.1.1.0" />
276276
</dependentAssembly>
277+
<dependentAssembly>
278+
<assemblyIdentity name="Microsoft.OpenApi" publicKeyToken="3f5743946376f042" culture="neutral" />
279+
<bindingRedirect oldVersion="0.0.0.0-1.2.2.0" newVersion="1.2.2.0" />
280+
</dependentAssembly>
277281
</assemblyBinding>
278282
</runtime>
279283
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /></startup></configuration>

src/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
<package id="Microsoft.NETCore.Platforms" version="3.0.0" targetFramework="net461" />
7575
<package id="Microsoft.OData.Edm" version="7.6.1" targetFramework="net461" />
7676
<package id="Microsoft.OpenApi" version="1.1.4" targetFramework="net461" />
77-
<package id="Microsoft.OpenApi.OData" version="1.0.2" targetFramework="net461" />
77+
<package id="Microsoft.OpenApi.OData" version="1.0.4" targetFramework="net461" />
7878
<package id="Microsoft.VisualStudio.ComponentModelHost" version="15.8.525" targetFramework="net461" />
7979
<package id="Microsoft.VisualStudio.ConnectedServices" version="15.3.47" targetFramework="net461" />
8080
<package id="Microsoft.VisualStudio.CoreUtility" version="15.6.27740" targetFramework="net472" />

src/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Id="Unchase.Openapi.ConnectedService.63199638-6211-4285-ba8f-75b1f0326c2a" Version="1.5.2" Language="en-US" Publisher="Unchase" />
4+
<Identity Id="Unchase.Openapi.ConnectedService.63199638-6211-4285-ba8f-75b1f0326c2a" Version="1.5.3" Language="en-US" Publisher="Unchase" />
55
<DisplayName>Unchase OpenAPI (Swagger) Connected Service</DisplayName>
66
<Description xml:space="preserve">Connected service for Visual Studio to generate OpenAPI (Swagger) web service reference.</Description>
77
<MoreInfo>https://github.com/unchase/Unchase.OpenAPI.Connectedservice</MoreInfo>

0 commit comments

Comments
 (0)