-
-
Notifications
You must be signed in to change notification settings - Fork 21.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80260 from raulsntos/dotnet/msbuild-panel
C#: Redesign MSBuild panel
- Loading branch information
Showing
8 changed files
with
1,068 additions
and
470 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions
23
modules/mono/editor/GodotTools/GodotTools/Build/BuildDiagnostic.cs
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,23 @@ | ||
#nullable enable | ||
|
||
namespace GodotTools.Build | ||
{ | ||
public class BuildDiagnostic | ||
{ | ||
public enum DiagnosticType | ||
{ | ||
Hidden, | ||
Info, | ||
Warning, | ||
Error, | ||
} | ||
|
||
public DiagnosticType Type { get; set; } | ||
public string? File { get; set; } | ||
public int Line { get; set; } | ||
public int Column { get; set; } | ||
public string? Code { get; set; } | ||
public string Message { get; set; } = ""; | ||
public string? ProjectFile { get; set; } | ||
} | ||
} |
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.