clickonce

Using CCNetLabel to set AssemblyVersion and PublishVersion with CruiseControl.NET

≡放荡痞女 提交于 2021-02-19 08:24:06
问题 I am trying to deploy a Click Once application (build and publish) using CruiseControl.NET. I cannot find out where I can use the CCNetLabel to set my AssemblyVersion and/or PublishVersion. I would accept other solutions that would allow a unique version number per CruiseControl.NET deployment (Live and Development deployments). 回答1: You need to write a script for setting your AssemblyVersion. I would recommend using NAnt or MSBuild for that purpose, but PowerShell or a simple bat file will

How to include font to clickOnce installation

廉价感情. 提交于 2021-02-18 16:31:36
问题 Is there any way to include font to a clickOnce installation of a winforms application in visual studio. The program that we are developing requires a font that is not installed in windows by default. 回答1: You can load the font into a res file and have it loaded without being installed to the computer. See: MS: Packaging fonts with applications Bob Powell: Embed Fonts 回答2: Can you create a setup & deployment project to install the font, and deploy it as a prerequisite to the ClickOnce

How to include font to clickOnce installation

混江龙づ霸主 提交于 2021-02-18 16:17:36
问题 Is there any way to include font to a clickOnce installation of a winforms application in visual studio. The program that we are developing requires a font that is not installed in windows by default. 回答1: You can load the font into a res file and have it loaded without being installed to the computer. See: MS: Packaging fonts with applications Bob Powell: Embed Fonts 回答2: Can you create a setup & deployment project to install the font, and deploy it as a prerequisite to the ClickOnce

How to include font to clickOnce installation

懵懂的女人 提交于 2021-02-18 16:16:01
问题 Is there any way to include font to a clickOnce installation of a winforms application in visual studio. The program that we are developing requires a font that is not installed in windows by default. 回答1: You can load the font into a res file and have it loaded without being installed to the computer. See: MS: Packaging fonts with applications Bob Powell: Embed Fonts 回答2: Can you create a setup & deployment project to install the font, and deploy it as a prerequisite to the ClickOnce

How to include font to clickOnce installation

风格不统一 提交于 2021-02-18 16:14:20
问题 Is there any way to include font to a clickOnce installation of a winforms application in visual studio. The program that we are developing requires a font that is not installed in windows by default. 回答1: You can load the font into a res file and have it loaded without being installed to the computer. See: MS: Packaging fonts with applications Bob Powell: Embed Fonts 回答2: Can you create a setup & deployment project to install the font, and deploy it as a prerequisite to the ClickOnce

How to Authenticode sign ClickOnce deployment with an EV SHA2 cert and avoid “Unknown Publisher”

给你一囗甜甜゛ 提交于 2021-02-17 20:46:44
问题 When signing my ClickOnce deployment via Visual Studio's project "Signing" settings page I specified our SHA2 (SHA256) EV Authenticode certificate and publish. After publishing and attempting to run the bootstrapper (setup.exe) I'm presented with the "Unknown Publisher" in the ClickOnce dialog. The EV certificate in question is valid and running on an eToken hardware token with SafeNet client tools to communicating with the token. Signing regular PE files (exe and dll) with signtool always

Clickonce publish with expired certificate

流过昼夜 提交于 2021-02-10 20:13:06
问题 I have this error Error 32 An error occurred while signing: Failed to sign bin\Release\app.publish\setup.exe. SignTool Error: The signer's certificate is not valid for signing. SignTool Error: An error occurred while attempting to sign: bin\Release\app.publish\setup.exe MyProject My certificate expired in 8/23, I've tried to create a new certificate in the signing tab and everything is fine; but when I click publish I get this message: The application is signed with a different key than the

deploy VSTO into one single Installer

删除回忆录丶 提交于 2021-02-09 06:58:09
问题 I have deployed a VSTO application by using ClickOnce and I got this: This installer works real fine. However, what I really want is one single installer, like a single .exe file or a single .msi file , so that it would be much convinenet to distribute. I guess I have to pack all the dll, xml, vsto and exe into one single installer. Does anyone know how to do this? Thanks in advance to anyone who has taken time to look at my problem! 回答1: Check this https://github.com/bovender

ClickOnce install

痴心易碎 提交于 2021-01-29 16:02:43
问题 I've been adding new functionality to a C# 4.0 WinForms application. The application has already been published into Live using ClickOnce and signed with a certificate. So I need to create a new ClickOnce installation so it upgrades the previously installed version. But I've been told not to use the certificate to sign the manifest as the certificate is about to expire. The problem I've got is it doesn't detect that a previous version is already installed, and installs a new installation (so

C# Execute Application Using Process.Start() as params to cmd and active RedirectStandardOutput

≯℡__Kan透↙ 提交于 2021-01-29 14:26:25
问题 I am using Visual Studio Clickones and try to execute (.appref-ms) application and using RedirectStandardOutput ... I have to use the option "Prefer 32-bit" because I am using Access DB with connection string as Provider=Microsoft.Jet.OLEDB.4.0. This is my execution code : var p = new Process(); p.StartInfo = new ProcessStartInfo(@"C:\Users\hed-b\Desktop\PulserTester.appref-ms") { RedirectStandardOutput = true, UseShellExecute = false }; p.Start(); reportNumber = p.StandardOutput.ReadToEnd();