Tagged Questions
3
votes
5answers
2k views
MSBuild: Building asp.net 4.0 web sites: .metaproj -files
I have a solution-file with ASP.NET Web Sites.
When I build the solution with .NET 4.0 Beta 2 using
"c:\WINDOWS\Microsoft.NET\Framework\v4.0.21006\MSBuild.exe" d:\MyPath\MySolution.sln
...
1
vote
1answer
124 views
ASP.NET 4.0 Deployment package include
The build Deployment package feature of Visual Studio 2010 doesn't copy the App_GlobalResources directory from my ASP.NET 4.0 WebForms application.
I know I can use for example ...
1
vote
1answer
296 views
ASP.NET 4 Deployment MSBUILD
I'm using VS2010 with the Web Deployment Projects to create a release package for my web application. In WDP I have created some build tasks to for example transform the web.config, create some ...
0
votes
1answer
82 views
How do I skip certain files (or should I?) when deploying with MSBuild/MSDeploy?
I'm using this command to build and deploy my site:
MSBuild myprj.sln
/P:Configuration=Debug
/P:DeployOnBuild=True
/P:MsDeployServiceUrl=http://myserver/MsDeployAgentService
...