Skip to content

Commit

Permalink
Merge pull request #29005 from dotnet/merges/dev15.8.x-to-dev15.8.x-v…
Browse files Browse the repository at this point in the history
…s-deps

Merge dev15.8.x to dev15.8.x-vs-deps
  • Loading branch information
dotnet-automerge-bot authored Aug 2, 2018
2 parents 580451c + 0baaaf5 commit 6bfb2ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/VisualStudio/Core/Def/Guids.cs
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ internal static class Guids
public const string VisualBasicOptionPageNamingStyleIdString = "BCA454E0-95E4-4877-B4CB-B1D642B7BAFA";
public const string VisualBasicOptionPageIntelliSenseIdString = "04460A3B-1B5F-4402-BC6D-89A4F6F0A8D7";

public const string FSharpPackageIdString = "871D2A70-12A2-4e42-9440-425DD92A4116";

public static readonly Guid FSharpPackageId = new Guid(FSharpPackageIdString);

// from vscommon\inc\textmgruuids.h
public const string TextManagerPackageString = "F5E7E720-1401-11D1-883B-0000F87579D2";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ private void EnsurePackageLoaded(string language)
case LanguageNames.VisualBasic:
shell.LoadPackage(Guids.VisualBasicPackageId, out unused);
break;
case LanguageNames.FSharp:
shell.LoadPackage(Guids.FSharpPackageId, out unused);
break;
default:
// by default, load roslyn package for things like typescript and etc
shell.LoadPackage(Guids.RoslynPackageId, out unused);
Expand Down

0 comments on commit 6bfb2ab

Please sign in to comment.