Skip to content
This repository has been archived by the owner on Oct 4, 2021. It is now read-only.

Commit

Permalink
Merge pull request #6109 from knocte/fsharpProjGuidUpperCaseFix
Browse files Browse the repository at this point in the history
FsharpBinding: uppercase F# project GUID to be consistent with VS4win
  • Loading branch information
nosami committed Sep 27, 2018
2 parents 93185a0 + 28bd035 commit e50935b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</Extension>

<Extension path="/MonoDevelop/ProjectModel/MSBuildItemTypes">
<DotNetProjectType language="F#" extension="fsproj" guid="{f2a71f9b-5d33-465a-a702-920d77279786}" type="MonoDevelop.FSharp.FSharpProject"/>
<DotNetProjectType language="F#" extension="fsproj" guid="{F2A71F9B-5D33-465A-A702-920D77279786}" type="MonoDevelop.FSharp.FSharpProject"/>
</Extension>

<Extension path = "/MonoDevelop/ProjectModel/ProjectModelExtensions">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ static string GetProjectTypeGuid (SolutionTemplate template)
{
string language = GetLanguage (template.Id);
if (language == "F#")
return "{f2a71f9b-5d33-465a-a702-920d77279786}";
return "{F2A71F9B-5D33-465A-A702-920D77279786}";

// C#
return "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}";
Expand Down

0 comments on commit e50935b

Please sign in to comment.