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

Commit 1a3bc95

Browse files
committed
Fix Newtonsoft.Json references in projects.
The packages.config file referred to 9.0.x but the project files referred to 10.0.x.
1 parent c959459 commit 1a3bc95

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

src/GitHub.InlineReviews/GitHub.InlineReviews.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -370,9 +370,8 @@
370370
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
371371
<Private>True</Private>
372372
</Reference>
373-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
374-
<HintPath>..\..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
375-
<Private>True</Private>
373+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
374+
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
376375
</Reference>
377376
<Reference Include="Octokit.GraphQL, Version=0.1.1.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
378377
<HintPath>..\..\packages\Octokit.GraphQL.0.1.1-beta\lib\netstandard1.1\Octokit.GraphQL.dll</HintPath>

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<VsixType>v3</VsixType>
1313
<IsProductComponent>false</IsProductComponent>
1414
<ExtensionInstallationFolder>GitHub\GitHub</ExtensionInstallationFolder>
15-
<XlfLanguages>zh-CN</XlfLanguages>
15+
<XlfLanguages>zh-CN</XlfLanguages>
1616
<NuGetPackageImportStamp>
1717
</NuGetPackageImportStamp>
1818
</PropertyGroup>
@@ -243,9 +243,8 @@
243243
<HintPath>..\..\packages\Microsoft.VisualStudio.Validation.14.1.111\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
244244
<Private>True</Private>
245245
</Reference>
246-
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
247-
<HintPath>..\..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
248-
<Private>True</Private>
246+
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
247+
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
249248
</Reference>
250249
<Reference Include="Octokit.GraphQL, Version=0.1.1.0, Culture=neutral, PublicKeyToken=0be8860aee462442, processorArchitecture=MSIL">
251250
<HintPath>..\..\packages\Octokit.GraphQL.0.1.1-beta\lib\netstandard1.1\Octokit.GraphQL.dll</HintPath>

0 commit comments

Comments
 (0)