The format used to list the errors is
File Name: (
line,
column): error
number:
error message
(see image3)
***
Compiling the ML update into RunUO? You'll have to add the Ultima library to do so.
Simple drop in the Ultima.dll (Jeff posted it somewhere on the forums) into your server folder and add
/reference:Ultima.dll to the second line.
Code:
SET PATH=C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
csc.exe /out:.\RunUO.exe /recurse:*.cs /win32icon:runuo.ico /optimize /unsafe /reference:Ultima.dll
PAUSE
***
Does the compiler simply not work at
all? Probably your .NET install I mentioned in the first post.
See image4 for both where the default install location is, and which ones I personaly have installed by looking at the folders listed. If you have a v2.0.XXXX folder, edit the first line of the compiler to match your folder.
SET PATH=C:\WINDOWS\Microsoft.NET\Framework\<Your version here>