Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2020-01-09 20:06:53 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2020-01-09 20:06:53 +0300
commitc9dc20f59ebe7fbed2a439d69c2d03a2d4500577 (patch)
tree9982042e01e7cca13ec592a5b1f8f8b3e9e8307c /msvc/setup-solution.bat
parent46f834fda73a7d6d95f3577aeaf667c5cf705644 (diff)
Fix line endings in .bat files
They need to be CRLF otherwise we'll get conflicts when moving into dotnet/runtime which has a .gitattributes setting forcing .bat to CRLF.
Diffstat (limited to 'msvc/setup-solution.bat')
-rwxr-xr-xmsvc/setup-solution.bat38
1 files changed, 19 insertions, 19 deletions
diff --git a/msvc/setup-solution.bat b/msvc/setup-solution.bat
index 0674972d9ab..3d43d4492c1 100755
--- a/msvc/setup-solution.bat
+++ b/msvc/setup-solution.bat
@@ -1,20 +1,20 @@
-@echo off
-csc -debug -out:scripts\monowrap.exe scripts\monowrap.cs
-if errorlevel 1 goto error
-csc -nowarn:414 -debug -out:scripts\genproj.exe scripts\genproj.cs
-if errorlevel 1 goto error
-csc -debug -out:scripts\prepare.exe scripts\prepare.cs
-if errorlevel 1 goto error
-cd scripts
-prepare.exe ..\\..\\..\\mcs core
-if errorlevel 1 goto error
-genproj.exe
-if errorlevel 1 goto error
-cd ..
-echo Setup complete, you need at least a mcs\class\lib\basic directory with
-echo mcs.exe mscorlib.dll System.dll System.Xml.dll
-echo to bootstrap
-goto end
-: error
-echo Error: solution is not configured.
+@echo off
+csc -debug -out:scripts\monowrap.exe scripts\monowrap.cs
+if errorlevel 1 goto error
+csc -nowarn:414 -debug -out:scripts\genproj.exe scripts\genproj.cs
+if errorlevel 1 goto error
+csc -debug -out:scripts\prepare.exe scripts\prepare.cs
+if errorlevel 1 goto error
+cd scripts
+prepare.exe ..\\..\\..\\mcs core
+if errorlevel 1 goto error
+genproj.exe
+if errorlevel 1 goto error
+cd ..
+echo Setup complete, you need at least a mcs\class\lib\basic directory with
+echo mcs.exe mscorlib.dll System.dll System.Xml.dll
+echo to bootstrap
+goto end
+: error
+echo Error: solution is not configured.
:end \ No newline at end of file