I have an application which is published using ClickOnce deployment to a fileserver, and this works fine. I now have the need to deploy this application to another one of our offices which is on a completely different domain. I can connect to a UNC path, or map a network drive to the path where this needs to be deployed (using differen...
So I am trying to figure out if there is a way to define the files and assemblies I need deployed with a ClickOnce app, from within Visual Studio.
I would like to "Publish" the application and not have to make any more modifications with Mage. Especially for continuous integration.
Is this possible? Can I add something to the app.man...
I have created a solution that comprise of a WPF application and a mobile device application. What I am trying to figure out is how to facilitate the installation of the mobile application.
When I publish and install the WPF desktop application it creates a start menu folder for the application. Optimally I would like to add the mobile ...
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.
...
Hi all,
I have Windows application in csproj in my solution, and I want generate Publish using command line (bat, cmd).
My script is (I put \r\n for better reading):
SET MSBUILD="%SystemRoot%\Microsoft.NET\Framework\v3.5\MSBuild.exe"
SET CARWIN="..\..\Security.CarWin.csproj"
rem msbuild para publish
%MSBUILD% /target:re...
I've a ClickOnce application. On one machine - Windows 7 (works on others) an upgrade failed - the installation is served by Apache.
The entire log is ... long, but the only thing that errors are this:
ERROR DETAILS
Following errors were detected during this operation.
* [26.01.2010 10:55:07] System.Runtime.InteropServices.COMEx...
Hello
I've created a WPF application and obfuscated the main .exe with an external tool.
Now I'm having trouble to publish it as a clickonce application because Visual Studio somehow is recompiling again the main executable.
I deactivated the build checkboxes under Solution-> Configuration manager but it didn't work: the executable ke...
Hi all, I have this trouble:
I am using VS 2008 Team Suite, and I have WinForms csproj. I want Publish it using ClickOnce.
In Publish Properties of csproj, I have these values:
Publishing Folder Location (web site,
ftp server, or file path):
C:\ClickOnce\Frk.Security.CarWin.WebInstall\Publicacion\
Installation Folder URL (...
Hi all,
I use msbuild for using setup -url="location"...
I publish application using ClickOnce and I want changes the url in the setup.exe.
<Exec Command="$(PublishDir)\setup -url=$(ProviderUrl)" />
Another problem is that after using the /url switch to change out the URL, it appears message for manually confirming that the signatur...
I'm in the process of having to install/publish the same ClickOnce application on several different servers - I can't have a central site.
Do I have to publish the same app several times with only the InstallUrl changed, or is there another way ? A programatically solution ?
...
I'm opening ReportBuilder on an instance of SQL Reporting Services 2008 from within a WPF application. When I open it, I call it like this:
string rptBuilderUrl = "http://localhost/ReportServer/ReportBuilder/ReportBuilder.application";
Process.Start(new ProcessStartInfo(rptBuilderUrl));
It opens OK, but it always fla...
HI Guys,
We are providing clickonce solutions to generate reports using Aspose.Slides. and the application works fine in all machines except , for our clients in UK, the application execution is very slow. we thought it might be because of distances to the datacenter, which slows down few downloads, but it even works on lower connectiv...
We're developing a ClickOnce application with a mixture of .NET components and legacy C++ COM components.
Currently we're adding the C++ COM components to the users machine using an MSI (this is a prerequisite to installing our ClickOnce app) which means we can register the COM objects on the user's machine beforehand.
We can still pu...
Hello StackOverflow!
We deploy our application using ClickOnce, installed from a file path. For 24 versions it has been working perfectly - now, on version 25 I get the following error once the application has installed and it launches:
If I test a previous deployment on the same machine, it works.
Where can I even begin to look to...
Hi,
I have a simple WPF application that uses ClickOnce to handle installing. Within this application is a compact database. Through testing I have found that when I publish a new build this database will get overwritten, which is not what I want. Is there anyway I can have fine grained control over what files are updated? I assume Clic...
Hi all,
I have WinForms application .net 3.5. I deploy it using clickonce in intranet with several client machines. I publish application in intranet web server (http://desbiz/CarwinClickOnce).
In developer environment (my PC), my application uses GAC assemblies, like Fk.Security.Common.dll v.1.0.0.0.
In tab Publish -> Application fi...
Hi All
Just wondering if there's a way to make Visual Studio 2008 Express Edition generate normal exe files that are created by the installer for my app?
I am sick of the ClickOnce application files. I had all these file associations setup and now that I need to actually have an installer for my apps, the file associations setup in the...
Hi all,
I am using VS2008 to publish my application files using ClickOnce. I read somewhere that ClickOnce intelligently does only partial updates; meaning it only downloads files from the network share if the file has changed in subsequent updates. However, this wasn't working for me. So I did some research and stumbled upon this MSDN ...
Underlying problem I was trying to solve is to apply custom key bindings for internal VSTO Word addin methods (develiped in C#):
Globals.ThisAddIn.Application.KeyBindings.Add(
Word.WdKeyCategory.wdKeyCategoryCommand,
"MyMethodName",
myKey,
ref _missing,
ref _missing);
Well, the problem is that this code alw...
Is it possible in any possible way to add to/change the .application file (or another way) of a ClickOnce deploy file to allow parameters to be specified without the need for the parameters to be passed via the URL?
The assembly may be compiled at run time/re-signed/etc, or stated otherwise, I am not worried about the bounds of "what el...