mirror of
https://github.com/logos-co/velopack.git
synced 2026-08-29 20:51:10 +00:00
14 lines
309 B
C#
14 lines
309 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Velopack.CommandLine.Tests;
|
|
|
|
public class WindowsOnlyFactAttribute : FactAttribute
|
|
{
|
|
public WindowsOnlyFactAttribute()
|
|
{
|
|
if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) {
|
|
Skip = "Only run on Windows";
|
|
}
|
|
}
|
|
}
|