Questions tagged [visual-studio-sdk]

The Visual Studio SDK includes documentation, samples, and code to help you develop products that integrate with the Visual Studio product family.

290 questions
0
votes
1 answer

Type.GetCustomAttributes returns custom attributes in random order

Consider following codes: [AttributeUsage(AttributeTargets.Class)] public sealed class SampleAttribute : Attribute { public String Name {get;set}; public SampleAttribute(String testName) { Name = testName; …
Yaser Moradi
  • 3,267
  • 3
  • 24
  • 50
0
votes
1 answer

Visual Studio Shell Based Application

My new project would be a custom IDE for proprietary Application creation. This can be a Shell based application on VS Shell. I wanted to know what are the license requirement for these kind of applications. My question: If I create my project as VS…
NileshChauhan
  • 5,469
  • 2
  • 29
  • 43
0
votes
1 answer

VSIX LanguageService FindToolWindow(...) returns null

I have two VSIX packages (VS2010 SDK), one containing a LanguageService and one the ProjectPackage (based on Managed Package Framework for Projects) for my language. Now I need to establish some sort of communication channel where the…
BennyBarns
  • 624
  • 5
  • 12
0
votes
1 answer

Adding resources to solution explorer in experimental hive

I'm currently working on a project using DSL tools in Visual Studio 2008. Is there a way to automatically add a resource into the solution explorer of the experimental hive at runtime? I'm creating new diagrams based on what is on screen, and saving…
user221083
0
votes
1 answer

How to create an isolated shell application in VS2010

I'm trying to create a new visual studio isolated shell application by following the instructions found here. I get to step 5: Press F5 to compile and start debugging the solution. The shell starts to appear, but then this error message…
briddums
  • 1,826
  • 18
  • 31
0
votes
2 answers

Visual Studio 2012 Custom Solution Explorer Filter

We have a very large solution project for our MVC structure where I work. I am trying to filter my solution explorer down to only relevant files with a custom filter. Microsoft has an article on making a custom filter here, but when I try to build…
0
votes
1 answer

In Visual Studios 2012 What Type Of Project do I Need To Create?

I want to create a calculator that can run on a regular computer. However, every time I create a new project it will not run. Instead is says that "The system cannot find the file specified." Last time I had this problem I just needed to create a…
user2107967
0
votes
2 answers

Highlighting code window of visual studio based on line number using VSPackage

I'm building a VSpackage extension to create "VisualStudio Tool Window". I have a grid inside tool window, consisting of numbers. If a user selects a particular row of the grid. That particular line of code should be highlighted. To be more…
0
votes
1 answer

How can I manipulate pending changes window programatically?

I am creating a clone of Merge Wizard of TFS to add new features. I already merged with workspakce.Merge api. Now I need a way to programatically show the Pending Changes - Conflict Window. I already have a IVsWindowFrame from PendingChangesExt…
Denny
  • 97
  • 7
0
votes
1 answer

Visual Studio 2012 and IVsSingleFileGenerator

I'm porting my existing extension written for VS2010 SDK to VS2012 SDK and there seem to be some changes involving IVsSingleFileGenerator. Basically, I'm creating a .VSIX with: Project Templates Item Templates A custom tool (implementing…
Kel
  • 1,217
  • 11
  • 21
0
votes
1 answer

Filter out list of code snippets visible on the list view

Following this link I have a set of code snippets. But the snippet insertion has to be w.r.t the context, viz. if I do 'Insert Snippet' before declaring a class, it shouldn't show 'method declaration' snippet. Also required is to filter snippets as…
dushyantp
  • 4,398
  • 7
  • 37
  • 59
0
votes
0 answers

Custom toolwindowpane for VS Isolated Shell

I am trying to create some custom tool windows for my isolated shell (VS2010). Below is the code for toolwindow. [Guid("xxxx")] public class ToolWindow1: ToolWindowPane { public ToolWindow1() : base(null) { this.Caption =…
Jin
  • 6,055
  • 2
  • 39
  • 72
0
votes
1 answer

Make VS jump to line x in editor

Im writing a policy plugin for VS which checks several issues with the code. If an issue occurs it will be displayed in the policy warnings tab. Now I want to jump to the line where the issue occurs in the editor when I double click it in the policy…
0
votes
1 answer

VS2010 Custom Tool / Add-in redistributable license

I've built a custom tool that descends from the BaseCodeGeneratorWithSite class defined in one of the assemblies included in the VS2010 SDK. Does anyone know what the proper procedure is for redistributing this without requiring the end user to…
3Dave
  • 28,657
  • 18
  • 88
  • 151
-1
votes
1 answer

How to know running states of a cpp program with Visual Studio SDK

i want to do statistics on cpp programming action so i decide to develop a plugin with Visual Studio SDK. Now i encounter a problem. I want to know the running state of the cpp program. e.g. when user launch the program? when the program end? or…
吴优华
  • 11
  • 4
1 2 3
19
20