-
Notifications
You must be signed in to change notification settings - Fork 825
Quick info glyph #2028
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
vasily-kirichenko
wants to merge
14
commits into
dotnet:master
from
vasily-kirichenko:quick-info-glyph
Closed
Quick info glyph #2028
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
a77a095
include BlockStructureService.fs into FSharp.Editor project which is …
270bab4
try to add glyph to quick info
4c5c5e8
glyph appears
0ccf7d7
most glyphs are done
vasily-kirichenko 612bb8e
fix tests compilation
vasily-kirichenko 107b531
Merge remote-tracking branch 'origin/master' into quick-info-glyph
vasily-kirichenko 1e1f0ec
fix project file
vasily-kirichenko 2ef7050
Merge remote-tracking branch 'origin/master' into quick-info-glyph
vasily-kirichenko cf09f94
add Microsoft.VisualStudio.Imaging reference to all VS related projects
vasily-kirichenko a93a705
Merge branch 'master' into quick-info-glyph
vasily-kirichenko ca57b93
Merge remote-tracking branch 'origin/master' into quick-info-glyph
vasily-kirichenko ee46642
Merge remote-tracking branch 'origin/master' into quick-info-glyph
f4e94ef
do not use Roslyn internal type in public API
fd16ef6
Merge remote-tracking branch 'origin/master' into quick-info-glyph
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. --> | ||
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
|
@@ -18,7 +18,8 @@ | |
<TargetType>LIBRARY</TargetType> | ||
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion> | ||
<NoWarn>$(NoWarn);75</NoWarn> | ||
<Tailcalls Condition="'$(CodeCoverage)' != ''">false</Tailcalls> <OtherFlags>$(OtherFlags) --warnon:1182 --subsystemversion:6.00</OtherFlags> | ||
<Tailcalls Condition="'$(CodeCoverage)' != ''">false</Tailcalls> | ||
<OtherFlags>$(OtherFlags) --warnon:1182 --subsystemversion:6.00</OtherFlags> | ||
<ImportVSSDKTargets>true</ImportVSSDKTargets> | ||
<CreateVsixContainer>false</CreateVsixContainer> | ||
<DeployExtension>false</DeployExtension> | ||
|
@@ -85,6 +86,9 @@ | |
<ItemGroup> | ||
<Reference Include="mscorlib" /> | ||
<Reference Include="PresentationFramework" /> | ||
<Reference Include="System.Drawing" /> | ||
<Reference Include="System.Xaml" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="WindowsBase" /> | ||
<Reference Include="System" /> | ||
<Reference Include="PresentationCore" /> | ||
|
@@ -115,6 +119,9 @@ | |
<Reference Include="Microsoft.VisualStudio.CoreUtility, Version=$(RoslynVSBinariesVersion).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<HintPath>$(FSharpSourcesRoot)\..\packages\Microsoft.VisualStudio.CoreUtility.$(RoslynVSPackagesVersion)\lib\net45\Microsoft.VisualStudio.CoreUtility.dll</HintPath> | ||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.Imaging, Version=$(RoslynVSBinariesVersion).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<HintPath>$(FSharpSourcesRoot)\..\packages\Microsoft.VisualStudio.Imaging.$(RoslynVSPackagesVersion)\lib\net45\Microsoft.VisualStudio.Imaging.dll</HintPath> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The package path might not be right. |
||
</Reference> | ||
<Reference Include="Microsoft.VisualStudio.Utilities, Version=$(RoslynVSBinariesVersion).0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> | ||
<HintPath>$(FSharpSourcesRoot)\..\packages\Microsoft.VisualStudio.Utilities.$(RoslynVSPackagesVersion)\lib\net45\Microsoft.VisualStudio.Utilities.dll</HintPath> | ||
</Reference> | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should you use:
https://www.nuget.org/packages/Microsoft.VisualStudio.Imaging/15.0.25901-RC
and
https://www.nuget.org/packages/Microsoft.VisualStudio.ImageCatalog/15.0.25824-RC
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or perhaps we should get 2.0.0-rc2 versions published