public WindowsOnlyRequiresMSBuildVersionTheoryAttribute(string version) { if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { this.Skip = "This test requires Windows to run"; } RequiresMSBuildVersionTheoryAttribute.CheckForRequiredMSBuildVersion(this, version); }
public RequiresMSBuildVersionFactAttribute(string version) { RequiresMSBuildVersionTheoryAttribute.CheckForRequiredMSBuildVersion(this, version); }