Files

14 lines
309 B
C#
Raw Permalink Normal View History

2022-09-23 22:44:34 -07:00
using System.Runtime.InteropServices;
2023-12-31 11:09:44 +00:00
namespace Velopack.CommandLine.Tests;
2023-12-15 17:27:33 +00:00
public class WindowsOnlyFactAttribute : FactAttribute
2022-09-23 22:44:34 -07:00
{
2023-12-15 17:27:33 +00:00
public WindowsOnlyFactAttribute()
2022-09-23 22:44:34 -07:00
{
2023-12-15 17:27:33 +00:00
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) {
Skip = "Only run on Windows";
2022-09-23 22:44:34 -07:00
}
}
}