Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 7718388

Browse files
committed
Consolidate Octokit.GraphQL package version.
And add it to GitHub.VisualStudio so it's included in the vsix.
1 parent 307b45a commit 7718388

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="14.0">
33
<Import Project="..\..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props" Condition="Exists('..\..\packages\LibGit2Sharp.NativeBinaries.1.0.164\build\LibGit2Sharp.NativeBinaries.props')" />
4-
54
<!-- When StartProgram is set to Visual Studio 2015 in .user file, install extension in the same version -->
65
<Import Project="GitHub.VisualStudio.csproj.user" Condition=" Exists('GitHub.VisualStudio.csproj.user') " />
76
<PropertyGroup Condition=" $(StartProgram.Contains('Microsoft Visual Studio 14.0')) ">
87
<VisualStudioVersion>14.0</VisualStudioVersion>
98
</PropertyGroup>
10-
119
<Import Project="..\..\packages\Microsoft.VisualStudio.Sdk.BuildTasks.14.0.14.0.215\build\Microsoft.VisualStudio.Sdk.BuildTasks.14.0.props" Condition="'$(VisualStudioVersion)' == '14.0' And Exists('..\..\packages\Microsoft.VisualStudio.Sdk.BuildTasks.14.0.14.0.215\build\Microsoft.VisualStudio.Sdk.BuildTasks.14.0.props')" />
1210
<Import Project="..\..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props" Condition="'$(VisualStudioVersion)' == '15.0' And Exists('..\..\packages\Microsoft.VSSDK.BuildTools.15.0.26201\build\Microsoft.VSSDK.BuildTools.props')" />
1311
<PropertyGroup>
@@ -255,11 +253,9 @@
255253
</Reference>
256254
<Reference Include="Octokit.GraphQL, Version=0.0.5.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
257255
<HintPath>..\..\packages\Octokit.GraphQL.0.0.5-alpha\lib\netstandard1.1\Octokit.GraphQL.dll</HintPath>
258-
<Private>True</Private>
259256
</Reference>
260257
<Reference Include="Octokit.GraphQL.Core, Version=0.0.5.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
261258
<HintPath>..\..\packages\Octokit.GraphQL.0.0.5-alpha\lib\netstandard1.1\Octokit.GraphQL.Core.dll</HintPath>
262-
<Private>True</Private>
263259
</Reference>
264260
<Reference Include="rothko, Version=0.0.3.0, Culture=neutral, PublicKeyToken=9f664c41f503810a, processorArchitecture=MSIL">
265261
<HintPath>..\..\packages\Rothko.0.0.3-ghfvs\lib\net45\rothko.dll</HintPath>

src/GitHub.VisualStudio/packages.config

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
<package id="Microsoft.VSSDK.BuildTools" version="15.0.26201" targetFramework="net461" developmentDependency="true" />
3838
<package id="Microsoft.VSSDK.Vsixsigntool" version="14.1.24720" targetFramework="net45" />
3939
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
40+
<package id="Octokit.GraphQL" version="0.0.5-alpha" targetFramework="net461" />
4041
<package id="Rothko" version="0.0.3-ghfvs" targetFramework="net461" />
4142
<package id="Rx-Core" version="2.2.5-custom" targetFramework="net45" />
4243
<package id="Rx-Interfaces" version="2.2.5-custom" targetFramework="net45" />

test/GitHub.App.UnitTests/GitHub.App.UnitTests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,11 +93,11 @@
9393
<HintPath>..\..\packages\NSubstitute.2.0.3\lib\net45\NSubstitute.dll</HintPath>
9494
<Private>True</Private>
9595
</Reference>
96-
<Reference Include="Octokit.GraphQL, Version=0.0.4.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
97-
<HintPath>..\..\packages\Octokit.GraphQL.0.0.4-alpha\lib\netstandard1.1\Octokit.GraphQL.dll</HintPath>
96+
<Reference Include="Octokit.GraphQL, Version=0.0.5.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
97+
<HintPath>..\..\packages\Octokit.GraphQL.0.0.5-alpha\lib\netstandard1.1\Octokit.GraphQL.dll</HintPath>
9898
</Reference>
99-
<Reference Include="Octokit.GraphQL.Core, Version=0.0.4.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
100-
<HintPath>..\..\packages\Octokit.GraphQL.0.0.4-alpha\lib\netstandard1.1\Octokit.GraphQL.Core.dll</HintPath>
99+
<Reference Include="Octokit.GraphQL.Core, Version=0.0.5.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
100+
<HintPath>..\..\packages\Octokit.GraphQL.0.0.5-alpha\lib\netstandard1.1\Octokit.GraphQL.Core.dll</HintPath>
101101
</Reference>
102102
<Reference Include="PresentationCore" />
103103
<Reference Include="PresentationFramework" />

test/GitHub.App.UnitTests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net461" />
3131
<package id="NSubstitute" version="2.0.3" targetFramework="net461" />
3232
<package id="NUnit" version="3.9.0" targetFramework="net461" />
33-
<package id="Octokit.GraphQL" version="0.0.4-alpha" targetFramework="net461" />
33+
<package id="Octokit.GraphQL" version="0.0.5-alpha" targetFramework="net461" />
3434
<package id="Rothko" version="0.0.3-ghfvs" targetFramework="net461" />
3535
<package id="Rx-Core" version="2.2.5-custom" targetFramework="net45" />
3636
<package id="Rx-Interfaces" version="2.2.5-custom" targetFramework="net45" />

0 commit comments

Comments
 (0)