Replacing all implicit msbuild parameters from using a forward slash to using a dash.
This commit is contained in:
parent
7c37c9a069
commit
10289504a8
33 changed files with 179 additions and 179 deletions
|
@ -138,7 +138,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
allArgs.Should().NotBeNull();
|
||||
|
||||
allArgs.Should().Contain(
|
||||
value => value.IndexOf("/distributedlogger", StringComparison.OrdinalIgnoreCase) >= 0,
|
||||
value => value.IndexOf("-distributedlogger", StringComparison.OrdinalIgnoreCase) >= 0,
|
||||
"The MSBuild logger argument should be specified when telemetry is enabled.");
|
||||
}
|
||||
}
|
||||
|
@ -151,7 +151,7 @@ namespace Microsoft.DotNet.Cli.MSBuild.Tests
|
|||
allArgs.Should().NotBeNull();
|
||||
|
||||
allArgs.Should().NotContain(
|
||||
value => value.IndexOf("/Logger", StringComparison.OrdinalIgnoreCase) >= 0,
|
||||
value => value.IndexOf("-logger", StringComparison.OrdinalIgnoreCase) >= 0,
|
||||
$"The MSBuild logger argument should not be specified when telemetry is disabled.");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue