diff --git a/src/redist/RunCsc.cmd b/src/redist/RunCsc.cmd new file mode 100644 index 000000000..43d2c100c --- /dev/null +++ b/src/redist/RunCsc.cmd @@ -0,0 +1,6 @@ +@echo off + +REM Copyright (c) .NET Foundation and contributors. All rights reserved. +REM Licensed under the MIT license. See LICENSE file in the project root for full license information. + +%~dp0..\..\dotnet %~dp0csc.exe %* diff --git a/src/redist/project.json b/src/redist/project.json index 46697539d..d9079f002 100644 --- a/src/redist/project.json +++ b/src/redist/project.json @@ -3,11 +3,11 @@ "buildOptions": { "emitEntryPoint": true, "copyToOutput": { - "include": "RunCsc.sh" + "include": ["RunCsc.sh", "RunCsc.cmd"] } }, "publishOptions": { - "include": "RunCsc.sh" + "include": ["RunCsc.sh", "RunCsc.cmd"] }, "dependencies": { "Microsoft.NETCore.App": {