Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormonojenkins <jo.shields+jenkins@xamarin.com>2019-05-23 19:37:19 +0300
committerKirill Osenkov <KirillOsenkov@users.noreply.github.com>2019-05-23 19:37:19 +0300
commitb73693d3a31e4c0f3b8158d734398bbfb346e9a1 (patch)
tree39705b44c3e45f8cffdfee00943959017c47f5ac /main/msbuild
parent6ee126f643a48c899c1263f28f78b284dc8c6100 (diff)
Update the VS Editor NuGets to 16.1 when building on Windows. (#7640)
This matches what Roslyn 3.1 is using. We need this for ToggleLineCommentCommandArgs that was added in 16.1. Note that NuGetVersionVSEditor is not used by the build on Mac. Also having an IncludeCopyLocal item that doesn't exist is fine, as evidenced by the removal of Microsoft.Microsoft.CodeAnalysis.Workspace.dll item. All other edited files are Windows specific.
Diffstat (limited to 'main/msbuild')
-rw-r--r--main/msbuild/ReferencesVSEditor.Windows.props5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/msbuild/ReferencesVSEditor.Windows.props b/main/msbuild/ReferencesVSEditor.Windows.props
index 4390e5af52..7cb5ab0f38 100644
--- a/main/msbuild/ReferencesVSEditor.Windows.props
+++ b/main/msbuild/ReferencesVSEditor.Windows.props
@@ -14,6 +14,8 @@
<PackageReference Include="Microsoft.VisualStudio.Platform.VSEditor" Version="$(NuGetVersionVSEditor)" PrivateAssets="$(ReferencesVSEditorPrivateAssets)" ExcludeAssets="$(ReferencesVSEditorExcludeAssets)" />
<PackageReference Include="Microsoft.CodeAnalysis.EditorFeatures.Wpf" Version="$(NuGetVersionRoslyn)" PrivateAssets="$(ReferencesVSEditorPrivateAssets)" ExcludeAssets="$(ReferencesVSEditorExcludeAssets)" />
<PackageReference Include="Microsoft.VisualStudio.Text.UI.Wpf" Version="$(NuGetVersionVSEditor)" PrivateAssets="$(ReferencesVSEditorPrivateAssets)" ExcludeAssets="$(ReferencesVSEditorExcludeAssets)" />
+ <PackageReference Include="Microsoft.VisualStudio.InteractiveWindow" Version="2.0.0-rc3-61304-01" PrivateAssets="$(ReferencesVSEditorPrivateAssets)" ExcludeAssets="$(ReferencesVSEditorExcludeAssets)" />
+ <PackageReference Include="Microsoft.CodeAnalysis.InteractiveHost" Version="3.1.0-beta3-19222-02" ExcludeAssets="all" />
</ItemGroup>
<!-- The consolidated package is authored in a way to avoid adding it to the C# compiler (ref\net46 is empty).
@@ -23,6 +25,9 @@
<Reference Include="$(NuGetPackageRoot)Microsoft.VisualStudio.Platform.VSEditor\$(NuGetVersionVSEditor)\lib\net472\Microsoft.VisualStudio.Platform.VSEditor.dll">
<Private>false</Private>
</Reference>
+ <Reference Include="$(NuGetPackageRoot)Microsoft.CodeAnalysis.InteractiveHost\3.1.0-beta3-19222-02\Microsoft.CodeAnalysis.InteractiveHost.dll">
+ <Private>$(ReferencesVSEditorCopyToOutput)</Private>
+ </Reference>
</ItemGroup>
</Project> \ No newline at end of file