diff --git a/Cake.MsDeploy.slnx b/Cake.MsDeploy.slnx
index 9018ead..891ea03 100644
--- a/Cake.MsDeploy.slnx
+++ b/Cake.MsDeploy.slnx
@@ -1,4 +1,9 @@
+
+
+
+
+
diff --git a/src/Cake.MsDeploy.Tests/Cake.MsDeploy.Tests.csproj b/src/Cake.MsDeploy.Tests/Cake.MsDeploy.Tests.csproj
index 4b585f5..740e517 100644
--- a/src/Cake.MsDeploy.Tests/Cake.MsDeploy.Tests.csproj
+++ b/src/Cake.MsDeploy.Tests/Cake.MsDeploy.Tests.csproj
@@ -12,12 +12,12 @@
-
-
-
+
+
+
-
+
diff --git a/src/Cake.MsDeploy.Tests/Unit/Directives/SkipDIrectiveTests.cs b/src/Cake.MsDeploy.Tests/Unit/Directives/SkipDIrectiveTests.cs
index 27793b0..c1c1374 100644
--- a/src/Cake.MsDeploy.Tests/Unit/Directives/SkipDIrectiveTests.cs
+++ b/src/Cake.MsDeploy.Tests/Unit/Directives/SkipDIrectiveTests.cs
@@ -1,10 +1,10 @@
-using Cake.MsDeploy.Directives;
-using System.Collections.Generic;
+using System.Collections.Generic;
+using Cake.MsDeploy.Directives;
using Xunit;
namespace Cake.MsDeploy.Tests.Unit.Directives
{
- public class SkipDirectiveTests
+ public static class SkipDirectiveTests
{
public sealed class TheToCommandLineArgument
{
@@ -15,22 +15,21 @@ public void Should_Throw_If_Context_Is_Null()
var rule = new SkipDirective();
// When
- var result = Record.Exception(() => rule.AppendCommandLineArgument(null));
+ var result = Record.Exception(() => rule.AppendCommandLineArgument(null!));
// Then
AssertEx.IsArgumentNullException(result, "sb");
}
-
[Theory]
[MemberData(nameof(SkipDirectiveData))]
public void Should_Append_Options(SkipDirective directive, string expected)
{
- //Given --> When
+ // Given --> When
var actual = directive.ToCommandLineArgument();
- //Then
- Assert.Equal(expected, directive.ToCommandLineArgument());
+ // Then
+ Assert.Equal(expected, actual);
}
public static IEnumerable