Generating Setup Project from visual studio community installer - visual-studio-setup-proje

I have generated visual studio installer from Microsoft visual studio community version. i want to ask is there any difference of installer generated from visual studio community version and visual studio enterprise version OR visual studio ultimate version ?

The installer project extension is the same, assuming that's what you're referring to. There are no extra (or missing) features that depend on your version of Visual Studio.

Related

What Visual Studio workloads are needed for building VS extensions?

We've already added the Visual Studio workload Visual Studio Extensions Development, but that doesn't seem to be enough. So, are there other workloads that should be installed on a developer's machine, to author VS extensions?
Addendum
I should mention that the users struggling to add Visual Studio Extension Development are using Visual Studio 2019 Community Edition. I would think this would work, but I could be wrong. Can you do Visual Studio development with the Community Edition?
Visual Studio extension development + .NET desktop development workloads should be enough for most VS extensions.
Visual Studio 2019 Community Edition is perfectly fine to do Visual Studio development.

Is there a Visual Studio Installer Project type for Visual Studio 2019?

I am trying to build a VS 2017 solution which includes a Visual Studio Installer Project with the just released Visual Studio Pro 2019. Of course, when I tried to open the solution I got an error because there was not Visual Studio Installer project type in VS 2019. And, I cant find a place to load it from.
How do I add a Visual Studio Installer Project type in the released version of VS 2019?
Install the addin in Visual Studio 2019:
This extension provides the same functionality that currently exists
in Visual Studio 2015 for Visual Studio Installer projects. To use
this extension, you can either open the Extensions and Updates dialog,
select the online node, and search for "Visual Studio Installer
Projects Extension," or you can download directly from this page.
This extension is designed to work with Visual Studio 2017 and
Visual Studio 2019.

How to select the Visual Studio version to use on the build machine?

We have a buildmachine that currently has installed Visual Studio 2010 to compile our application.
Now we have moved to Visual Studio 2015 and developers have installed it on their machines and modified the solution so it works with 2015 but the previous versions will continue to build with 2010.
I was going to install Visual Studio 2015 on the build machine but I don't know how the build machine will know that the previous branches must be built with 2010 and the new ones with 2015. With some Msbuild settings? Just looking at the sln? By other means?
With some Msbuild settings? Just looking at the sln? By other means?
Open your .sln file with Notepad. Look for Format Version on the first line which correlates with a Visual Studio version.
•Format Version 11.00 is Visual Studio 2010
•Format Version 12.00 is Visual Studio 2013 && Visual Studio 2013
For visual studio 2013 and visual studio 2015, we could find the visual studio version on the third line. like this:
visual studio 2013: VisualStudioVersion = 12.0.30501.0
visual studio 2015: VisualStudioVersion = 14.0.25420.1
As far as I know it does it looking at the ToolsVersion on every .csproj. VisualStudio is not required as MsBuild and the compiler come with the .Net Framework.

Create plugin in Visual Studio 2015 compatible with previous versions

Is that possible to create plugin into Visual Studio 2015 which will be compatible and could be installed into different versions of Visual Studio 2013/2012/2010 ? How to do it if so ?
Update:
I know that I can create different versions of plugin/solutions for/in different visual studios, but I was wondering if there is possibility to create one solution in Visual Studio 2015.
A Visual Studio extension can support multiple versions of Visual Studio specifying them in the VSIX Manifest. Plus your extension should reference dlls present in all versions of Visual Studio, typically referencing the version of lowermost targeted VS version.

I had installed installshield in my system but when i go to visual studio its not showing up in new project....why?

I had installed installshield in my system but when i go to visual studio-> file->new project , there is no installshield in new project...why its like that can any one give me a solution for that.I am using visual studio Express 2013.
Thank you
Visual Studio Express doesn't support extensions / addins / project templates and so on. Switch to Visual Studio Community Edition or better.

Resources