From 7e5b2a6d82a3f6373230419cc92a721937c22e99 Mon Sep 17 00:00:00 2001 From: Jeff Kluge Date: Mon, 2 Apr 2018 07:14:18 -0700 Subject: [PATCH] Set tool name of Csc to csc Case sensitive file systems will have an all lowercase csc.dll/csc.exe Fixes #22 --- src/RoslynCodeTaskFactory/Internal/Csc.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/RoslynCodeTaskFactory/Internal/Csc.cs b/src/RoslynCodeTaskFactory/Internal/Csc.cs index fba512b..b246d0f 100644 --- a/src/RoslynCodeTaskFactory/Internal/Csc.cs +++ b/src/RoslynCodeTaskFactory/Internal/Csc.cs @@ -7,7 +7,7 @@ internal sealed class Csc : ManagedCompiler { public bool? NoStandardLib { get; set; } - protected override string ToolName => "Csc.exe"; + protected override string ToolName => "csc.exe"; protected internal override void AddResponseFileCommands(CommandLineBuilderExtension commandLine) {