From b51255c073a6cf7ab6dded5cb130319aba161e0e Mon Sep 17 00:00:00 2001 From: Caspar van Doornmalen Date: Thu, 5 Nov 2020 14:36:41 +0100 Subject: [PATCH] notation fix --- src/Buildalyzer/ProjectAnalyzer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Buildalyzer/ProjectAnalyzer.cs b/src/Buildalyzer/ProjectAnalyzer.cs index 47b353a6..828c141a 100644 --- a/src/Buildalyzer/ProjectAnalyzer.cs +++ b/src/Buildalyzer/ProjectAnalyzer.cs @@ -212,7 +212,7 @@ private string GetCommand(BuildEnvironment buildEnvironment, string targetFramew if (Path.GetExtension(ProjectFile.Path).Equals(".fsproj", StringComparison.OrdinalIgnoreCase) && effectiveGlobalProperties.ContainsKey(MsBuildProperties.SkipCompilerExecution)) { - // We can't skip the compiler for design-time builds in F# (it causes strange errors regarding file copying) + // We can't skip the compiler for design-time builds in F# (it causes strange errors regarding file copying) effectiveGlobalProperties.Remove(MsBuildProperties.SkipCompilerExecution); } string propertyArgument = effectiveGlobalProperties.Count == 0 ? string.Empty : $"/property:{string.Join(";", effectiveGlobalProperties.Select(x => $"{x.Key}={FormatArgument(x.Value)}"))}";