Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 1 year ago.
Improve this question
I have a WPF application published via ClickOnce. When deleting it, I also need to delete some files that are no longer needed by the user.
ClickOnce doesn't seem to support adding custom install or uninstall actions.
Please advise some installer that would support custom uninstallation actions.
I would suggest Inno Setup, that supports a lot of scripting and is open source. (https://jrsoftware.org/isinfo.php)
It will allow you to perform an action like:
[UninstallDelete]
Type: filesandordirs; Name: "{localappdata}\<my game folder>"
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
Mine is a .NET and Sitecore based application. How do I check for my application if it's using ImageMagick or any related plugin or not?
Normally, a .NET library (such as Magick.NET) would be used. Look through every project's references to see if any of them says "Magick" or "ImageMagick".
In some projects, ImageMagick may be invoked directly, since it's a command-line tool. To find if that's the case, just use full-text search in your solution. Go to menu Edit –> Find and Replace –> Find in Files, select "Entire Solution" in the "Look in" drop-down list, and search for "magick".
To see whether there are any ImageMagick binaries in the solution, open your solution's folder in Windows Explorer, press Ctrl+F and search for "magick" and "imagemagick".
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to use compression of some files but GZipStream can not archive many files in one zip only! So I want to use this
http://icsharpcode.github.io/SharpZipLib/
But I have no idea how to install/use/import custom libraries. What should I do?
Right-click your project and select "Manage NuGet Packages..."
Search for "SharpZipLib".
When it populates the list, install it
The installation process should add the necessary reference[s] to your project's References folder
You might then need to add a "using" for the library to the class where you want to add the code. It's possible, though, that you can just right-click the code and select "Resolve" to have the "using" automatically added for you.
Then look at the library authors' documentation for usage.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Is it possible to run a source control on a team project in Visual Studio ?
Yes, both TFS and VSO provide the same capabilities for developers working together to build a single product.
https://www.visualstudio.com/features/version-control-vs
You would be best using Git if you are just starting out, or TFVC if you already have a large legacy codebase.
You would also be best using VSO (TFS Online) as it is much easier to setup and support.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I'm having trouble creating an installation program for my Winforms application. I am using the Windows Installer and the publish function. It creates a nice setup program. After I run the setup on a client machine, I want to update the App.config file to point to a different database than was used for the setup. I have this setting in the app.config file. However, I am not able to update the app.config file on the client's machine. Temporarily, I am creating a new build when I want to change the database that the application points to.
Duplicate of...
Setup App.Config As Custom Action in Setup Project
?
The answer looks good...
http://raquila.com/software/configure-app-config-application-settings-during-msi-install/
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
Guys I have made a medical mangment system in c# using windows form application on visual studio and SQL Server.
Now i want to install it on other desktop.
How can i do this ? I want to give him a only .exe file and installing it it should work as it works now own my Laptop.
Bundling SQL express into an existing application is a complex process, not easily described in one post. I would suggest starting with http://msdn.microsoft.com/en-us/library/dd981032(v=sql.100).aspx, then make a new question for any challenges you encounter.