Adding a RunCsc.cmd.

This commit is contained in:
Livar Cunha 2016-09-21 16:36:58 -07:00 committed by Livar Cunha
parent 4019fdca16
commit 9542d61224
2 changed files with 8 additions and 2 deletions

6
src/redist/RunCsc.cmd Normal file
View file

@ -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 %*

View file

@ -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": {