Skip to content

Commit e6b8b37

Browse files
committed
Closes #402. Updates boots.
1 parent 7c8f1eb commit e6b8b37

File tree

32 files changed

+119
-36
lines changed

32 files changed

+119
-36
lines changed

Build-3.5.cmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
set MSBuild="%SystemRoot%\Microsoft.NET\Framework\v3.5\msbuild.exe"
2+
3+
%MSBuild% NemerleAll.nproj /tv:3.5 /p:TargetFrameworkVersion=v3.5 /t:%*

Reg-boot-4.0.cmd

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
@echo off
2+
3+
IF "%Type%"=="" set Type=Debug
4+
5+
set NemerleBin=%~dp0bin\%Type%
6+
set GacUtil="%VS100COMNTOOLS%..\..\SDK\v2.0\Bin\gacutil.exe"
7+
set NemerleInstall=boot-4.0
8+
9+
IF NOT "%PROCESSOR_ARCHITECTURE%" == "x86" goto b64
10+
IF NOT "%PROCESSOR_ARCHITEW6432%" == "" goto b64
11+
set NGen="%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe"
12+
goto b32
13+
:b64
14+
set NGen="%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe"
15+
:b32
16+
17+
@echo NemerleInstall=%NemerleInstall%
18+
@echo VS100COMNTOOLS=%VS100COMNTOOLS%
19+
@echo GacUtil=%GacUtil%
20+
@echo NGen=%NGen%
21+
22+
%NGen% uninstall "%NemerleInstall%\Nemerle.dll"
23+
%NGen% uninstall "%NemerleInstall%\Nemerle.Compiler.dll"
24+
%NGen% uninstall "%NemerleInstall%\Nemerle.Macros.dll"
25+
%NGen% uninstall "%NemerleInstall%\Nemerle.MSBuild.Tasks.dll"
26+
%NGen% uninstall "%NemerleInstall%\ncc.exe"
27+
28+
@echo errorlevel=%errorlevel%
29+
30+
%NGen% install "%NemerleInstall%\Nemerle.dll"
31+
%NGen% install "%NemerleInstall%\Nemerle.Compiler.dll"
32+
%NGen% install "%NemerleInstall%\Nemerle.Macros.dll"
33+
%NGen% install "%NemerleInstall%\Nemerle.MSBuild.Tasks.dll"
34+
%NGen% install "%NemerleInstall%\ncc.exe"

boot-4.0/Nemerle.Compiler.dll

45.5 KB
Binary file not shown.

boot-4.0/Nemerle.Macros.dll

3.5 KB
Binary file not shown.

boot-4.0/Nemerle.dll

17 KB
Binary file not shown.

boot-4.0/ncc.exe

0 Bytes
Binary file not shown.

boot-4.0/ncc32.exe

0 Bytes
Binary file not shown.

boot-4.0/ncc64.exe

0 Bytes
Binary file not shown.

boot/Nemerle.Compiler.dll

44 KB
Binary file not shown.

boot/Nemerle.Macros.dll

4 KB
Binary file not shown.

0 commit comments

Comments
 (0)