I would like to get started with the Visual Studio 2010 SDK and create integration packages. All I would like to do now is to provide a new type of project and language service. However, I do not know how I should design it ...
The package will provide an editor for a programming language that compiles for x86 or ARM processors. The problem is that depending on which processor you are developing for, there are several language differences. However, I would prefer not to have a separate project type for each architecture. Preferably, the programmer chooses the architecture when creating the project, and the package automatically downloads certain parts, such as the correct language service, configuration settings, and any special tools and dialogs related to this architecture.
How should I do it? I read about flavored projects, but I really donβt understand how to implement them. This is what I need?
source
share