Can someone help me compile some C # files through the command line? I have 4 files to compile: Main, Form1 (which uses the 2.cs file) and another class used in the project.
I would like to compile this project on the command line to add / t: library switch (as in this lesson: http://dotnetslackers.com/articles/csharp/WritingAnActiveXControlInCSharp.aspx ).
However, after using "csc / t: library Program1.cs MainForm.cs MainForm.Designer.cs EigenObjectRecognizer.cs" I get missing assembly build errors, such as:
\Project\FaceRecProOVaspVer\FaceRecProOV\MainForm.cs(14,15): error CS0234: The type or namespace name 'Structure' does not exist
in the namespace 'Emgu.CV' (are you missing an assembly reference?)
I have installed EMGU executables installed. I think I need to use some .dll from this folder, such as EMGU.CV.dll?
source
share