clickonce

Publish WPF clickonce application to github

早过忘川 提交于 2019-12-23 04:47:07
问题 I have published my wpf project to the dir publish and it is under source control (github) So I want to add a download link to my readme.md and according to: Is it possible to offer a ClickOnce installer on Github? I should just add this in my markdown: [Download the app](https://rawgithub.com/jphellemons/downloadyoutube/master/publish/setup.exe "Download the app") I added https://rawgithub.com/jphellemons/DownloadYouTube/master/publish/ in the second publish step: but that does not work.

Deploying MEF parts

泄露秘密 提交于 2019-12-23 04:39:18
问题 I have built an executable shell that using MEF loads assemblies (MEF Parts) and displays / acts accordingly to the loaded functionality. I now want to deploy this application as a ClickOnce install. Does anyone have a strategy for this, at the moment I have seen 2 strategies. Build and installer for the parts and add it as a Redistributal Component to the shell application - this means that the 2 installations are basically welded together and it means that MEF is basically pointless Build a

ClickOnce and configuration for a C# application

白昼怎懂夜的黑 提交于 2019-12-23 03:22:42
问题 What and how should I put into an app.config file. The scenario is this, I have created a C# Windows Forms application (.NET 4.0), and it runs fine on the development computer. When I deploy it using ClickOnce on other computers I get a permission error for the machine.config file. This is a corporate domain so I do not have rights to change the permissions in the machine.config file on the target computers. From what I have been reading, I believe that whatever is being accessed in the

Mac - Launch desktop application from browser passing parameters

流过昼夜 提交于 2019-12-23 01:57:12
问题 I have written a click-once deployed application in .Net that runs on windows machines. I had a requirement to launch the application from a browser so that I can pass information to the application based on the current browser session (the HTTPHeadercontains a single-sign-on id that needs to be passed to the application so it can call secured web services). So the click-once application is provided as a link on a jsp, and the required id is passed as a querystring parameter in the link,

Installing SQL Server 2014 Express package as ClickOnce prerequisite

倾然丶 夕夏残阳落幕 提交于 2019-12-22 11:37:34
问题 I'm using clickOnce and deploying an installer with it. I have tried various settings. Using SQL Server 2008 Express and SQL Server 2012 Express as prerequisite is all ok (I've dowloaded them and set the option of clickonce "download prerequisites from the same path of app"). Now I'm trying to do the same thing with SQL Server 2014 Express. Since the SQL Server 2014 Express package isn't alredy done line 2008 and 2012 versiones, I'm trying to create it. I have done and it seems to work, but

is it possible to run clickonce application with Mono?

荒凉一梦 提交于 2019-12-22 09:10:00
问题 i'm developing clickonce application which, potentially, i would like to distribute on Mac platform. I know i can compile .Net application wtih Mono - and it will work on Mac. But can I use clickonce as the installer then? thanks! 回答1: I don't think Mono team has ever implemented the ClickOnce .NET APIs that make this possible. However, I think it should be kind of straightforward to implement them. That being said, it might be wiser to just use the Mac backend for Squirrel. (Which is a

What certificate do I need for code signing?

北慕城南 提交于 2019-12-22 08:13:16
问题 I'm trying to sign a ClickOnce .NET Application. I have a SSL cert that I use on a website, but I'm thinking that it is not up to the job. When I select the cert in Visual Studio I get an messsage box saying ' The selected certificate is not valid for code signing. Choose another certificate file '. The cert details look like this: whereas a temporary cert generated in VS looks like this: It seems to have a lot more going for it in terms of looks and general charisma. Do I need to get a new

Install VSTO WITHOUT using Clickonce

[亡魂溺海] 提交于 2019-12-22 04:13:18
问题 I just created my first VSTO Add-In for Excel. I'm trying to find a way to install the add-in on the end users machine easily. If I copy the the .dll and try to add it from the COM Add-Ins manager in Excel I get this error: <ProjectName>.dll is not a valid Office Add-in. If I use the publish wizard, it does not give me an option to select where to install the files on the client PC. Instead, it uses the path to the installation files. So, how can I install my VSTO add-in without using the

MSBuild ClickOnce error: “Deployment and application do not have matching security zones”

丶灬走出姿态 提交于 2019-12-22 02:33:22
问题 We're trying to publish a ClickOnce application through MSBuild. We've got it working fine for an installed version of the Windows application. However, when we set install to false, so that it just runs the application from the web, we get the following error when we try to run the application from the URL: "Deployment and application do not have matching security zones" This works fine in Internet Explorer. We only get the error message in Chrome and FireFox. Here is a sample of the project

Unable to install application deployed with ClickOnce in Visual Studio 2015 (stdole.dll)

让人想犯罪 __ 提交于 2019-12-21 21:38:06
问题 Application is running in .net 4.5, built and deployed with ClickOnce in VS 2012. When build and deploy same application, without changing any settings in VS 2015, I am unable to install it on client side ? Got following error: "Strong name signature not valid for this assembly stdole.dll" When I exclude stdole.dll from deployment installation is ok. My question is: How to deploy application in VS2015 with stdole.dll included ? 来源: https://stackoverflow.com/questions/34019682/unable-to