Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAmit Ghosh
9,314 PointsProgram not compiling, it says cannot open assembly 'Program.cs': file doesn't contain a valid CIL image
Program doesn't run, it compiles, but mono Progarm.cs gives the above error
2 Answers
Steven Parker
231,210 PointsYou might be using the wrong command for that file type.
To compile a C# source file, you would use the command: "mcs Program.cs
". If the compilation is successful, it would create a CIL image file named "Program.exe".
Then to run that compiled output file you would use: "mono Program.exe
".
Funny, someone had almost the same exact issue last week.
Amit Ghosh
9,314 PointsYeah. I kinda figured it. Novice Mistakes. Thanks for your reply!!