From d17ec720df6ea81145fe462834ba3a68aa19d766 Mon Sep 17 00:00:00 2001 From: Mariana Dematte Date: Thu, 22 Aug 2024 12:27:45 -0700 Subject: [PATCH] Renamed classes to match (#10542) --- template_feed/content/Microsoft.CheckTemplate/Check1.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template_feed/content/Microsoft.CheckTemplate/Check1.cs b/template_feed/content/Microsoft.CheckTemplate/Check1.cs index 2a44afef40c..d15d11436be 100644 --- a/template_feed/content/Microsoft.CheckTemplate/Check1.cs +++ b/template_feed/content/Microsoft.CheckTemplate/Check1.cs @@ -6,12 +6,12 @@ namespace Company.CheckTemplate { public sealed class Check1 : Check { - public static BuildCheckRule SupportedRule = new CheckRule( + public static CheckRule SupportedRule = new CheckRule( "X01234", "Title", "Description", "Message format: {0}", - new BuildCheckConfiguration()); + new CheckConfiguration()); public override string FriendlyName => "Company.Check1";