deployment最新書籤


Icon_arrow_right 1038 天前 
1006882

ASP.NET MVC 開發心得分享 (9):發佈 MVC 網站的方式 Popup

ASP.NET MVC 開發心得分享 (9):發佈 MVC 網站的方式 Popup

原文來自 Will 保哥
Will 保哥 收藏於 2009/07/27
ASP.NET MVC 開發心得分享 (9):發佈 MVC 網站的方式

之前曾經寫過【ASP.NET 網站部署可考慮使用 Web Deployment Project 】而我們所有的 ASP.NET 專案也幾乎都用 WDP 部署網站,連 ASP.NET MVC 也不例外。但我們之前有個專案因為需要開發多國語系網站,因此會用到 App_GlobalResources 目錄放置網站所需的資源檔(*.resx),在透過 WDP 封裝部署之後就會全部編譯成組件,而且預先編譯(Pre-compiled)過的網站是不允許動態編譯的,也就是說透過 WDP 部署含有資源檔的專案會造成日後資源檔維護的困擾。    繼續閱讀...

之前曾經寫過【ASP.NET 網站部署可考慮使用 Web Deployment Project 】而我們所有的 ASP.NET 專案也幾乎都用 WDP 部署網站,連 ASP.NET MVC 也不例外。但我們之前有個專案因為需要開發多國語系網站,因此會用到 App_GlobalResources 目錄放置網站所需的資源檔(*.resx),在透過 WDP 封裝部署之後就會全部編譯成組件,而且預先編譯(Pre-compiled)過的網站是不允許動態編譯的,也就是說透過 WDP 部署含有資源檔的專案會造成日後資源檔維護的困擾。繼續閱讀
Icon_arrow_right 1171 天前 
1006882

Web Deployment Project 如何自訂 AfterBuild 目標(VS2008) Popup

Web Deployment Project 如何自訂 AfterBuild 目標(VS2008) Popup

原文來自 Will 保哥
Will 保哥 收藏於 2009/03/15
Web Deployment Project 如何自訂 AfterBuild 目標(VS2008)

在我上次介紹 Web Deployment Projects 的文章中有提到你可以自行修改 Web Deployment Project ( WDP ) 的專案檔( *.wdproj ) 的內容,因為此專案檔實際上是透過 MSBuil...    繼續閱讀...

在我上次介紹 Web Deployment Projects 的文章中有提到你可以自行修改 Web Deployment Project ( WDP ) 的專案檔( *.wdproj ) 的內容,因為此專案檔實際上是透過 MSBuil...繼續閱讀
Icon_arrow_right 1218 天前 
1124606

ASP.NET 網站部署可考慮使用 Web Deployment Project Popup

ASP.NET 網站部署可考慮使用 Web Deployment Project Popup

原文來自 Will 保哥
Will 保哥 收藏於 2009/01/27
ASP.NET 網站部署可考慮使用 Web Deployment Project

Web Deployment Project (WDP) 是一個在 Visual Studio 外掛上去的專案類型,主要目的是提供你將現有 ASP.NET Website Project (網站專案) 或 ASP.NET Web Ap...    繼續閱讀...

Web Deployment Project (WDP) 是一個在 Visual Studio 外掛上去的專案類型,主要目的是提供你將現有 ASP.NET Website Project (網站專案) 或 ASP.NET Web Ap...繼續閱讀
Icon_arrow_right 1407 天前 
Icon_arrow_right 1422 天前 
Icon_arrow_right 1684 天前 
Icon_arrow_right 1765 天前 
701055

deploy rails application « GD’s blog Popup

deploy rails application « GD’s blog Popup

elleryq 收藏於 2007/07/31
I want to deploy my rails application, so I spent a few time to search related articles. In my opinion, the easiest way to deploy your application is to use virtual host. the second choice is to use the Alias mechanism of web server. HowToUseRailsWithAliasedURLs HowToInstallApplicationsInSubdirectories HowToSetTheBaseURLsOfYourRailsApps HowToUseRailsWithRewrittenURLs HowtoDeployMoreThanOneRailsAppOnOneMachine HowtoUseSymLinksToGraftRailsOntoYourWebsite
Icon_arrow_right 1771 天前 
685494

Tip/Trick: Creating Packaged ASP.NET Setup Programs with VS 2005 - ScottGu's Blog Popup

Tip/Trick: Creating Packaged ASP.NET Setup Programs with VS 2005 - ScottGu's Blog Popup

elleryq 收藏於 2007/07/25
You have built an ASP.NET Web Application using Visual Studio 2005, and want to enable customers to automatically install and deploy it on servers via an easy setup program. Specifically, you want to create a standard Windows setup program that will create and configure the application on IIS, copy all of the application’s files to the appropriate location on the server, and ensure that ASP.NET 2.0 is correctly mapped to run the application. You also want the setup program to prompt the customer for the database location that the new application should use, and have the setup program automatically update the web.config file with the database connectionstring settings the customer provided. One solution to consider using is the built-in "Web Setup Project" support that is built-in to Visual Studio 2005. Web Setup Projects can be used to pipe the compilation outputs from VS 2005 Web Application Projects as well as Web Site Projects (when used with VS 2005 Web Deployment Projects), to create encapsulated Windows setup programs. The below walkthrough demonstrates step-by-step how to create and use one.
Icon_arrow_right 1798 天前 
618437

Brad Abrams : Silent install of the .NET Framework Popup

Brad Abrams : Silent install of the .NET Framework Popup

elleryq 收藏於 2007/06/28
For .NET FX 3.0: the magic command line is: Dotnetfx3.exe /q See this white paper for more details. Oh, and if you are still on .NET Fx 2.0, the command is: Dotnetfx.exe /q:a /c:”install /q” And you can find more out here.
Icon_arrow_right 1811 天前 
586204

使用VS2005的 ClickOnce 技术实现按需下载组件 Popup

使用VS2005的 ClickOnce 技术实现按需下载组件 Popup

elleryq 收藏於 2007/06/15
默认情况下,首次运行 ClickOnce 应用程序时,会下载该应用程序中包含的所有程序集。但是一些特殊的场景我们可能不希望它这么干,而是希望按照一定规测或者需要用到某个组件的时候再下载。 比如我们可能会有下面一些应用场景的需求: 1、我开发的这个客户端程序是要收费的。但是免费用户也可以使用部分功能。我在技术实现上把收费用户使用的功能封装到了A.dll 组件了,我希望免费用户根本无法获得A.dll,只有收费用户才能获得A.dll,并加载A.dll中的收费功能。 2、我整个应用程序非常大,我不希望我每次更新,用户都需要把所有应用程序都下载下来,用户应该只需要下载他用到的功能组件。
Icon_arrow_right 1812 天前 
584395

Lighty RoR 最簡潔有力的網頁框架: 把你的 Rails App 打包成 RPM Package Popup

Lighty RoR 最簡潔有力的網頁框架: 把你的 Rails App 打包成 RPM Package Popup

elleryq 收藏於 2007/06/14
剛剛看到 gigix 寫的 Create RPM For Your Rails Application,這是一個叫做 rpmpackager 的 rails plugin,目的是將你的 Rails App 打包成 RPM Package。我覺得這個東西假設配合 RubyWorks ,是一個在 Fedora Like Linux 上面還算是不錯的 deploy 的好作法。
[推薦] 點點印,把你的照片變成寫真書/照片書!
[2012] 做自己的畢業紀念冊畢業禮物推薦

這些內容是怎麼產生的?

黑米沒有編輯,所有內容都是使用者貢獻。網站每天會分析最近最多人收藏的書籤,越多人收藏,排在越上面。綠色的數字代表收藏推薦的人數。

書籤心得

需要幫忙嗎?
黑米小工具

黑米數位版權所有 Copyright© 2006-2008 HEMiDEMi. All Rights Reserved.