publish

Why does ILMerge do nothing when publishing?

ILMerge usually merges my assemblies fine when building a Release, but when Publishing for ClickOnce the resulting EXE doesn't contain the DLLs that were supposed to be merged. I think ILMerge is working, but Publish is overwriting the new merged assembly with the old original one. I made a Post-Build event that stopped the build right ...

Is Team Foundation Server the right solution to automatically publish .net website to remote server?

We currently build our .net website in C# in Visual Studio 2010 Pro on our dev server, then manually publish it and upload to the live server where it is copied over the current files to go live. We want to automate this process as much as possible and if possible push it at a certain time, such as every day at midnight. We don't curren...

modify content of xml file from published code

I am trying to modify an xml file from my aspx code. The file is in another directory from my project like in D:\folder\file.xml When publishing my code and running it I am receiving an error as not to be able to access this directory, access in denied. Which user account shall I add to this folder in security option to be able to modify...

Moving the Wordpress Publish Module

On the Wordpress dashborad page for writing a new/editing an existing post, is it possible to have the 'Publish' module appear at the bottom right (be the last module on the right) as a default, without having to drag and drop it there? I'm okay with changing the code in the core files, I just need to know how to do it ? ...

AfterPublish target not working

World's simplest task (see below) is not being executed after I publish my web application project. Any idea why? Thank you. <Target Name="AfterPublish">    <Copy SourceFiles="C:\A.txt" DestinationFiles="C:\B.txt" /> </Target> ...

Signing and publishing Android Application

Hi All, I've got a problem to publish my Android Application. here's what i've done, so I have my application run on development environment (eclipse - testing using device), then i do right click on my project folder - android tools - export signed application package, then i create new key store and add my information there, then i...

Web.config transformation causing an error when building

I am using the new VS2010 Web.config transformation. When i do a publish under the 'Release' solution configuration, i get a folder created called ..obj\Release\TransformWebConfig, which contains the original Web.Config and the transformed Web.Config, in addition to If i was to then try to re-build my solution using the same 'Release'...

Issues during "Publish Web Site" from Visual Studio

Hi, I'm currently trying to precompile my website as the hosting provider I am using takes a considerable amount of time to compile the site upon the first request after uploading changes. The site compiles fine locally and runs in debug mode without any problems. However, when I "Publish web site" I am constantly receiving a "Object r...

Eclipse Hot Code Replace Fail - republish web application

I use the Hot Swap java debugging feature with web app on Tomcat. After some class signature change, I got "Hot Code Replace Fail" Eclipse dialog - I understand that. What I want in such case is to republish the application (I can do that) and work with the newly deployed code. However the debugger stil complains, until I restart the se...

Visual studio FTP publish does not close connections?

I am publishing using Visual Studio 2010 FTP publish and everything works fine. The problem is that the page I am publishing to does only allow 6 connections from the same IP. As Visual Studio does not close the connection these connections stay open and I exceed the 6 connections quickly and cannot upload. Does anyone know a solution t...

Facebook Graph Api - Posting to Fan Page as an Admin

Hello, I've setup a script which allows users to post messages to a fan page on Facebook. It all works but there's one small issue. The Problem: When the post is added to the page feed it displays the posting user's personal account. I would prefer it to show the account of the page (like when you're admin of the page it says it came ...

Bug in minSdkVersion or what?

Hi guys, I've just published my app on the android market but something weird happened, this is not my first time publishing an app so I'm almost sure I'm not doing anything wrong here, so would like to know if anyone had this same issue before. 1st Attempt: Manifest.xml file <supports-screens android:largeScreens="true" android:norm...

How can we publish a WebService in Visual Studio 2008 ?

I've created a WebService in VS2008, How Can I publish it with VS2008 ? ...

How can we publish an asp.net website with Visual Studio 2008 ?

I've created an asp.net website with VS2008, how can I publish it in VS2008? P.S: I've used Right Click -> publish but, I've used a Database in my project, but VS2008 doesn't publish it. P.S: I'm using SQL Express 2008 ...

Is it allowed to publish for free a beta version of a programm using trial components ?

Hello, can I offer on my website my programm (beta version) for free to test it and searching for bugs when the programm contains control components running in trial mode? I only want to buy the licence when I do the release of the final programm. ...

Newbie Trying To Deploy Asp.Net Website

I'm basically wondering what the best way to deploy an Asp.Net Web Site is, mostly from the point of view of security. Right now, I'm trying to publish the website using Visual Studio 2010. Could someone direct me to a good tutorial on how to do this securely? For example, can it be done over an encrypted connection via Visual Studio?...

Publish to my wall post is not working

Here is my stream publish code that publish some infomation (attachment, media) to Facebook wall post: function afterAcceptPublish(to_id){ var postid; var attachment = { 'name': 'ฉันได้รับของขวัญเนื่องในวันอีดิ้ลฟิตรี่จาก <?= $card['name']; ?> แล้ว', 'href': '<?= APP_BASE_URL; ?>...

VS2010 Publish to web site causes broken ASP.NET ScriptManager

I'm trying to use VS2010 to Publish a web app on my box to another web site on the same box. The Publish operation succeeds, but any pages that use the asp:ScriptManager tag are broken. I know there's an issue with the ScriptManager and FIPS security policy, but my app is using AES. Some other random config info: I'm using VisualSVN (...

Correct way to build and publish asp.net web application (with or without MSBuild)

I'm using VS2008 (just in case it matters), and I have a solution with multiple projects, some are class libraries, and some are build tools, which the main web project is dependent on. Until now I have been publishing with VS right click publish project, and everything builds and deploys correctly. I've tried creating a few simple publ...

How to implement clickonce using Apache on windows

I am trying out click-once on my local machine using Apache 2.2. I have added following to httpd.conf AddType application/x-ms-application .application AddType application/manifest .manifest AddType application/octet-stream .deploy AddType application/octet-stream .msp AddType application/octet-stream .msu. I have given the publishin...