Skip to content

Commit 9e6c601

Browse files
committed
msbuild doesn't have nologo on by default
1 parent e5a912a commit 9e6c601

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/dotnet.Tests/CommandTests/MSBuild/GivenDotnetMSBuildInvocation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class GivenDotnetMSBuildInvocation : IClassFixture<NullCurrentSessionIdFi
1212
private static readonly string WorkingDirectory = TestPathUtilities.FormatAbsolutePath(nameof(GivenDotnetPackInvocation));
1313

1414
[Theory]
15-
[InlineData(new string[] { "--disable-build-servers" }, new string[] { "--property:UseRazorBuildServer=false", "--property:UseSharedCompilation=false", "/nodeReuse:false", "--nologo" })]
15+
[InlineData(new string[] { "--disable-build-servers" }, new string[] { "--property:UseRazorBuildServer=false", "--property:UseSharedCompilation=false", "/nodeReuse:false" })]
1616
public void MsbuildInvocationIsCorrect(string[] args, string[] expectedAdditionalArgs)
1717
{
1818
CommandDirectoryContext.PerformActionWithBasePath(WorkingDirectory, () =>

0 commit comments

Comments
 (0)