New Post: Need help with MSFProj
Hi Mu, This about how to create a new custom project type - Walkthrough: Part 1 - Creating a Basic Project System and Walkthrough: Part 2 - Creating a Basic Project System See the walkthroughs above....
View ArticleNew Post: Need help with MSFProj
I would definitely check that out. Thank you so much :)
View ArticleNew Post: Need help with MSFProj
Hey, I looked at that but still not able to understand how can I add my own files? I don't want to create a new language service, I just want to be able to add specific file types to my new project...
View ArticleNew Post: Need help with MSFProj
Also the created project produces exe and it uses MSBuild. How can I change that:<Project DefaultTargets="Build"...
View ArticleNew Post: Need help with MSFProj
As for adding file types - you have to add Item Template for every type you wish to support. For instance, for text file you should add a vs template (as well as __TemplateIcon.ico and TextFile.txt...
View ArticleNew Post: Need help with MSFProj
How to register that VSTemplate with my project? Also I faced another problem when I was working with the tutorial, the resulted package doesn't replace the tokens (i.e. $guid1$) and as a result, the...
View ArticleNew Post: Need help with MSFProj
Regarding __<OutputType>custom_application</OutputType>__ you could use any string to identify what kind of output you wish. Or.. just handle EXE as shown below in switch. In your...
View ArticleNew Post: Need help with MSFProj
Check the Part 2 link I provided initially http://msdn.microsoft.com/en-us/library/cc826178.aspx Templates should be placed to the right place (see below) and when you register your package IDe gets...
View ArticleNew Post: Need help with MSFProj
Right now I am facing two main problems with the links above: 1- the resulted package doesn't replace the tokens (i.e. $guid1$) and as a result, the project failed to be created because the value of...
View ArticleNew Post: Need help with MSFProj
1 - <ProjectGuid>$guid1$</ProjectGuid> is a GUID of your custom project instance (not the project type GUID). So it should be unique for every new custom project you create. 2 - As for your...
View ArticleNew Post: Need help with MSFProj
Can I send you a copy of my sample? When you run it you would know what I meant by #1. I can't try #2 yes because of #1
View ArticleNew Post: Need help with MSFProj
I think this forum will be very useful MSDN Visual Studio Extensibility (VSX) Forum as I remember that when I was investigating VSX/MPF we discussed a lot of questions there and VSX team from Microsoft...
View ArticleNew Post: Need help with MSFProj
Unfortunately I can't check you sources at the moment as I have no suitable environment configured. Please post it to VSX forum. This way you will get the answers you need and also help other guys to...
View ArticleNew Post: Need help with MSFProj
Did that already. thank you so much for help :) Another question, I tried to add the items template as you suggested above (creating 3 files, icon, text and vstemplate). I marked the build action as...
View ArticleNew Post: Cross-version MPF projects
Is there a generally accepted way of creating a project system that works on multiple version of VS? We'd like to avoid having separate projects when each version would do just about the same thing. Eric
View ArticleNew Post: Cross-version MPF projects
Hi Eric, The simple answer is no. You will need to have several MPF sources to support multiple VS versions. I think, the best way would be to keep MPF separate from your logic. Create several custom...
View ArticleNew Post: Custom frame editor for a collection property
In XAML, if I add TreeView and look at its properties in the Property Editor window I will see an Items property of type (Collection) followed by a [...] button that can be clicked to display the...
View ArticleNew Post: Issue with Colorizer after migrating from VSSDK 2010 to VSSDK 2015
Hi Guys I think where the problem can be. I had a vs extension project with language service which was working OK in VS 2010 but when I updgreded the project to use VSSDK 2015 the colorizer stopped...
View ArticleNew Post: Issue with Colorizer after migrating from VSSDK 2010 to VSSDK 2015
Maybe something related to Notes to Implementers?
View ArticleNew Post: Issue with Colorizer after migrating from VSSDK 2010 to VSSDK 2015
here is the solution to solve the issue IVsFontAndColorCacheManager mgr = this.GetService(typeof(SVsFontAndColorCacheManager)) as IVsFontAndColorCacheManager; mgr.ClearAllCaches();
View Article