diff --git a/documentation/specs/BuildCheck/BuildCheck.md b/documentation/specs/BuildCheck/BuildCheck.md index 58442360521..b6ee6708ce7 100644 --- a/documentation/specs/BuildCheck/BuildCheck.md +++ b/documentation/specs/BuildCheck/BuildCheck.md @@ -248,7 +248,7 @@ To author custom check, user will need to implement given contract (delivered in Simplified proposal: ```csharp -public abstract class BuildExecutionCheck : IDisposable +public abstract class Check : IDisposable { /// /// Friendly name of the check. @@ -259,7 +259,7 @@ public abstract class BuildExecutionCheck : IDisposable /// /// Single or multiple rules supported by the check. /// - public abstract IReadOnlyList SupportedRules { get; } + public abstract IReadOnlyList SupportedRules { get; } /// /// Optional initialization of the check. diff --git a/src/Build/BuildCheck/Infrastructure/EditorConfig/README.md b/src/Build/BuildCheck/Infrastructure/EditorConfig/README.md index 163fd84f1ff..0f118ee26e1 100644 --- a/src/Build/BuildCheck/Infrastructure/EditorConfig/README.md +++ b/src/Build/BuildCheck/Infrastructure/EditorConfig/README.md @@ -68,7 +68,7 @@ Lifecycle of BuildCheckManager could be found [here](https://github.com/dotnet/m #### Custom configuration data CustomConfigurationData is propogated to the BuildCheck Check instance by passing the instance of [ConfigurationContext](https://github.com/dotnet/msbuild/blob/393c2fea652873416c8a2028810932a4fa94403f/src/Build/BuildCheck/API/ConfigurationContext.cs#L14) -during the initialization of the [BuildExecutionCheck](https://github.com/dotnet/msbuild/blob/393c2fea652873416c8a2028810932a4fa94403f/src/Build/BuildCheck/API/BuildExecutionCheck.cs#L36). +during the initialization of the [Check]([https://github.com/dotnet/msbuild/blob/main/src/Build/BuildCheck/API/Check.cs](https://github.com/dotnet/msbuild/blob/a73379bc4af3599eb79b899a7c4c56a6c0dff9ff/src/Build/BuildCheck/API/Check.cs#L34)). #### Example of consuming the CustomConfigurationData