|
-
Jul 23rd, 2003, 11:20 AM
#1
Thread Starter
Frenzied Member
Compiling C# dll
When I compile my C# class into a dll to work with VB.NET I do the following: (from the command line)
Code:
C:\>csc /nologo /t:library /out:myClass.dll myClass.cs
is there an easier way to compile it into a dll without having to add all of those switches???
something like:
Code:
C:\>csc /out:myClass.dll myClass.cs
I know the above doesn't work, but is there an easier way? (using the command line to compile, not the IDE)
Being educated does not make you intelligent.
Need a weekend getaway??? Come Visit
-
Jul 24th, 2003, 09:28 AM
#2
Easier? Why not just make a batch file?
you also dont need /nologo and you dont need /out
-
Jul 24th, 2003, 12:07 PM
#3
Sleep mode
Load your class file with console proj , set the debug type to release , run your proj as exe , get your dll file from bin folder .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|