deployment

TFS 2010: Copy _PublishedWebsites to test server

眉间皱痕 提交于 2019-12-23 00:52:24
问题 I've seen similar questions and answers but found them not really what I want. I have a large solution with several web projects in it. All the web projects share some common code so they are all part of the same solution (there is a common project that is referenced by all of them). I've been running on Team Foundation Server 2008 and we are upgrading to TFS 2010 to be ready for our move to visual studio 2010 and .net 4.0. I've got the build working with a 2010 build by creating a new build

Manual XBAP publishing

拟墨画扇 提交于 2019-12-23 00:29:07
问题 I found a method to manually publish a regular WPF Application, but i need the same instructions for a WPF Browser app instead. Here is the regular WPF App howto: http://msdn.microsoft.com/en-us/library/xc3tc5xx(VS.80).aspx . If anyone knows what changes I need to make to my mage commands to make it work for XBAP please let me know. Thanks. 回答1: I had to alter the name of the default "Application Files" folder for one of our customers who doesn't like spaces in file or folder names and this

Heroku Push Rejected some references to some heroku app I don't have

南笙酒味 提交于 2019-12-22 21:17:13
问题 I've got the following errors when I tried to push to staging on Heroku. I don't understand why. $git push staging-heroku staging:master Counting objects: 72, done. Compressing objects: 100% (64/64), done. Writing objects: 100% (72/72), 5.06 MiB | 837 KiB/s, done. Total 72 (delta 27), reused 0 (delta 0) -----> Fetching custom git buildpack... failed ! Push rejected, error fetching custom buildpack To git@heroku.com:pure-reef-7664.git ! [remote rejected] staging -> master (pre-receive hook

Deploy webapp to Tomcat after Maven build on Jenkins

别说谁变了你拦得住时间么 提交于 2019-12-22 18:12:06
问题 i'm trying to copy the webapp.war to the tomcat's webapp folder after the maven build on the jenkins has finished. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <id>copy-webapp-to-tomcat</id> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <target name="Deploying webapp to Tomcat."> <copy todir="${tomcat.webapps.dir}" force="true"> <fileset dir="${project.build

Missing architecture. Apps built with Watch OS 5.0 and later SDKs must contain additional architectures

余生颓废 提交于 2019-12-22 18:07:46
问题 ERROR ITMS-90733 The WatchApp target is using “armv7k” under valid architectures; and the WatchApp Extension is using both “armv7k” and “i386” under valid architectures. When I build and try to deploy and build to the AppStoreConnect, I get the error message attached in this post. I tried several combinations of arm64_32, armv7, and armv64 but no luck! Any help is much appreciated. Thank you. 回答1: try add arm64_32 architecture in your watch extension build setting, not watch . 回答2: I solved

CSS doesn't load in production - everything fine in dev (Rails 4.1, Capistrano 3; bootstrap), update: nginx config issue

喜欢而已 提交于 2019-12-22 14:58:31
问题 Problem is as follows: Everything works fine in development, but when I deploy my rails app to production, the site works in plain html, but CSS (bootstrap) doesn't get loaded (JS probably also not). Sorry, I looked for 2 days at ~15 possible solutions and could not make it work... Update: After following @rich-peck's advice, it looks like it's a server issue. Updated with nginx config My setup: Ruby 2.1.2, Rails 4.1 Rbenv mysql2 as db Bootstrap 3 Ubuntu 14.04 on Server with nginx and

Can I just drop vjslib.dll into the /bin directory of my application?

只愿长相守 提交于 2019-12-22 14:54:48
问题 I am in the middle of a production deployment. Unfortunately I am deploying to a tightly controlled environment. It is unlikely I'm going to get clearance tonight to run the full Visual J# redistributable EXE. Our app is currently throwing errors saying that it can't find the assembly "vjslib.dll". Can I just drop this into the bin of our app and have everything work without all the hassle of the full-blown EXE install for the server? 回答1: The vjslib.dll file is a redistributable file. You

How to install redistributable package of .NET Framework with Wix?

て烟熏妆下的殇ゞ 提交于 2019-12-22 13:55:18
问题 I have a general task: install .NET Framework 3.5 during the setup of my product. I do the following: I have created a custom action X Custom action X starts an executable Y via Process.Start() Executable Y kills the msiexec process and run .NET Framework setup package Here appear some problems: .NET Framework setup says that Windows Installer Service is not accessible and asks to terminate all another installations! I think, the cause of it is that Process.Kill() method terminate the process

How do I know when a Java EE app is undeployed?

我与影子孤独终老i 提交于 2019-12-22 13:09:11
问题 I need to close some streams when my Java EE app is undeployed to avoid pages of exceptions in the server.log every time I undeploy. The Exceptions say: "Input stream has been finalized or forced closed without being explicitly closed". I know how to close (with the close() method), but I dont know when. finallize() comes too late, @PreDestroy is called not only before undeploying but also in normal operation mode. How does the app know, when it is undeployed? Edit: I call this during

How do I know when a Java EE app is undeployed?

久未见 提交于 2019-12-22 13:08:13
问题 I need to close some streams when my Java EE app is undeployed to avoid pages of exceptions in the server.log every time I undeploy. The Exceptions say: "Input stream has been finalized or forced closed without being explicitly closed". I know how to close (with the close() method), but I dont know when. finallize() comes too late, @PreDestroy is called not only before undeploying but also in normal operation mode. How does the app know, when it is undeployed? Edit: I call this during