active questions tagged vsx - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T00:56:26Zhttp://stackoverflow.com/feeds/tag/vsxhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/9729/how-to-extend-project-properties-page1How to extend project properties page?aku2008-08-13T12:50:10Z2009-12-01T13:03:13Z
<p>Is it possible to add a custom tab to a project properties page in the Visual Studio 2008?
What I want to do is to be able to add a custom tab to properties page for the projects created from default project templates (WPF Application, WPF custom controls library, etc).</p>
http://stackoverflow.com/questions/1805825/visual-studio-extension-splash-info-not-showing1Visual Studio extension: splash info not showingErik van Brakel2009-11-26T21:48:46Z2009-11-26T22:24:15Z
<p>I'm building (read: trying to build) a Visual Studio integration package, which contains some custom highlighting and intellisense. The language part is working fine, the package is being loaded in the IDE, installing on non-SDK machines without problems.</p>
<p>However, here's one annoying thing I can't get to work. I want to see my package details in the about box (which shows all the installed packages like Resharper), ditto for the splash screen.</p>
<p>According to the documentation, the method to do this is to implement the 'IVsInstalledProduct' interface. I did this, following the instructions on MSDN, but it simply doesn't work! When I put breakpoints on the methods it seems like they're never called. Hopefully there's anyone here who can enlighten me on why this doesn't work like it is supposed to.</p>
<p>Note:
I also ran devenv.exe /ranu /rootsuffix Exp /setup from the VS2008 command prompt, as recommended in other articles about this.</p>
http://stackoverflow.com/questions/1721229/best-practice-for-obfuscating-a-c-visual-studio-dsl-solution-as-vsix0Best Practice for Obfuscating a C# Visual Studio DSL Solution as VSIXPhill Duffy2009-11-12T10:11:40Z2009-11-12T17:45:54Z
<p>I was wondering if anyone has any advice for obfuscating a DSL?</p>
<p>Background - We have created a DSL which we will putting into the Visual Studio Gallery as a VSIX file.</p>
<p>We already use dotfuscator for our obfuscation on other projects but I would like to know if there are any best practices or issues when packaging a DSL for deployment as a VSIX</p>
http://stackoverflow.com/questions/1530995/can-you-programatically-execute-run-custom-tool-on-a-projectitem-in-c0Can you programatically execute 'Run Custom Tool' on a ProjectItem in C#?Phill Duffy2009-10-07T11:16:14Z2009-11-11T18:58:06Z
<p>I was wondering if it is possible to execute 'Run Custom Tool' on a file in the VS Solution? I have the ProjectItem object already.</p>
<p>info: C#, Visual Studio 2010 SDK</p>
http://stackoverflow.com/questions/1681552/vsx-custom-packages-project-type-to-mimik-debug-start-action-start-exter0VSX: Custom Package's Project Type to mimik "Debug >> Start Action >> Start External Program"Jason2009-11-05T16:03:22Z2009-11-11T00:24:07Z
<p>I have a custom project type based on the C# Class Library project type in a VSX Package (2008+). For this project type, even though the output is a class library, I want to be able to debug this app just by pressing F5 (etc). I have a prebuilt executable that takes an assembly path as a command-line argument and loads it for workbench testing.</p>
<p>I can simulate this behavior manually by using the Project's "Debug >> Start Action >> Start External Program" in the property pages by providing the path to the executable and providing the relative path to the output dll as a command line argument. But this is too much setup. I would want the project type's package code to be able to grab the assembly of the active configuration and the installed location of the workbench executable automatically.</p>
<p>The worst case scenario would be that after every successful build, the property pages for that project are updated programmatically with the correct values. I don't particularly like this solution because it seems messy, seems like it would be easy to get out of sync and expose those potential errors to the user.</p>
<p>The best solution that I can imagine involved intercepting the Start Debugger event (only for this project type) before it craps out with "A project with an Output Type of Class Library cannot be started directly" and executes the workbench instead (debugger attached, of course). I don't know if VSX exposes the necessary parts. </p>
<p>I would pay to have this simple (?) package (along with a few other requirements, mainly a project-level menu item, already partially implemented) written by someone with experience, but I haven't found any consultants that specialize in VSX packages. Recommendations are welcome.</p>
<p>Am I taking the wrong approach? I'm assuming I need a package rather than an add-in.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/494205/compiling-pages-with-custom-extension-for-ex-custx-as-if-they-were-xaml-files1Compiling pages with custom extension (for ex .custx) as if they were .xaml files in Visual StudioVin2009-01-30T01:40:38Z2009-10-30T16:48:55Z
<p>In a VS Package (Visual Studio Extensibility), I have a custom extension registered (for ex ".custx") with XamlLanguageService, so that in Visual Studio when the user opens .custx, it opens up in Xaml Designer/editor just like a .xaml file.</p>
<p>However when I compile it as "Page" (BuildAction), the WINFX targets / Compiler errors out with the following error message.</p>
<p><strong><em>MySample\Page1.custx : error : Markup file is not valid. Specify a source markup file with an .xaml extension.</em></strong></p>
<p>I am looking for a solution, so that .custx pages compile as page, just like the .xaml pages in a WPF application</p>
<p>Any help is greatly appreciated</p>
http://stackoverflow.com/questions/1563389/opening-a-file-from-tfs-using-the-full-tfs-path-from-a-web-site0Opening a file from TFS using the full TFS Path, from a web siteVin2009-10-13T22:48:27Z2009-10-14T14:44:34Z
<p>So I have a website running that displays <strong>full path</strong> of a <strong>TFS File</strong> on the page somewhere, I want the user to be able to click on it, which should then open up that file from TFS inside their <strong>Visual Studio</strong>.</p>
<p>The command to do this inside Visual Studio is "<strong>File.TfsOpenFromSourceControl</strong>" (DTE command) - it's basically the user manually going to that file using the Source control explorer and double clicking to open it up.</p>
<p>I am wanting to simulate that action from my web app inside the <strong>browser</strong>.</p>
<p><strong>Update</strong>: The Web app is a pure ASPNet MVC app with Jquery available to it. I am already showing the file's content to the user in the web app. But I want the user to open the same file in Visual studio, by clicking on the file path in the web app. The question is more of <strong>Browser to VS integration</strong> and how to execute the DTE command in question, from within the web app context of the browser.</p>
<p>Any clues would be helpful</p>
http://stackoverflow.com/questions/1553819/c-codefunction2-how-do-you-prevent-creation-of-return0C# CodeFunction2 - How do you prevent creation of 'return'?Phill Duffy2009-10-12T10:29:23Z2009-10-12T11:19:46Z
<p>I am creating a C# class as per:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/x6h10s6x.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/x6h10s6x.aspx</a></p>
<p>however I want my own 'return' rather than the <code>return default(int);</code> it automatically generates. I know I can insert my own text using an EditPoint i.e</p>
<pre><code> editPoint.Insert("return records.AsEnumerable<" + tableNameAsSingular + ">();");
</code></pre>
<p>but it still tries to stick in its own 'return' too</p>
http://stackoverflow.com/questions/1373257/creating-a-item-template-for-visual-studio-2008-with-file-dependencies-is-it-po0Creating a item template for Visual Studio 2008, with file-dependencies, is it possible?Lasse V. Karlsen2009-09-03T12:55:24Z2009-10-07T10:43:06Z
<p>I have a template that adds a new entry to the "Add->New item" right-click menu on a project in the solution explorer in Visual Studio.</p>
<p>I have already built the template, put it into my ItemTemplates directory beneath my documents folder, and it works, in the sense that I can add new items to the project through the template.</p>
<p>However, the template consists of 3 files:</p>
<pre><code><filename>.controller
<filename>.Designer.cs
<filename>.cs
</code></pre>
<p>These are added to the project at the same level, but I'd like to have the same kind of hierarchy you get when you add a form to the project, where the .Designer.cs file is placed as a sub-node beneath the .cs file.</p>
<p>Basically, this is what the project looks like:</p>
<pre><code>TestProject
+- Properties
+- References
+- App.config
+- Program.cs
+- MyTestController.controller
+- MyTestController.Designer.cs
+- MyTestController.cs
</code></pre>
<p>whereas I want it to look like this:</p>
<pre><code>TestProject
+- Properties
+- References
+- App.config
+- Program.cs
+- MyTestController.controller
+- MyTestController.Designer.cs
+- MyTestController.cs
</code></pre>
<p>is this possible? If so, what do I change in my .vstemplate file to get this behaviour?</p>
<p>Here's the .vstemplate file I've added to the template zip file:</p>
<pre><code><VSTemplate Version="2.0.0" Type="Item" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005">
<TemplateData>
<Name>LVK.NET New Controller</Name>
<Description>Adds an business logic controller class to the project.</Description>
<Icon Package="{FAE04EC1-301F-11d3-BF4B-00C04F79EFBC}" ID="4522" />
<ProjectType>CSharp</ProjectType>
<SortOrder>10</SortOrder>
<DefaultName>Controller.controller</DefaultName>
</TemplateData>
<TemplateContent>
<References>
<Reference>
<Assembly>System</Assembly>
</Reference>
<Reference>
<Assembly>System.Data</Assembly>
</Reference>
<Reference>
<Assembly>System.Xml</Assembly>:\
</Reference>
<Reference>
<Assembly>LVK.Core</Assembly>
</Reference>
<Reference>
<Assembly>LVK.BusinessLogic</Assembly>
</Reference>
</References>
<ProjectItem ReplaceParameters="true">Controller.controller</ProjectItem>
<ProjectItem ReplaceParameters="true" TargetFileName="$fileinputname$.Designer.cs">Controller.Designer.cs</ProjectItem>
<ProjectItem ReplaceParameters="true" TargetFileName="$fileinputname$.cs">Controller.cs</ProjectItem>
</TemplateContent>
</VSTemplate>
</code></pre>
http://stackoverflow.com/questions/1517892/visual-studio-style-editor-for-an-application-specific-scripting-language0Visual Studio style editor for an application-specific scripting language?Joan Venge2009-10-05T01:25:48Z2009-10-05T01:29:04Z
<p>Right now I only know about Visual Studio 2008 Shell and the custom control used in the Snippet Compiler.</p>
<p>Also is VS shell suitable for this job? I don't know if it's a custom control or a standalone app? Any tutorials about it?</p>
<p>I would imagine the Snippet Compiler's custom control to be usable and therefore should work, but I still want to know if there are better alternatives out there?</p>
<p>It doesn't have to have everything like step through debuggers which the app itself doesn't support.</p>
<p>My editor will be similar to what Photoshop has for a script editor. </p>
http://stackoverflow.com/questions/491751/visual-studio-extension-to-map-solution-folders-to-real-folders6Visual Studio Extension to map Solution Folders to Real FoldersMichael Stum2009-01-29T14:18:39Z2009-09-24T22:04:09Z
<p>In an <a href="http://stackoverflow.com/questions/267200/">earlier question</a>, I've found out that sadly Solution Folders are not real folders inside a directory.</p>
<p>I wonder if there is an AddOn or Macro that adds this functionality? i.e. when I create a Solution Folder, it created a real folder. When I Create a new Item (Right Click => Add => New Item) it automatically moves them into that folder, removing causes it to delete it from disk (after asking) etc.</p>
<p>This is for Visual Studio 2005, although we might upgrade to 2008 in a few months.</p>
http://stackoverflow.com/questions/1422166/e-data-getdata-is-always-null0e.data.GetData is always nullPhill Duffy2009-09-14T15:10:16Z2009-09-16T07:37:51Z
<p>I am working with Visual Studio 2010, developing an Extension</p>
<p>I need to drag and drop from a WPF TreeView in a Toolwindow onto a DSL Diagram but when I call e.data.GetData I can not get a value and want to know what I am doing wrong</p>
<pre><code> private void OnDragDrop(object sender, DragEventArgs e)
{
if (e.Data.GetDataPresent(typeof(SqlServerTable)))
{
try
{
SqlServerTable table = (SqlServerTable)e.Data.GetData(typeof(SqlServerTable));
MessageBox.Show(table.Name);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
</code></pre>
<p>The first if statement resolves as True. This would tell me that it is that sort of Object.
This is what is in the WPF Tree view:</p>
<pre><code> private void DataSourceExplorerTreeView_MouseMove(object sender, MouseEventArgs e)
{
if (e.LeftButton == MouseButtonState.Pressed)
{
if (DataSourceExplorerTreeView.SelectedValue is TableViewModel)
{
Table table = ((TableViewModel)DataSourceExplorerTreeView.SelectedValue).Table;
DragDrop.DoDragDrop(DataSourceExplorerTreeView, table, DragDropEffects.Copy);
}
}
}
</code></pre>
<p>SqlServerTable inherits from Table. If I stick a breakpoint in and call</p>
<pre><code> e.Data.GetFormats()
</code></pre>
<p>I can see my Fully qualified TypeName</p>
http://stackoverflow.com/questions/1046821/why-does-not-visual-studio-display-warnings-generated-by-the-warning-directive0Why does not Visual Studio display warnings generated by the #warning directive (CS1030)?Gebb2009-06-26T00:21:39Z2009-09-14T02:00:01Z
<p><strong>Edit:</strong> I reported this as a bug on the Microsoft Connect site <a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=470753" rel="nofollow">here</a>.</p>
<p><strong>Edit 2:</strong> Microsoft will not fix this bug (at least not in VS2010).</p>
<p>User defined warnings are only shown in the Error List window for one file per project. So if you put the #warning directive in several files of your project, you will not see any warnings after build for most of the files. The missing warnings are generated by msbuild and can be seen in the Output window, but not in the Error List window.</p>
<p><strong>Note:</strong> none of the files containing #warning's must be open in VS editor on the moment of build for this effect (a VS bug?) to be seen.</p>
<p>How do I get all of my user-defined warnings displayed on build?</p>
<p>I'm using Visual Studio 2008 SP1.</p>
http://stackoverflow.com/questions/1375863/how-can-i-cancel-a-visual-studio-newpendingchange-event0How can I cancel a Visual Studio NewPendingChange event?urig2009-09-03T20:48:52Z2009-09-10T17:08:19Z
<p>I'm trying to programmatically intercept and cancel a user's attempt to check out a file in TFS. </p>
<p>Am I correct in thinking that the proper way to go about this would be to handle the NewPendingChange in a Microsoft.TeamFoundation.VersionControl.Client.VersionControlServer ?</p>
<p>What is the proper way for canceling the event from its event handler?</p>
http://stackoverflow.com/questions/1173289/can-you-process-t4-templates-from-inside-a-net-application1Can you process T4 templates from inside a .NET application?B. Tyndall2009-07-23T17:30:38Z2009-09-08T17:55:20Z
<p>Can you process T4 templates from inside a .NET application? Is that code available to be called? included in a project? licensing?</p>
<p><em>update</em>: so it does look like you would have to use VS in some way.</p>
http://stackoverflow.com/questions/15133/tool-in-visual-studio-2008-for-helping-with-localization9Tool in Visual Studio 2008 for helping with LocalizationCampbell2008-08-18T19:49:40Z2009-09-05T15:42:51Z
<p>Hi,</p>
<p>Does anyone have any recommendations of tools that can be of assistance with moving literal values into resource files for localization?</p>
<p>I've used a resharper plugin called RGreatX but was wondering if there is anything else out there.</p>
<p>It's one heck of a long manual process for moving the strings across and think there must be a better way! RGreatX is OK but could be a bit slicker I feel.</p>
http://stackoverflow.com/questions/364185/right-way-of-working-with-connectmode-for-vs-add-ins0Right way of working with connectMode for VS add-insDmitri Nesteruk2008-12-12T21:21:33Z2009-09-04T08:00:02Z
<p>Can someone point me to a guide on how to interpret the connectMode parameter that gets passed when a VS add-in is loaded?</p>
http://stackoverflow.com/questions/832578/generate-dtos-from-object1Generate DTOs from ObjectAli Shafai2009-05-07T01:56:40Z2009-09-02T03:19:04Z
<p>Hi there,</p>
<p>I want to auto gen some DTOs from some of my existing objects, I was wondering if there already exist a Resharper, DevExpress or VSX open source to use, I need a tool to look into my code and let me choose which properties I want to include in my DTO and then generate a class based on that...</p>
http://stackoverflow.com/questions/1326613/how-to-capture-the-mouse-click-event-in-vs2008-by-envdte0How to capture the mouse click event in VS2008 by ENVDTE?Karla2009-08-25T07:37:49Z2009-08-25T07:37:49Z
<p>I'm writing an add-on (by the format of VSPackage) for Visual Studio. One of the designed feature is: when user left-clicks in the area of text editor or presses up or down key to move to a new line, the add-on can capture this event and then do something (It's similar as the "VA Outline" feature in Visual Assist, when you clicks to a new line, the corresponding element will be highlighted in VA Outline tool window).</p>
<p>The problem I meet is: I can't find any API in Visual Studio Shell or other SDK that supports the Mouse-level event (The Envdte80 namespace supplies an event named "TextDocumentKeyPressEvents" which can be used for keyboard-level event). Does somebody get a solution to this? Many thanks in advance:-)</p>
http://stackoverflow.com/questions/880186/which-one-to-choose-dxcore-resharper-or-vsx3which one to choose? DXCore, Resharper or VSX?Ali Shafai2009-05-18T22:53:24Z2009-08-22T19:11:11Z
<p>I want to write a visual studio addon to do some code modifications for me (like some specific refactoring). I was wondering which one of these tools should I use and why?</p>
<p>we have licenses for resharper, the other two are free and this is an internally used software, so we don't need to worry about licensing.</p>
http://stackoverflow.com/questions/1272022/how-to-access-selected-project-in-solution-explorer-from-a-visual-studio-add-in0How to access selected project in Solution Explorer from a Visual Studio Add-In?aoven2009-08-13T13:40:25Z2009-08-14T14:51:50Z
<p>I developed a VS 2008 add-in and added a custom menu item to context menu for "Project" nodes in Solution Explorer.</p>
<p>This allows me to right-click any project in solution and perform a custom operation on that project. Or at least, <strong>it would, if I knew how to access the selected project from my Click event handler</strong>.</p>
<p>Can someone with more experience please help me?</p>
http://stackoverflow.com/questions/1172383/open-a-vs-2005-solution-file-sln-into-memory1Open a VS 2005 Solution File (.sln) into memoryLuis Filipe2009-07-23T14:59:52Z2009-08-13T08:36:33Z
<p>I would like to open into memory an existing .sln file.</p>
<p>Example of a non-working method:</p>
<pre><code>private Solution2 OpenSolution(string filePath)
{
Solution2 sln;
sln.Open(filePath);
return sln;
}
</code></pre>
<p>If I have an instance of Solution2 then i can call the method Open; but <strong>how can i get an instance of Solution2</strong>?</p>
<p>My goal is then to get the adequate project and read some of its settings... but that's easy having access to the solution.</p>
<p>Thanks in advance,
Luís </p>
http://stackoverflow.com/questions/1267255/visual-studio-sdk-getting-notified-when-a-project-item-in-your-packages-vsx-pr0Visual Studio SDK - Getting notified when a project item in your package's vsx project has undergone undo checkout?amazedsaint2009-08-12T16:27:39Z2009-08-12T16:27:39Z
<p>We are working with Visual Studio SDK, creating a package. We need to get notified when a file (projectitem) gets undo checkout from TFS.</p>
<p>Any solutions/pointers are appreciated.</p>
http://stackoverflow.com/questions/1260935/resolving-problems-with-dsl-setup-project1Resolving problems with DSL SetUp projectMark2009-08-11T15:02:12Z2009-08-12T13:21:28Z
<p>I'm fighting with the InstallerDefinition.dslsetup file in a DSL setup project. I'm getting the following error:</p>
<p><em>Running transformation: The setup project could not retrieve the output path for project 'PsiTraffic.Modeling.PomModel.Dsl' from the environment. Ensure that this project exists in the solution. Only Visual C# and Visual Basic project types are supported.</em></p>
<p>The Project 'PsiTraffic.Modeling.PomModel.Dsl' is in the solution, its also a project reference of the setup solution. The project is C# so the only two pointer's it gave me are useless. </p>
<p>This is the section that it is reffering to in the dslsetup file:</p>
<pre><code><dslSchemas>
<dslSchema project="PsiTraffic.Modeling.PomModel.Dsl" filePath="GeneratedCode\PomModelSchema.xsd"/>
</dslSchemas>
</code></pre>
<p>If I provide a full path to the file the error goes away but this goes against the whole point of the project attribute, and I get errors later from the supportingAssembly attributes.</p>
<p>There aren't very many good examples on this and its Visual Studio doesn't provide you with much in the way of support to diagnose the problem.</p>
<p>Any insights or good examples would be appreciated.</p>
http://stackoverflow.com/questions/197589/what-are-best-fit-patterns-to-use-when-developing-vsx-package-or-isolated-shell-p0What are best fit patterns to use when developing VSX Package or Isolated Shell Package?Vin2008-10-13T13:33:57Z2009-08-12T11:33:38Z
<p>When I am developing a bunch of designers/tools, what are some of the best fit patterns that go with a VSX Package and/or VSX Isolated Shell Package?</p>
<p>Any samples, links would be great.</p>
http://stackoverflow.com/questions/1238176/visual-studio-addin-catch-selectionchanged-editor-event0Visual Studio addin - catch "SelectionChanged" (editor) eventArielr2009-08-06T10:49:33Z2009-08-08T11:24:14Z
<p>Hey.<br />
I'm trying to catch all user text navigation events (selection changes) in the text editor to update a tool window (contextual to the current position).</p>
<p>The "LineChanged" event under TextEditorEvents only fires on updates, and I did not manage to find any other event.
Anyone knows of such?</p>
<p>Arielr</p>
http://stackoverflow.com/questions/1129215/should-a-new-visual-studio-based-application-be-based-on-2008-or-20105Should a new Visual Studio-Based Application be based on 2008 or 2010?Nathan Voxland2009-07-15T03:17:06Z2009-08-06T10:55:22Z
<p>I am thinking of creating a product based on the Visual Studio Shell (primarily isolated mode). Since Visual Studio 2010 will most likely be RTM before my product, does it make sense to start with VS2010 as a base rather than VS2008? </p>
<p>Has anyone looked at what they changed in connection to the shell framework and if it is improved enough to warrant using it over the better documented and not-beta 2008?</p>
http://stackoverflow.com/questions/335838/vs2010-extensibility-how-different-is-it1VS2010 Extensibility - how different is it?Dmitri Nesteruk2008-12-02T23:44:11Z2009-08-06T08:45:25Z
<p>A question to those of you who already looked at VS2010. How big are the changes that add-in developers will have to make in order to get their add-ins working under VS2010?</p>
http://stackoverflow.com/questions/1149084/including-more-database-connection-options-in-a-visual-studio-isolated-shell-appl3Including More Database Connection Options in a Visual Studio Isolated Shell Application?Nathan Voxland2009-07-19T02:14:09Z2009-08-06T04:23:50Z
<p>When starting up an isolated mode visual studio shell application, the only databases available in the Tools->Connect to Database are Access, SQL Compact, and SQL Server Database File. </p>
<p>Is there a way to configure the isolated shell to include other database types? In particular SQL Server and MySQL. Are there any licensing agreement issues related to including SQL Server support?</p>
http://stackoverflow.com/questions/1234843/creating-a-visual-studio-tool-window-vsaddin-or-vspackage0Creating a Visual Studio Tool Window - VsAddin or VsPackageArielr2009-08-05T18:12:40Z2009-08-05T18:29:55Z
<p>Hey Folks.</p>
<p>Simple question - I found two ways to add a tool window to Visual Studio (2008): create an addin or create a package.</p>
<p>(Addin: <a href="http://www.codeproject.com/KB/dotnet/vstoolwindow.aspx" rel="nofollow">http://www.codeproject.com/KB/dotnet/vstoolwindow.aspx</a>)<br />
(Package: <a href="http://msdn.microsoft.com/en-us/library/bb165051.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb165051.aspx</a>) </p>
<p>What's the "right" way?</p>