forked from OmniSharp/omnisharp-roslyn
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce ProjectLoader class to handle responsibilities of loading a…
… project
- Loading branch information
1 parent
2560f7a
commit 941d52e
Showing
16 changed files
with
254 additions
and
241 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace OmniSharp.MSBuild.ProjectFile | ||
{ | ||
internal static class ItemNames | ||
{ | ||
public const string Analyzer = nameof(Analyzer); | ||
public const string Compile = nameof(Compile); | ||
public const string PackageReference = nameof(PackageReference); | ||
public const string ProjectReference = nameof(ProjectReference); | ||
public const string ReferencePath = nameof(ReferencePath); | ||
} | ||
} |
This file contains 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
namespace OmniSharp.MSBuild.ProjectFile | ||
{ | ||
internal static class MetadataNames | ||
{ | ||
public const string FullPath = nameof(FullPath); | ||
public const string IsImplicitlyDefined = nameof(IsImplicitlyDefined); | ||
public const string Project = nameof(Project); | ||
public const string ReferenceSourceTarget = nameof(ReferenceSourceTarget); | ||
public const string Version = nameof(Version); | ||
} | ||
} |
14 changes: 0 additions & 14 deletions
14
src/OmniSharp.MSBuild/ProjectFile/ProjectFileInfo.ItemNames.cs
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/OmniSharp.MSBuild/ProjectFile/ProjectFileInfo.MetadataNames.cs
This file was deleted.
Oops, something went wrong.
This file contains 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
43 changes: 0 additions & 43 deletions
43
src/OmniSharp.MSBuild/ProjectFile/ProjectFileInfo.PropertyNames.cs
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
src/OmniSharp.MSBuild/ProjectFile/ProjectFileInfo.TargetNames.cs
This file was deleted.
Oops, something went wrong.
This file contains 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
Oops, something went wrong.