Update dependencies to match Visual Studio 15.3 (#1534)

This commit is contained in:
Mike Harder 2017-07-11 16:34:32 -07:00 committed by GitHub
parent b8f550fdf6
commit 01fe818dcd
4 changed files with 9 additions and 6 deletions

View File

@ -7,7 +7,7 @@
"Microsoft.VisualStudio.LanguageServices.Razor": { "Microsoft.VisualStudio.LanguageServices.Razor": {
"Exclusions": { "Exclusions": {
"WRONG_THIRDPARTY_DEPENDENCY_VERSION": { "WRONG_THIRDPARTY_DEPENDENCY_VERSION": {
"Microsoft.VisualStudio.LanguageServices.Razor; .NETFramework,Version=v4.6": "This package intentionally depends on version 8.0.3 of Newtonsoft.Json because of the dependency on Visual Studio." "Microsoft.VisualStudio.LanguageServices.Razor; .NETFramework,Version=v4.6": "This package intentionally depends on version 9.0.1 of Newtonsoft.Json because of the dependency on Visual Studio."
} }
} }
} }

View File

@ -15,7 +15,10 @@
<RoslynDevVersion>2.3.0-beta4-*</RoslynDevVersion> <RoslynDevVersion>2.3.0-beta4-*</RoslynDevVersion>
<StreamJsonRpcVersion>1.1.92</StreamJsonRpcVersion> <StreamJsonRpcVersion>1.1.92</StreamJsonRpcVersion>
<TestSdkVersion>15.3.0-*</TestSdkVersion> <TestSdkVersion>15.3.0-*</TestSdkVersion>
<VsShellVersion>15.0.26201</VsShellVersion>
<!-- Must keep in sync with tooling\Microsoft.VisualStudio.RazorExtension\project.json -->
<VsShellVersion>15.0.26606</VsShellVersion>
<XunitVersion>2.3.0-beta2-*</XunitVersion> <XunitVersion>2.3.0-beta2-*</XunitVersion>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -37,7 +37,7 @@
<PackageReference Include="Microsoft.VisualStudio.Shell.Interop.12.0" Version="12.0.30110" /> <PackageReference Include="Microsoft.VisualStudio.Shell.Interop.12.0" Version="12.0.30110" />
<!-- We need to use this version of Json.Net to maintain consistency with Visual Studio. --> <!-- We need to use this version of Json.Net to maintain consistency with Visual Studio. -->
<PackageReference Include="Newtonsoft.Json" Version="8.0.3" /> <PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
<ProjectReference Include="..\..\src\Microsoft.CodeAnalysis.Razor.Workspaces\Microsoft.CodeAnalysis.Razor.Workspaces.csproj" /> <ProjectReference Include="..\..\src\Microsoft.CodeAnalysis.Razor.Workspaces\Microsoft.CodeAnalysis.Razor.Workspaces.csproj" />
<ProjectReference Include="..\..\src\Microsoft.AspNetCore.Razor.Language\Microsoft.AspNetCore.Razor.Language.csproj" /> <ProjectReference Include="..\..\src\Microsoft.AspNetCore.Razor.Language\Microsoft.AspNetCore.Razor.Language.csproj" />

View File

@ -2,9 +2,9 @@
"frameworks": { "frameworks": {
"net46": { "net46": {
"dependencies": { "dependencies": {
"Microsoft.VisualStudio.ComponentModelHost": "15.0.26201", "Microsoft.VisualStudio.ComponentModelHost": "15.0.26606",
"Microsoft.VisualStudio.Shell.15.0": "15.0.26201", "Microsoft.VisualStudio.Shell.15.0": "15.0.26606",
"Microsoft.VSSDK.BuildTools": "15.0.26201" "Microsoft.VSSDK.BuildTools": "15.1.192"
} }
} }
}, },