From 4ae179f3376a783a9ea3d642db4cc211ae9322df Mon Sep 17 00:00:00 2001 From: Georg Dangl Date: Mon, 23 Oct 2023 11:37:24 +0200 Subject: [PATCH] Update checktool to check v4 examples --- Test Cases/v4.0/.gitkeep | 0 build/Build.cs | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 Test Cases/v4.0/.gitkeep diff --git a/Test Cases/v4.0/.gitkeep b/Test Cases/v4.0/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/build/Build.cs b/build/Build.cs index 3234a29d..94af66f9 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -20,6 +20,6 @@ class Build : NukeBuild .Executes(() => { var bcfCheckToolPath = NuGetToolPathResolver.GetPackageExecutable("bcf-tool.CommandLine", "tools/net5.0/bcf-tool.dll"); - BcfTool($"check -q -r v3.0 \"{RootDirectory}\"", workingDirectory: System.IO.Path.GetDirectoryName(bcfCheckToolPath)); + BcfTool($"check -q -r v4.0 \"{RootDirectory}\"", workingDirectory: System.IO.Path.GetDirectoryName(bcfCheckToolPath)); }); }