How do I compile this project in C #?

0

I'm having trouble compiling with the CSC command at prompt and it's giving a namespace error that I can not fix. I do not know if I'm doing it right.

Project Link .

    
asked by anonymous 31.07.2017 / 12:37

1 answer

3

You have to say what you want to use as a library.

csc /r:Mono.dll /t:onde_estao_as_bibliotecas *.cs

Other errors will certainly appear.

I'm wondering if you can use Mono on csc . Even gives, but it gives work.

I recommend installing Visual Studio and doing it, it's much easier for those who are not aware of it.

    
31.07.2017 / 12:47