command prompt build web deployment and vs project 2005
-
Hi, I have 2 proj-a user control project and a web page project(huge web site). Currently using web deployment, I am creating a dll file for user control project. Then I am referencing this to web page project and build and debug to view the changes in web project. To avoid this long process, I am trying to build a batch file to build both. I am able to build the usercontrol using msbuild in the batch file. Now I am not able to reference this dll file to webpage project and build the web page project using devenv.How do I reference dll file to webpage project in command prompt or in a batch file. Please help
-
Hi, I have 2 proj-a user control project and a web page project(huge web site). Currently using web deployment, I am creating a dll file for user control project. Then I am referencing this to web page project and build and debug to view the changes in web project. To avoid this long process, I am trying to build a batch file to build both. I am able to build the usercontrol using msbuild in the batch file. Now I am not able to reference this dll file to webpage project and build the web page project using devenv.How do I reference dll file to webpage project in command prompt or in a batch file. Please help
Travelthrprog wrote:
Now I am not able to reference this dll file to webpage project and build the web page project using devenv.
Why not?? All you have to do is add the .DLL project to your web page project in the same solution, then you won't have this problem at all.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
Travelthrprog wrote:
Now I am not able to reference this dll file to webpage project and build the web page project using devenv.
Why not?? All you have to do is add the .DLL project to your web page project in the same solution, then you won't have this problem at all.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007Hi Dave, I am able to run it manually. But I want to create msbuild .proj file to do it. I just tried building only proj2 by referencing the proj1.dll file as shown below C:\2proj false But gives an error Msb4025-invalid characters in the coding I also don't know how to build the first proj and then add the reference it in the above code. Please help. Thanking you, Nirmala