How to Convert # file into DLL
-
I have a project to deploy. But before deploying i want to convert all the .CS extension files into DLL files Please help!!!!
Regards
Err, compile the project?
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
-
Err, compile the project?
-------------------------------------------------------- My portfolio & development blog Q:What does the derived class in C# tell to it's parent? A:All your base are belong to us!
I'm guessing it's an 2.0 website, in which case the solution is not that obvious. It requires the use of the precompilation tool. Example: aspnet_compiler -p "sourcedirectory" -v / "targetdirectory" where the targetdirectory should be an empty or non-existing folder. The command should be run using the Visual Studio Command Prompt, or from the Framework's directory (%WINDIR%\Microsoft.NET\Framework\\).
-
I'm guessing it's an 2.0 website, in which case the solution is not that obvious. It requires the use of the precompilation tool. Example: aspnet_compiler -p "sourcedirectory" -v / "targetdirectory" where the targetdirectory should be an empty or non-existing folder. The command should be run using the Visual Studio Command Prompt, or from the Framework's directory (%WINDIR%\Microsoft.NET\Framework\\).
-
Thanks For the reply Yes its an asp 2.0 problem using this i am able to convert it but no dll file is there?
Regards