File tree 4 files changed +12
-2
lines changed
robocode.dotnet.nhost/src/host/seed
robocode.dotnet.ntests/src
4 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ Microsoft C# Compiler and .NET SDK
18
18
19
19
- Best option is to install Visual Studio C# Express 2010 or newer.
20
20
21
- - NOTE: Make sure you have csc.exe on PATH.
21
+ - NOTE: Make sure you have csc.exe version 3.5 on PATH.
22
+ Something like
23
+ c:\Windows\Microsoft.NET\Framework\v3.5\csc.exe
22
24
23
25
Microsoft HTML Help 1 Compiler and Sandcastle Help File Builder
24
26
---------------------------------------------------------------
Original file line number Diff line number Diff line change 8
8
9
9
@ echo off
10
10
11
+ set PATH = c:\Windows\Microsoft.NET\Framework\v3.5\;%PATH%
11
12
mvn clean install ant:ant -DskipTests=false %*
12
13
rem mvn eclipse:eclipse
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ public static void FindRobots()
126
126
{
127
127
if ( Reflection . CheckInterfaces ( type ) != RobotTypeN . INVALID )
128
128
{
129
- sb . Append ( "file://" ) ;
129
+ sb . Append ( "file:/// " ) ;
130
130
sb . Append ( robotAssemblyFileName ) ;
131
131
sb . Append ( "!/" ) ;
132
132
sb . Append ( type . FullName ) ;
Original file line number Diff line number Diff line change 5
5
* which accompanies this distribution, and is available at
6
6
* http://robocode.sourceforge.net/license/epl-v10.html
7
7
*/
8
+
9
+ using System ;
10
+ using System . Runtime . InteropServices ;
8
11
using net . sf . robocode . dotnet . host . seed ;
9
12
using net . sf . robocode . dotnet . repository . root ;
10
13
using net . sf . robocode . repository ;
@@ -20,6 +23,10 @@ public class AssemblyLoadTest : TestBase
20
23
[ Test ]
21
24
public void testDomain ( )
22
25
{
26
+ Console . WriteLine ( "clr.arch :" + ( ( IntPtr . Size == 8 ) ? "64bit" : "32bit" ) ) ;
27
+ Console . WriteLine ( "clr.version :" + RuntimeEnvironment . GetSystemVersion ( ) ) ;
28
+ Console . Out . Flush ( ) ;
29
+
23
30
string [ ] strings = DllRootHelper . findItems ( @"file:/" + typeof ( MyFirstRobot ) . Assembly . Location ) ;
24
31
Assert . GreaterOrEqual ( strings . Length , 5 ) ;
25
32
}
You can’t perform that action at this time.
0 commit comments