forked from dotnet/csharpstandard
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add status checks to the word converter (dotnet#1136)
* Fix hack Fix the hack in dotnet#1134 with more reasonable shell programming. * Test run for check status on converter Add the code to upload check results from the word converter * typo * Add some logging for testing * Fix status check report. * Update diagnostic IDs for the word converter * Doing a quick review
- Loading branch information
1 parent
6dcbde0
commit 092b916
Showing
18 changed files
with
189 additions
and
113 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
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,34 @@ | ||
namespace MarkdownConverter.Converter; | ||
|
||
internal class DiagnosticIDs | ||
{ | ||
public const string MDC002 = nameof(MDC002); | ||
public const string MDC003 = nameof(MDC003); | ||
|
||
public const string MDC008 = nameof(MDC008); | ||
public const string MDC009 = nameof(MDC009); | ||
public const string MDC010 = nameof(MDC010); | ||
public const string MDC011 = nameof(MDC011); | ||
public const string MDC012 = nameof(MDC012); | ||
public const string MDC013 = nameof(MDC013); | ||
public const string MDC014 = nameof(MDC014); | ||
public const string MDC015 = nameof(MDC015); | ||
public const string MDC016 = nameof(MDC016); | ||
public const string MDC016b = nameof(MDC016b); | ||
public const string MDC017 = nameof(MDC017); | ||
public const string MDC018 = nameof(MDC018); | ||
public const string MDC019 = nameof(MDC019); | ||
public const string MDC020 = nameof(MDC020); | ||
|
||
public const string MDC026 = nameof(MDC026); | ||
public const string MDC027 = nameof(MDC027); | ||
public const string MDC028 = nameof(MDC028); | ||
public const string MDC029 = nameof(MDC029); | ||
public const string MDC030 = nameof(MDC030); | ||
public const string MDC031 = nameof(MDC031); | ||
public const string MDC032 = nameof(MDC032); | ||
public const string MDC033 = nameof(MDC033); | ||
|
||
// Just for status messages: | ||
public const string MDC999 = nameof(MDC999); | ||
} |
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
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.