Log and emit diagnostic if incorrectly named files are found

This commit is contained in:
Michael B. Gale
2026-01-30 13:09:01 +00:00
parent 5ba3b679dd
commit 1b5ed129ac
4 changed files with 53 additions and 0 deletions

View File

@@ -158,6 +158,10 @@ namespace Semmle.Autobuild.CSharp.Tests
bool IBuildActions.IsMacOs() => IsMacOs;
public bool IsLinux { get; set; }
bool IBuildActions.IsLinux() => IsLinux;
public bool IsRunningOnAppleSilicon { get; set; }
bool IBuildActions.IsRunningOnAppleSilicon() => IsRunningOnAppleSilicon;