Questions tagged [web-deployment-project]

Web Deployment Projects provides developers with advanced compilation options for ASP.NET projects. A Web Deployment Project is an extensible MSBuild script, enabling web developers to create pre-build and post-build actions.

Web Deployment Projects provides developers with advanced compilation options for ASP.NET projects. A Web Deployment Project is an extensible script, enabling web developers to create pre-build and post-build actions.

Web Deployment Projects have been deprecated since Visual Studio 2012, as equivalent functionality is available through the Web Publishing Pipeline ()

379 questions
1
vote
1 answer

How is the ExcludeFromBuild itemgroup supposed to work in Web Deployment Projects?

I added an ItemGroup for ExcludeFromBuild items in the PreBuild target in my Web Deployment project: After the build the assembly in the output still…
Michiel van Oosterhout
  • 22,839
  • 15
  • 90
  • 132
1
vote
1 answer

Multiple Projects in a single Rails Application for Heroku

I am working on an Application with Rails 3 and MongoDb which will be deployed on Heroku. The application will fetch data from several APIs on the web and then perform analytics to generate meaningful insights. However I want to have several…
Nitish Upreti
  • 6,312
  • 9
  • 50
  • 92
1
vote
1 answer

Issue Running RIA Services on IIS 5

I'm setting up an environment for testing a Silverlight app with RIA Services in IIS 5.1. I'm getting an error message on the first service call saying "The specified resource was not found." This only occurs when I deploy the project to my local…
Nick Gotch
  • 9,167
  • 14
  • 70
  • 97
1
vote
1 answer

VS Web Setup Project + VSDB Database project

I'm using Visual Studio Web Setup Project to instrument web application install kit. Unfortunately, the database is done by a Database Project created by VSTS Database Edition by my colleague(I'm using VSTS Developer Edition). It seems that VS Web…
Roy
  • 2,313
  • 6
  • 37
  • 46
1
vote
5 answers

Tomcat 7 fails to load ojdbc6.jar no matter where I have it specified

This is one really trying my patience. I have a simple Spring 3.1 + Jersey application that I'm trying to work with ojdbc6.jar as my datasource. Unfortunately, no matter what I try, it can never find "oracle.jdbc.driver.OracleDriver" class. I have…
Carlos
  • 1,897
  • 3
  • 19
  • 37
1
vote
3 answers

What is the point of AngularJS routes?

Im creating a website and I chose to do it in AJ. I have two folders: Gateways => some php files which retrive data from a mysql db and echos the data as json. Views => Partial html files which are basically the template for each page. eg Users,…
user1012032
1
vote
2 answers

Does FinalBuilder support building a Web Deployment Project?

I just sent out an internal company mail glorifying Web Deployment Projects. However, some of my colleagues are using FinalBuilder and they asked me if it supports building wdproj files? My guess is, yes.
JohannesH
  • 6,430
  • 5
  • 37
  • 71
1
vote
3 answers

Visual Studio Web Setup Project - deploy outside of web root (wwwroot)

I am working with Visual Studio setup projects to install web application. I am looking for a way to change the default physical file installation path. The end result I would like is a Virtual Directory called "MySite" that points to a local path…
1
vote
1 answer

How do I use TFS Build 2008 and my Web Deployment Project?

I wish to create a TFS Build for my solution. Is there anyway I can just make the TFS Build, build my WDP only .. and not everything in the solution, etc? Secondly, is there a special keyword I can use to tell my WDP that when it's a TFSBuild, it…
Pure.Krome
  • 84,693
  • 113
  • 396
  • 647
1
vote
1 answer

How to run background the project Django, use gunicorn?

I use gunicorn to deploy project Django background. python2.7 manage.py run_gunicorn 0.0.0.0:8090 It is not run background. gunicorn_django -b 0.0.0.0:8090 It doesn't see the my apps. The project ran successfully when python manage.py runserver
Hueston Rido
  • 809
  • 1
  • 11
  • 16
1
vote
2 answers

Web Deployment Project does not warn of errors in ASPX files

I want to compile my ASPX pages so that if there is a bug in them it will tell me to fix it. Traditionally Visual Studio only compiles the code behind so I found recommendations to use Web Deployment Project. I have done that but it builds…
Jon
  • 38,814
  • 81
  • 233
  • 382
1
vote
4 answers

Heroku — "We're sorry, but something went wrong"

Hi I'm pretty new on Heroku. I have finished part of my app. Currently I'm working locally, but I want to deploy to Heroku. When I typed heroku logs I got this: 2012-07-30T16:36:27+00:00 app[web.1]: DEPRECATION WARNING: You have Rails 2.3-style …
Asantoya17
  • 4,465
  • 6
  • 23
  • 29
1
vote
2 answers

websetup in .net

I created a websetup project in .net. When I use the installer, by default the installer installs the web application in c:\inetpub\wwwroot. But I like to configure the location during the installation. How can I do that? Thanks, P.Gopalakrishnan.
gopal
  • 3,681
  • 5
  • 24
  • 25
1
vote
2 answers

ASP.NET MVC Web publishing does not copy excel file

My project has Help folder which is located within web project AND in which we kept some template excel files. When we do "Web Publishing", these files does not get copied on the server. If we change the extension to xml from xslx then they get…
1
vote
3 answers

Deploying an eclipse maven project in a remote linux server's tomcat

I'm looking a way to deploy a maven project developed using eclipse in a remote linux server's tomcat. I know you can export it as a .war file and dump it in CATALINA_HOME/webapps folder of the remote server. But for that you have to first export it…