compiling problem - Space Invaders in C# and .NET by Mike Gold.
My name is dario.
I have tried to compile http://www.c-sharpcorner.com/Graphics/SpaceInvadersMG.asp with Visual studio .NET and everything was fine.
But I need to compile using csc.
I give this commad:
csc /out:inv.exe /t:winexe Bomb.cs Bullet.cs Form1.cs GameObject.cs HighScore.cs Invader.cs InvaderRow.cs Man.cs Saucer.cs Score.cs Shield.cs
there was no problem inv.exe was done but when esecute it give me the following problem:
-------------------------------------------------------------------------------------------------
An unhandled exception of type 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll
Additional information: Could not find any resources appropriate for the specified culture (or the neutral culture) in the given assembly. Make sure "Form1.resources" was correctly embedded or linked into assembly "inv".
baseName: Form1 locationInfo: SpaceInvaders.Form1 resource file name: Form1.resources assembly: inv, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null
----------------------------------------------------------------------------------------------------
can Mike Gold or somelse help me?
Thankyou very much