deployment

How do you deploy an ActiveX control for ie from a VS2008 project?

白昼怎懂夜的黑 提交于 2019-12-23 03:44:25
问题 What are the steps to deploying a project created in VS2008 (windows forms and c#) as a ActiveX control hosted in ie? I have a file uploader project that I want to be hosted on a webpage that users can navigate to, click 'trust this active x control' and the application runs on the page in the browser, just like a java application. To be clear, I'm not looking for ClickOnce (that is an installer) and I don't want the user to have to modify their .Net security or add a trusted site (so just

Angular: setting baseHref does not create subfolders

ε祈祈猫儿з 提交于 2019-12-23 03:37:18
问题 When you run ng build with --base-href "/some/path/" , why does angular not create subdirectories according to the path? When I start a http-server in my /dist/ I get errors like GET /some/path/assets/images/image.png Not Found! thrown in my face. when you look into /dist/ , the problem is clear: there is only the assets folder directly, not inside other folders. So what is the right way to set a baseHref? What I try to accomplish is having different versions of the app (with different i18n

Qt and Qt application prerequisites

与世无争的帅哥 提交于 2019-12-23 03:30:49
问题 I am new to Qt, and I am working in Windows 7. When I try to run my application directly, I see an error about missing some DLLs. I tried to fix them, but I could not (I tried to build statically). Is there any correct solution? My question is: If I want to run my Qt application on other computers, what do I need? For example, for a .NET application we need to install the .NET framework on the target computer, but what about for Qt? I searched for its SDK and found a SDK that was about 1.6 GB

What are some alternatives to Java Web Start for executing outside of the browser sandbox?

我与影子孤独终老i 提交于 2019-12-23 03:18:35
问题 I'm looking for a method to deliver my thick client software to intranet users through a browser. Ideally, the user could click a single button on the page, and something local to the machine would execute the software (similar to how Java Web Start works.) Are there any alternatives to Java? I really like the experience provided by Spoon. I see something called 0Install, which sounds like a non-Java web start. What is the experience like? Are there other alternatives I should consider? 回答1:

Deploy 2 Sites on same Apache server

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-23 03:14:12
问题 I need to deploy my Rails app to a server that is already serving a PHP site at its root. I can't touch the existing site, and I have to deploy my app at a sub-url or sub-domain, ie xx.xx.xx.xx/rails or rails.xx.xx.xx.xx . The Apache config I normally use to deploy my app: <VirtualHost *:80> ServerName localhost DocumentRoot "C:/RubyStack-3.2.5-0/projects/app_name/public" <Directory "C:/RubyStack-3.2.5-0/projects/app_name/public"> Allow from all Options -MultiViews </Directory> RewriteEngine

How to deploy a desktop .Net application with custom settings per user

折月煮酒 提交于 2019-12-23 02:53:36
问题 This seems like a simple question but the intergoogles have not been kind. I have a C# desktop application. There are certain properties that need to be customized per customer, such as each customer's organization's name, that are otherwise independent of the actual functionality of the application and therefore do not need to be compiled into it. What is the best/preferred method to pull this data out of the application, manage it in VS (2008), and deploy it to customers' desktops? For

How to deploy a desktop .Net application with custom settings per user

对着背影说爱祢 提交于 2019-12-23 02:53:00
问题 This seems like a simple question but the intergoogles have not been kind. I have a C# desktop application. There are certain properties that need to be customized per customer, such as each customer's organization's name, that are otherwise independent of the actual functionality of the application and therefore do not need to be compiled into it. What is the best/preferred method to pull this data out of the application, manage it in VS (2008), and deploy it to customers' desktops? For

One django instance one database vs different django instances

*爱你&永不变心* 提交于 2019-12-23 02:52:56
问题 I am building a software that will store and manage doctor's data. I would like to ask something that came to me and has to do with how I want to deploy my project. At first I wanted to have different django instance for each client. Each clinet would have his own database and run seperatelly from the others. But I am not sure I can automate this procedure, because for each instance I need to have different database, different password different db username, something that I am not sure It

How to deploy a COM

核能气质少年 提交于 2019-12-23 02:52:27
问题 I just finished building my new COM project (C#, .NET 3.5). This project will be called by a VFP application. It's working great on my development machine, but now I need to know how to deploy it on the user's machine. Click Once isn't available for this kind of project, so I guess I'm stuck with manually distributing the DLL. So, where should I put the DLL and how do I register it? BTW, the 3.5 framework is already installed on the user's machine. TIA 回答1: I've really never used RegSvr32

Deploying Umbraco v8 app to Azure using Azure DevOps

末鹿安然 提交于 2019-12-23 01:47:29
问题 Has anyone used Azure DevOps to deploy an Umbraco v8 application to Azure? I can successfully deploy via Visual Studio, but Azure DevOps only seems to copy over all the dlls to the target, no views or anything, and a zip does not get generated. If anyone has managed this could they share the steps they took please? The steps I have in the pipeline are: Build Test Deploy Publish Symbols Copy File to Publish Artifact What I did notice is that I need a publish profile to successfully publish