Dave

Results 89 comments of Dave

What sort of references (assembly, project or shared project) do those projects contain? And how many references are there in total? I have a sample solution with about 400 projects,...

@AdmiralSnyder Are you able to share the repository/solution that's slow, or is it private? Do you know of any open source repositories that have the same performance problem when getting...

> I want to know how to take that file path, and feed to an instance of the associated application and then host that application's main window inside a tool...

Possible duplicate of #165. Is the project you're trying to add the nested file to a legacy-style of project, or is it the newer SDK-style project?

This toolkit contains a reference to `Microsoft.VisualStudio.SDK`, so you don't need to reference it directly - you will be able to access all of the types in the SDK because...

#288 might be of interest to you.

I'm only guessing, but the command is probably provided by an internal extension rather than as part of the core Visual Studio SDK. As you mentioned, "packing" a project can...

> Is this `Build.Packselection` somewhere documented? Or how could I have known that? Since it's a command, you should be able to assign a shortcut key to it. So I...

The Visual Studio API doesn't provide access to NuGet package references, but they can be accessed using NuGet libraries. The [NuGet.VisualStudio.Contracts](https://www.nuget.org/packages/NuGet.VisualStudio.Contracts/) package provides an `INuGetProjectService` interface that allows you to...