Hello,
Is there anyone familiar with digger .net, I can't get passed cave 7,
how many caves are there?
Thanks in advance
The source code to digger uses a batch file to make the exe as follows
%SystemRoot%\Microsoft.net\Framework\v1.0.3705\csc.exe /target:winexe
/out:Digger.exe Digger.cs /win32icon:Application.ico
/resource:Application.ico /resource:Font.png /resource:Level.bin
/resource:Sprite.png %1
I want to create a solution project so that I can start changing the code
so batch makes are not my cup off tea.
Any ideas to convert?
I tried to simple create a c# app, add all the files of digger as
an "existing item", and deleting the other .cs file that we get
from the wizard, but this didn't quite work.
The files are as follows:
22/11/2003 04:25 3,638 Application.ico
06/06/2007 10:38 165 Build.bat
06/06/2007 12:44 21,157 Digger.cs
06/06/2007 10:38 49,152 Digger.exe
26/11/2000 01:26 1,312 Font.png
09/02/1996 19:23 4,680 Level.bin
28/07/2000 18:36 1,846 Sprite.png
and build.bat is as follows:
%SystemRoot%\Microsoft.net\Framework\v1.0.3705\csc.exe /target:winexe
/out:Digger.exe Digger.cs /win32icon:Application.ico
/resource:Application.ico /resource:Font.png /resource:Level.bin
/resource:Sprite.png %1
Thanks in advance.