forked from rampelstinskin/ParserGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdateboot.cmd
More file actions
15 lines (13 loc) · 1.05 KB
/
Copy pathupdateboot.cmd
File metadata and controls
15 lines (13 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
echo off
set Nemerle="%ProgramFiles%\Nemerle\Net-4.0"
set Boot=boot\Net-4.0
set CompilerFiles=ncc.exe ncc.pdb ncc32.exe ncc32.pdb ncc64.exe ncc64.pdb Nemerle.dll Nemerle.pdb Nemerle.Compiler.dll Nemerle.Compiler.pdb Nemerle.Macros.dll Nemerle.Macros.pdb Nemerle.MSBuild.targets Nemerle.MSBuild.Tasks.dll
ROBOCOPY Nemerle.Parser.Macro\bin\Debug\ %Boot%\ Nemerle.Parser.Macro.??? /LOG:%Boot%\Boot-update.log /NP /NJS /V /NJH
ROBOCOPY Nemerle.Parser\bin\Debug\ %Boot%\ Nemerle.Parser.??? /LOG+:%Boot%\Boot-update.log /NP /NJS /V /NJH
ROBOCOPY Nemerle.Parser.Macro.Parser\bin\Debug\ %Boot%\ Nemerle.Parser.Macro.Parser.??? /LOG+:%Boot%\Boot-update.log /NP /NJS /V /NJH
ROBOCOPY Nemerle.Parser.Macro.Model\bin\Debug\ %Boot%\ Nemerle.Parser.Macro.Model.??? /LOG+:%Boot%\Boot-update.log /NP /NJS /V /NJH
ROBOCOPY %Nemerle%\ %Boot%\ %CompilerFiles% /LOG+:%Boot%\Boot-update.log /NP /NJS /V /NJH
cls
echo Result of update %Boot%
type %Boot%\Boot-update.log
pause