mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
373 B
24 lines
373 B
@echo off |
|
|
|
goto old |
|
|
|
|
|
:old |
|
echo Generating with #Coco |
|
|
|
cd Frames |
|
|
|
copy ..\CSharp\cs.ATG |
|
SharpCoco -namespace ICSharpCode.NRefactory.Parser.CSharp cs.ATG |
|
move Parser.cs ..\CSharp |
|
|
|
copy ..\VBNet\VBNET.ATG |
|
SharpCoco -trace GIPXA -namespace ICSharpCode.NRefactory.Parser.VB VBNET.ATG |
|
move Parser.cs ..\VBNet |
|
|
|
del cs.ATG |
|
del VBNET.ATG |
|
|
|
:exit |
|
pause |
|
cd ..
|
|
|