When I compile my C# class into a dll to work with VB.NET I do the following: (from the command line)
is there an easier way to compile it into a dll without having to add all of those switches???Code:C:\>csc /nologo /t:library /out:myClass.dll myClass.cs
something like:
I know the above doesn't work, but is there an easier way? (using the command line to compile, not the IDE)Code:C:\>csc /out:myClass.dll myClass.cs




Reply With Quote