setup-project

How to use this library in Android?

时光怂恿深爱的人放手 提交于 2019-12-04 19:08:05
I want to make some ActionBar for my application using this library: https://github.com/johannilsson/android-actionbar but I don't know how to import it in my android project. There is no jar file. How can I do? Flo First, make sure you're using the latest version of the Android SDK, things have improved dramatically within the last few months. Install the android-actionbar source code, either downloading it and unpacking it, or (preferably) using git to clone the repository on your system. (I strongly recommend using the mimic-native-api branch as it is the most up to date.) Import the

SQL Server 2017 Express missing from visual studio setup wizard prerequisites

孤街醉人 提交于 2019-12-04 18:38:22
I have installed Microsoft Visual Studio 2017 Installer Projects , but SQL Server 2017 express is missing from prerequisite How to add SQL Server 2017 Express? (I'm using WPF project with .NET Framework 4.6.1). I tried SQL Server 2012 Express and got the following error: WARNING: Item 'SQL Server 2012 Express' could not find any of dependent items '.NETFramework,Version=v4.5, .NETFramework,Version=v4.0'. ERROR: To enable 'Download prerequisites from the same location as my application' in the Prerequisites dialog box, you must download file 'SqlExpress2012\SQLEXPR32_x86_ENU.EXE' for item 'SQL

Setup Project for Visual Studio

折月煮酒 提交于 2019-12-04 18:20:13
If I right click the setup project and go to "User Interface". We will see "Start". if I right click and choose "Add Dialog" At Add Dialog, Choose "Customer Information" If I go to the properties of "Customer Information", there is a tab called "Serial Number Template". It is to check whether the correct number is typed in when the program is installed. I m not sure how does it work. Anyone? I don't really know what your question is. Yes, the "Serial Number Template" allows you to add a form to your setup program that verifies whether the user has entered a valid serial number and if the

Duplicate messages in output when building VS 2013 setup project

天大地大妈咪最大 提交于 2019-12-04 16:52:29
问题 I have a VS2013 setup project that builds the setup that installs the exes produced by two C# projects. When I build the setup project I get duplicate messages as if there are two build processes. I removed one of the two exes from the output of the setup project but I still get the duplicate messages. ------ Starting pre-build validation for project 'SetupWindowsService' ------ ------ Starting pre-build validation for project 'SetupWindowsService' ------ ------ Pre-build validation for

Visual Studio: How to automatically uninstall previous installed version?

旧巷老猫 提交于 2019-12-04 16:26:48
问题 I have a simple Web Setup project that reads from a Deployable Project. Even though I have set the Setup to DetectNewerInstalledVersion to false I always get that annoying alert box that a previous installation exists and I need to go to the Control Panel and find the software to remove it... Is there a way to add a script in a new new installation Dialog that could say A previous version was found, press NEXT to uninstall it. ? 回答1: In my case I found out that the setup project wasn't part

Visual Studio setup project: run CustomActions/process as current user not system account

家住魔仙堡 提交于 2019-12-04 14:13:23
问题 I'm using a setup project in visual studio 2010 for a c# outlook add-in (Office 2010/2013) and an other standalone tool. During the installation I kill all instances of outlook, afterwards I want to restart an instance of outlook. In my addin project I added an installerclass and added an InstallEventHandler(AfterInstallEventHandler) where I execute Process.Start("Outlook"); While the same command simply opens Outlook in an other compiled class, in the context of the installer outlook opens

How to install a file in app data in setup project (C#)

本小妞迷上赌 提交于 2019-12-04 09:57:13
I want to install my database to a separate folder (@ C:\Users\User1\AppData\Roaming\Company1\database.mdb) I'm using a C# setup project. How can I do it? Right-click on the project and select View -> File System in the new File System screen, right-click the root node (File System on target Machine) and select Add Special Folder -> User's Application Data Folder Select the newly added folder form the treeview and create any sub-folder structure you need Finally select your destination folder, right-click, Add -> File and select the .mddb file. Right click on your Setup project -> View -> File

Variables in Shortcut Arguments ignored for Visual Studio setup project

帅比萌擦擦* 提交于 2019-12-04 09:05:29
I was looking for an alternative for an uninstall in a setup project (while reading this ) and tried the following, which sadly fails: I made a Setup Project for a dummy application in C#. I added the output from its build and an Uninstall.bat file with this inside: echo %1 msiexec /x %1 I then added a shortcut to that file with [Product Code] in the shortcut's Arguments field: My rationale was that Uninstall.bat would be called with the product code (resolved) as an argument. After setting that up, no dice, the argument isn't passed along to the installer from the shortcut. The output from

What is the standard way to organize Android code in project [closed]

拈花ヽ惹草 提交于 2019-12-04 07:54:27
问题 Closed . This question is opinion-based. It is not currently accepting answers. Want to improve this question? Update the question so it can be answered with facts and citations by editing this post. Closed 4 years ago . I'm new in android, I want to know what is the right way to write a code in an android project or which architecture or model should we use in our project example n-tire, MVC or other? 回答1: check out this thread: Tips on organizing larger Android projects? and this one: MVC

Setup Project is adding built in .NET Framework .System assemblies to output

那年仲夏 提交于 2019-12-04 07:03:59
I'm using VS Community 2015, with Setup Project extension . I've never seen this problem working with 2010. The problem is that when I add a project to the output, the Detected Dependencies list all dll's I've used in the project, including the built in ones: After I run the installer, it then proceeds to install a hundred dll files, including files that should be part of .NET Framework, like: System.IO.dll System.Linq.dll I made sure that: I have all my projects set to .NET 4.5.2 inside Setup Project, I have the target .NET framework set to .NET 4.5.2 inside Setup Project, I have the