Skip to content
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

Support project type GUID added when the .NET CLI manipulates an SLN file #741

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/OmniSharp.MSBuild/MSBuildProjectSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
Expand Down Expand Up @@ -40,8 +39,9 @@ public class MSBuildProjectSystem : IProjectSystem

private static readonly Guid[] _supportedProjectTypes = new[]
{
new Guid("fae04ec0-301f-11d3-bf4b-00c04f79efbc"), // CSharp
new Guid("9A19103F-16F7-4668-BE54-9A1E7A4F7556") // CSharp (New .NET Core csproj)
new Guid("fae04ec0-301f-11d3-bf4b-00c04f79efbc"), // CSharp
new Guid("9A19103F-16F7-4668-BE54-9A1E7A4F7556"), // CSharp (New .NET Core csproj)
new Guid("13B669BE-BB05-4DDF-9536-439F39A36129") // Project GUID used by CLI when manipulation solution files
};

public string Key { get; } = "MsBuild";
Expand Down