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
2 answers

How to deploying website on IIS 6.0 using msdeploy

I have a zip file on source server in a shared location and, using msdeploy, I would like to copy it to the destination server. However, if for the first time, the site does not exist on the destination server, then it should create the website as…
nabeelfarid
  • 4,156
  • 5
  • 42
  • 60
1
vote
0 answers

WPF, No-touch deployment and error " [Application] encountered a problem and needs to close. We are sorry for the inconvenience"

I have a problem and don't know what should I do. We are deploying our application written in .NET 3.5 WPF using No-touch deployment. Our server is also written in .net 3.5 using WCF. Lots of users use this application by installing the shortcuts…
niao
  • 4,972
  • 19
  • 66
  • 114
1
vote
1 answer

Is there a way to stop VS2008 Web Deployment Project from creating Source folder when using ExcludeFromBuild?

When excluding files in Web Deployment Project using ExcludeFromBuild e.g. I end up with a Source folder containing all next to the Release and…
mflodin
  • 1,093
  • 1
  • 12
  • 22
1
vote
2 answers

.htaccess permissions to stop outside world executing php scripts

I am setting up a new website and currently if I go to mydomian/php/someScript.php it will execute the php script. How can I let the files that include this still include this but not let anyone else execute these scripts from the browser. Currently…
Aly
  • 15,865
  • 47
  • 119
  • 191
1
vote
1 answer

Deploying asp.net application(.Net4.0) package on to IIS 6.0

I have created a asp.net application project in Visual Studio 2010 (.net 4.0). I had published it using Project-> Build Deployment Package. It generated .zip file along with files having extension " .deply.cmd", ".SetParameters.xml",…
Vinod.Nair
  • 23
  • 5
1
vote
1 answer

I try to add simple java project to Deployment Assembly and it disappear

Hi stackoverflower, I use eclipse Helios and this is my problem. I have main project name main. It is Dynamic Web Project. I have util project name util. It is Simple Java Project. I open Deployment Assembly from main project. I click Add ->…
diewland
  • 1,865
  • 5
  • 30
  • 41
1
vote
2 answers

Web Deployment Project / MSBuild - TempBuildDir

When using the Web Deployment Project MSBuild uses the folder '.TempBuildDir' when performing the build. Is it possible to specify an alternative folder?
UpTheCreek
  • 31,444
  • 34
  • 152
  • 221
1
vote
1 answer

ASP.net MVC Web Deployment Project

I created an ASP.net MVC 2 Web Application in Visual Studio 2010. I then added a Web Deployment Project to the solution and added the Primary Output from my web application. I right clicked on the web deployment project in Visual Studio and clicked…
Dismissile
  • 32,564
  • 38
  • 174
  • 263
1
vote
1 answer

Crystal Report Error. Failed to open the connection

I have issue in Crystal Report. I have MySQL database on one server and asp.net C# website on other server. My website shows some reports well but other reports shows following error. All Crystal Reports work well on localhost. Error: Failed to open…
1
vote
1 answer

Visual Studio 2008 tries to convert a web deployment project every time I open the solution

I am using a web deployment project in Visual Studio 2008. Now, every time I open my ASP.NET web project solution which contains the web deployment, Visual Studio asks to convert the project (I guess from VS 2005 to 2008). I do the conversion and…
splattne
  • 102,760
  • 52
  • 202
  • 249
1
vote
1 answer

How can we protect our MVC2 code?

In a normal ASP.NET Website there is a Web Deployment Project that we can use to pre-compile our entire website and then we can safely upload this project to our production server in order to protect our code. What can we do for ASP.NET MVC…
balexandre
  • 73,608
  • 45
  • 233
  • 342
1
vote
0 answers

Unable to set $(ReplacableToken...) in Web.config when publishing a Web Project

I have a web project and I craeted a Test publish configuration. I use Web Deploy Package for publish method. My target is to have a replacable parameter for a setting in appSettings, so that on deployment a new setting value would be used in…
1
vote
1 answer

Continuous Deployment using Visual Studio 2010

I have to deploy a website asap and then incrementally keep on adding some features, fixes. In Visual Studio 2008, I used to transfer/copy website where I could see in the dialog which file on my system is different from the server and deploy only…
shashi
  • 4,616
  • 9
  • 50
  • 77
1
vote
2 answers

Kramdown ID for any element?

I have been learning Jekyll which uses Kramdown as a HTML preprocessor. What I can't seem to work out is how to assign elements an id. In Kramdown to created an Ordered List you just use 1. 2. but how on earth do I assign this element an Id for…
Alan Auckland
  • 115
  • 2
  • 10
1
vote
1 answer

How do I pass 2 arguments to an array_map function in php?

$sql="select * from question_test where test_id='".$test_id."' and difficulty_level BETWEEN ".$_SESSION['difficulty_start']." and ".$_SESSION['difficulty_end']." and question_id NOT IN ('".implode("', '",…
Rishabh Gupta
  • 73
  • 4
  • 13