Skip to content

Commit 4ec944c

Browse files
committed
Merge branch 'vs2017' into develop
2 parents a8d3c22 + 0dd5a76 commit 4ec944c

10 files changed

Lines changed: 184 additions & 55 deletions

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ Stack Overflow Quick Launch Provider allows you to search Stack Overflow within
55
Just press Ctrl + Q or click inside Quick Launch search box and start typing your question.
66
When you click on a selected search result you will be redirected to the Stack Overflow's site.
77

8-
[Download this extension](https://visualstudiogallery.msdn.microsoft.com/8d74682c-851e-4658-baaf-190ba11c1603) or
8+
[Download this extension](https://marketplace.visualstudio.com/items?itemName=AleksanderBerus.StackOverflowQuickLaunchSearchProvider) or
99
get the [Preview build](http://vsixgallery.com/extension/63E411F1-E531-44E8-8689-16B34600CF25/).
1010

1111
This extension works with:
1212
* Visual Studio 2012
1313
* Visual Studio 2013
1414
* Visual Studio 2015
15-
* Visual Studio 2017 (coming in version 0.7)
15+
* Visual Studio 2017
1616

1717
![](http://g.recordit.co/hoIWwpCt6A.gif)
1818

@@ -21,6 +21,10 @@ This extension works with:
2121
These are the changes to each version that has been released
2222
on the official Visual Studio extension gallery.
2323

24+
## 0.6.1
25+
26+
- Visual Studio 2017 support
27+
2428
## 0.6
2529

2630
- Open results in Internal Web Browser (thx to [@ketankshukla](https://github.com/aberus/StackOverflowQuickLaunch/pull/1))

StackOverflowQuickLaunch.sln

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26228.9
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StackOverflowQuickLaunch", "StackOverflowQuickLaunch\StackOverflowQuickLaunch.csproj", "{E7B0BB5B-037F-44B1-94C0-B058EA204594}"
57
EndProject
68
Global
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
1-
Stack Overflow Quick Launch Search Provider License
2-
3-
The Stack Exchange name and logos are trademarks of Stack Exchange Inc. The names
4-
and logos for sites and products operating on the Stack Exchange network are also
5-
trademarks of Stack Exchange Inc.
6-
7-
This product is not created and/or associated with Stack Exchange Inc.
8-
Software is under The MIT License (MIT):
9-
10-
The MIT License (MIT)
11-
12-
Copyright (c) 2014-2017 aberus.com
13-
14-
Permission is hereby granted, free of charge, to any person obtaining a copy
15-
of this software and associated documentation files (the "Software"), to deal
16-
in the Software without restriction, including without limitation the rights
17-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18-
copies of the Software, and to permit persons to whom the Software is
19-
furnished to do so, subject to the following conditions:
20-
21-
The above copyright notice and this permission notice shall be included in all
22-
copies or substantial portions of the Software.
23-
24-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1+
Stack Overflow Quick Launch Search Provider License
2+
3+
The Stack Exchange name and logos are trademarks of Stack Exchange Inc. The names
4+
and logos for sites and products operating on the Stack Exchange network are also
5+
trademarks of Stack Exchange Inc.
6+
7+
This product is not created and/or associated with Stack Exchange Inc.
8+
Software is under The MIT License (MIT):
9+
10+
The MIT License (MIT)
11+
12+
Copyright (c) 2014-2017 aberus.com
13+
14+
Permission is hereby granted, free of charge, to any person obtaining a copy
15+
of this software and associated documentation files (the "Software"), to deal
16+
in the Software without restriction, including without limitation the rights
17+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18+
copies of the Software, and to permit persons to whom the Software is
19+
furnished to do so, subject to the following conditions:
20+
21+
The above copyright notice and this permission notice shall be included in all
22+
copies or substantial portions of the Software.
23+
24+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3030
SOFTWARE.

StackOverflowQuickLaunch/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[assembly: AssemblyConfiguration("")]
1313
[assembly: AssemblyCompany("aberus.com")]
1414
[assembly: AssemblyProduct("Stack Overflow Quick Launch Search Provider")]
15-
[assembly: AssemblyCopyright("Copyright © aberus.com 2014-2016")]
15+
[assembly: AssemblyCopyright("Copyright © aberus.com 2014-2017")]
1616
[assembly: AssemblyTrademark("")]
1717
[assembly: AssemblyCulture("")]
1818
[assembly: ComVisible(false)]
@@ -28,8 +28,8 @@
2828
//
2929
// You can specify all the values or you can default the Revision and Build Numbers
3030
// by using the '*' as shown below:
31-
[assembly: AssemblyVersion("0.6.0.0")]
32-
[assembly: AssemblyFileVersion("0.6.0.0")]
31+
[assembly: AssemblyVersion("0.6.1.0")]
32+
[assembly: AssemblyFileVersion("0.6.1.0")]
3333

3434

3535

StackOverflowQuickLaunch/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

StackOverflowQuickLaunch/StackOverflowQuickLaunch.csproj

Lines changed: 88 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
3+
<Import Project="..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props" Condition="Exists('..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props')" />
34
<PropertyGroup>
4-
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
5+
<MinimumVisualStudioVersion>15.0</MinimumVisualStudioVersion>
56
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
67
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
78
<FileUpgradeFlags>
89
</FileUpgradeFlags>
910
<UpgradeBackupLocation>
1011
</UpgradeBackupLocation>
1112
<OldToolsVersion>4.0</OldToolsVersion>
13+
<IsWebBootstrapper>false</IsWebBootstrapper>
1214
<PublishUrl>publish\</PublishUrl>
1315
<Install>true</Install>
1416
<InstallFrom>Disk</InstallFrom>
@@ -21,9 +23,10 @@
2123
<MapFileExtensions>true</MapFileExtensions>
2224
<ApplicationRevision>0</ApplicationRevision>
2325
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
24-
<IsWebBootstrapper>false</IsWebBootstrapper>
2526
<UseApplicationTrust>false</UseApplicationTrust>
2627
<BootstrapperEnabled>true</BootstrapperEnabled>
28+
<NuGetPackageImportStamp>
29+
</NuGetPackageImportStamp>
2730
</PropertyGroup>
2831
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
2932
<PropertyGroup>
@@ -76,17 +79,76 @@
7679
<Reference Include="envdte, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
7780
<EmbedInteropTypes>True</EmbedInteropTypes>
7881
</Reference>
79-
<Reference Include="Microsoft.VisualStudio.OLE.Interop" />
80-
<Reference Include="Microsoft.VisualStudio.Shell.Interop" />
81-
<Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0" />
82-
<Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0" />
83-
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0" />
84-
<Reference Include="Microsoft.VisualStudio.Shell.Interop.11.0">
85-
<EmbedInteropTypes>true</EmbedInteropTypes>
86-
</Reference>
87-
<Reference Include="Microsoft.VisualStudio.Shell.11.0" />
88-
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.10.0" />
89-
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.11.0" />
82+
<Reference Include="Microsoft.VisualStudio.Imaging, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
83+
<HintPath>..\packages\Microsoft.VisualStudio.Imaging.14.3.25407\lib\net45\Microsoft.VisualStudio.Imaging.dll</HintPath>
84+
<Private>True</Private>
85+
</Reference>
86+
<Reference Include="Microsoft.VisualStudio.OLE.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
87+
<HintPath>..\packages\Microsoft.VisualStudio.OLE.Interop.7.10.6070\lib\Microsoft.VisualStudio.OLE.Interop.dll</HintPath>
88+
<Private>True</Private>
89+
</Reference>
90+
<Reference Include="Microsoft.VisualStudio.Shell.14.0, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
91+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.14.0.14.3.25407\lib\Microsoft.VisualStudio.Shell.14.0.dll</HintPath>
92+
<Private>True</Private>
93+
</Reference>
94+
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
95+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.10.0.10.0.30319\lib\net40\Microsoft.VisualStudio.Shell.Immutable.10.0.dll</HintPath>
96+
<Private>True</Private>
97+
</Reference>
98+
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
99+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.11.0.11.0.50727\lib\net45\Microsoft.VisualStudio.Shell.Immutable.11.0.dll</HintPath>
100+
<Private>True</Private>
101+
</Reference>
102+
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.12.0, Version=12.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
103+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.12.0.12.0.21003\lib\net45\Microsoft.VisualStudio.Shell.Immutable.12.0.dll</HintPath>
104+
<Private>True</Private>
105+
</Reference>
106+
<Reference Include="Microsoft.VisualStudio.Shell.Immutable.14.0, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
107+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Immutable.14.0.14.3.25407\lib\net45\Microsoft.VisualStudio.Shell.Immutable.14.0.dll</HintPath>
108+
<Private>True</Private>
109+
</Reference>
110+
<Reference Include="Microsoft.VisualStudio.Shell.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
111+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.7.10.6071\lib\Microsoft.VisualStudio.Shell.Interop.dll</HintPath>
112+
<Private>True</Private>
113+
</Reference>
114+
<Reference Include="Microsoft.VisualStudio.Shell.Interop.10.0, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
115+
<EmbedInteropTypes>True</EmbedInteropTypes>
116+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.10.0.10.0.30319\lib\Microsoft.VisualStudio.Shell.Interop.10.0.dll</HintPath>
117+
<Private>True</Private>
118+
</Reference>
119+
<Reference Include="Microsoft.VisualStudio.Shell.Interop.11.0, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
120+
<EmbedInteropTypes>True</EmbedInteropTypes>
121+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.11.0.11.0.61030\lib\Microsoft.VisualStudio.Shell.Interop.11.0.dll</HintPath>
122+
<Private>True</Private>
123+
</Reference>
124+
<Reference Include="Microsoft.VisualStudio.Shell.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
125+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.Shell.Interop.8.0.dll</HintPath>
126+
<Private>True</Private>
127+
</Reference>
128+
<Reference Include="Microsoft.VisualStudio.Shell.Interop.9.0, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
129+
<HintPath>..\packages\Microsoft.VisualStudio.Shell.Interop.9.0.9.0.30729\lib\Microsoft.VisualStudio.Shell.Interop.9.0.dll</HintPath>
130+
<Private>True</Private>
131+
</Reference>
132+
<Reference Include="Microsoft.VisualStudio.TextManager.Interop, Version=7.1.40304.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
133+
<HintPath>..\packages\Microsoft.VisualStudio.TextManager.Interop.7.10.6070\lib\Microsoft.VisualStudio.TextManager.Interop.dll</HintPath>
134+
<Private>True</Private>
135+
</Reference>
136+
<Reference Include="Microsoft.VisualStudio.TextManager.Interop.8.0, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
137+
<HintPath>..\packages\Microsoft.VisualStudio.TextManager.Interop.8.0.8.0.50727\lib\Microsoft.VisualStudio.TextManager.Interop.8.0.dll</HintPath>
138+
<Private>True</Private>
139+
</Reference>
140+
<Reference Include="Microsoft.VisualStudio.Threading, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
141+
<HintPath>..\packages\Microsoft.VisualStudio.Threading.14.1.131\lib\net45\Microsoft.VisualStudio.Threading.dll</HintPath>
142+
<Private>True</Private>
143+
</Reference>
144+
<Reference Include="Microsoft.VisualStudio.Utilities, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
145+
<HintPath>..\packages\Microsoft.VisualStudio.Utilities.14.3.25407\lib\net45\Microsoft.VisualStudio.Utilities.dll</HintPath>
146+
<Private>True</Private>
147+
</Reference>
148+
<Reference Include="Microsoft.VisualStudio.Validation, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
149+
<HintPath>..\packages\Microsoft.VisualStudio.Validation.15.0.82\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
150+
<Private>True</Private>
151+
</Reference>
90152
<Reference Include="PresentationCore" />
91153
<Reference Include="System" />
92154
<Reference Include="System.Core" />
@@ -142,14 +204,17 @@
142204
<None Include="..\README.md">
143205
<Link>README.md</Link>
144206
</None>
207+
<None Include="app.config" />
208+
<None Include="packages.config" />
145209
<None Include="source.extension.vsixmanifest">
146210
<SubType>Designer</SubType>
147211
</None>
148212
</ItemGroup>
149213
<ItemGroup>
150-
<None Include="License">
214+
<Content Include="License.txt">
151215
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
152-
</None>
216+
<IncludeInVSIX>true</IncludeInVSIX>
217+
</Content>
153218
<Content Include="Resources\preview.png">
154219
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
155220
<IncludeInVSIX>true</IncludeInVSIX>
@@ -185,4 +250,12 @@
185250
</PropertyGroup>
186251
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
187252
<Import Project="$(VSToolsPath)\VSSDK\Microsoft.VsSDK.targets" Condition="'$(VSToolsPath)' != ''" />
253+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
254+
<PropertyGroup>
255+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
256+
</PropertyGroup>
257+
<Error Condition="!Exists('..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props'))" />
258+
<Error Condition="!Exists('..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.targets'))" />
259+
</Target>
260+
<Import Project="..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.targets" Condition="Exists('..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.targets')" />
188261
</Project>

StackOverflowQuickLaunch/StackOverflowQuickLaunchPackage.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,16 @@ namespace Aberus.StackOverflowQuickLaunch
2020
[PackageRegistration(UseManagedResourcesOnly = true)]
2121
// This attribute is used to register the information needed to show this package
2222
// in the Help/About dialog of Visual Studio.
23-
[InstalledProductRegistration("#110", "#112", "0.6.0", IconResourceID = 400)]
23+
[InstalledProductRegistration("#110", "#112", "0.6.1", IconResourceID = 400)]
2424
// Declare the package guid
2525
[Guid(GuidList.guidStackOverflowQuickLaunchQuickLaunchPkgString)]
2626
// Declare a global search provider supported by this package
2727
// This will write the necessary registry keys for the provider's declaration and will be used to create the provider
2828
// when the package extensibility point for IVsSearchProvider is requested
2929
[ProvideSearchProvider(typeof(StackOverflowSearchProvider), "Stack Overflow Search Provider")]
30+
[ProvideOptionPage(typeof(StackOverflowSearchOptionPage), "StackOverflowSearchProvider", "SearchSettings", 101, 102, true, new[] { "Stack Overflow", "StackOverflow", "Search" })]
3031
// Derive the package class from ExtensionPointPackage instead of Package
3132
// This will add support for automatic creation of the search provider as an extensibility point
32-
[ProvideOptionPage(typeof(StackOverflowSearchOptionPage), "StackOverflowSearchProvider", "SearchSettings", 101, 102, true, new[] { "Stack Overflow", "StackOverflow", "Search" })]
3333
public sealed class StackOverflowQuickLaunchPackage : ExtensionPointPackage
3434
{
3535
/// <summary>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<runtime>
4+
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
5+
<dependentAssembly>
6+
<assemblyIdentity name="Microsoft.VisualStudio.Utilities" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
7+
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
8+
</dependentAssembly>
9+
<dependentAssembly>
10+
<assemblyIdentity name="Microsoft.VisualStudio.Imaging" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
11+
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
12+
</dependentAssembly>
13+
<dependentAssembly>
14+
<assemblyIdentity name="Microsoft.VisualStudio.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
15+
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
16+
</dependentAssembly>
17+
<dependentAssembly>
18+
<assemblyIdentity name="Microsoft.VisualStudio.Validation" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
19+
<bindingRedirect oldVersion="0.0.0.0-15.0.0.0" newVersion="15.0.0.0" />
20+
</dependentAssembly>
21+
</assemblyBinding>
22+
</runtime>
23+
</configuration>

0 commit comments

Comments
 (0)