Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
1k views

Visual Studio 2010 Extensibility, MPF and language services

I am trying to extend Visual Studio 2010 RC to be able to use a custom programming language. The first two things I've tried to do is a syntax highlight/Intellisense feature (easily done, thanks to ...
6
votes
1answer
391 views

How to create custom project that inherits from c# using MPF?

Using Visual Studio's Managed Package Framework, how can I inherit from C# so I can have C# property pages and C# project items? I've tried making a flavored project, but it was limited in terms of ...
4
votes
1answer
97 views

Question on VS Extensibility Architecture (Package API/ Visual Studio Library)

Recently I found the above displayed Visual Studio Extensibility Platform chart from microsoft. Most of the things are clear to me. However, I am wondering about the Package API and the VSL ...
2
votes
1answer
189 views

VS2010 MPF: Populating 'Add->New Item…' list for a custom project

I've created a custom language package, which extends ProjectPackage. I can create the new project correctly. I would like to be able to add new source files to the project by using the Add->New ...
1
vote
1answer
275 views

Implementing a Language Service By Using the Managed Package Framework

I've followed the steps listed in the walk through (http://msdn.microsoft.com/en-us/library/bb166360.aspx) for implementing and registering a LanguageService and I simply can't get it to work. My ...
1
vote
1answer
161 views

MPFR Rounding 0.9999 to 1?

I'm attempting to store the value 0.9999 into an mpfr_t variable using the mpfr_set_str() function But 0.9999 is rounded to 1 (or some other value != 0.9999) during storage, no matter the round value ...
0
votes
1answer
47 views

How do I subscribe to solution and project events from a VSPackage

I'm developing a language service for Visual Studio through a VSPackage. I need to update my parse data whenever files get added/removed from the solution's projects. I want to subscribe to solution ...
0
votes
2answers
245 views

Lost precision on GMP mpf_add. Where have my digits gone?

I'm summing two negative floats: char * lhs = "-2234.6016114467412141"; char * rhs = "-4939600281397002.2812"; According to Perl, using bignum and Math::BigFloat, the answer is ...