The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
30 views

Using precompiled T4 text templates in a Visual Studio web site project?

In a Visual Studio web application project the custom tool information set via the file properties window is being stored in the CSPROJ project file on per file basis. In a Visual Studio web site ...
0
votes
0answers
23 views

VS2012 Tool Window with search

I'm trying to create a custom tool window extension with search enabled. How can I force the search box to always be in it's own row? Similar to the default Solution Explorer window shown above. ...
0
votes
1answer
179 views

C# Custom Tool 'SettingsSingleFileGenerator' output not found

I downloaded the source code for this JiraSVN plugin, and opened the .sln file in VS2010. I was immediately greeted by this warning: A custom tool 'SettingsSingleFileGenerator' is associated ...
0
votes
2answers
48 views

Run SingleFile Generator through MSBUILD

i have created a Custom tool (SingleFile generator) using IVsSingleFileGenerator. Which takes "xyz.Resx" file as input and generate "xyz.Designer.resx.cs" file. This file can be generated on ...
3
votes
1answer
604 views

Step by step, how do I add a custom build step for every file of a given type in Visual Studio 2010?

The Problem I have a bunch of custom files in a visual studio 2010 project. I need to run a tool on those custom files when they change. The tool generates .h files included by existing .cpp files. ...
1
vote
0answers
69 views

Visual studio custom tool build event

Is it possible to build a project (not solution) everytime a custom tool is run in visual studio?
2
votes
2answers
119 views

Custom tool shortcut visual studio

Is there a way to create a shortcut for a custom tool in visual studio? At the moment I have to navigate to the tool in the solution, right click and run custom tool. It would be nice if I could ...
0
votes
1answer
126 views

Apache Velocity + Tomcat: Manually process templates within web-app

I am using Apache Tomcat with Velocity and VelocityViewServlet. I have created a custom tool with refference to ViewContext. It all works well. The question is: what is best way to locate/load ...
0
votes
0answers
76 views

Custom Tool and Designer Serializer

I have implemented a custom tool that generates a new class inherited from component class. I want to force the DesignerSerializer to run after the custom tool finish to add new properties to ...
0
votes
0answers
69 views

VSTS Custom tool with xsd parameter

I need to create a custom tool for VS 2010 which will validate an xml file against an XSD file passed as parameter. If there exists any validation error then it should be displayed in Visual studio ...
0
votes
0answers
98 views

Adding custom file properties

i am just creating a VS 2010 add-in, that contains a custom tool that will be used to generate zip files from special xml files. I now want enable the user of the custom tool to configure the ...
0
votes
1answer
58 views

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 ...
0
votes
0answers
240 views

VS2010 Custom Tool - setting build action for generated files

I've created a custom tool (aka single file generator from the BaseCodeGeneratorWithSite class in the VS2010 SDK), which works great. In this instance, I'm using the MonoGame 2MGFX tool to generate ...
0
votes
1answer
515 views

Why is my Visual Studio 2010 custom tool not being found?

My custom tool is as follows: Class: FooBar.Blah.Tools.DataContextClassGenerator Assembly: FooBar.Blah.Tools.DataContextClassGenerator Project: FooBar.Blah.Tools.DataContextClassGenerator The ...
0
votes
2answers
55 views

Parsing and altering xml file with custom tool or script

I bump into something like this quite often. This time I have sprite sheet file containing lots of lines like this: <textureregion id="2" src="blue_ship1.png" x="778" y="791" width="64" ...
5
votes
1answer
453 views

In Visual Studio, can I make one file run another's custom tool? (in this case using Xsd2Code)

I am trying to work out if it is possible, when using a Custom Tool in Visual Studio, to have a change in the contents of one file, trigger the Custom Tool of another. My scenario is this: In a ...
1
vote
2answers
1k views

Visual Studio custom tool for code generation… how do I find out what's going wrong?

I'm trying to create a custom tool for code generation in Visual Studio 2010. First I register it: "$(FrameworkSDKDir)Bin\NETFX 4.0 Tools\gacutil.exe" /if "$(TargetPath)" Then I add it via a reg ...
3
votes
1answer
259 views

VS2010 custom tool - generated filename bug? (YUI Custom Tool and others)

I don't know if this is a bug of visual studio 2010 but when I run the YUI Custom Tool in some files I get the new file with a "1" added to the filename.. For example, I have a file named ...
0
votes
2answers
377 views

Two Custom tool s for a single file?

I want to generate some code from my dbml(Linq to Sql) file,the dbml file is placed in many part of my project So I wrote a custom tool for this purpose But the problem is that dbml already has ...
8
votes
2answers
5k views

Running a T4 template using C#

I have T4 template (mycode.tt) which generates a cs file. I usually right click the tt file and select RunCustomTool which internally takes an xml file and generate code for me. Now i want to run the ...
0
votes
1answer
2k views

Custom tool error Failed to generate code

Why this error is appearing? I was just setting some default values in a dataset designer... its second time that this is appearing... "Custom tool error Failed to generate code. Exception of type ...
6
votes
3answers
733 views

How to stop T4 from executing every time I switch to another tab?

When I edit T4, the script is executed every time I switch to another file. It is OK for quick simple scripts, but some scripts take long time to execute. Is there a way to disable this behavior? I ...
1
vote
1answer
185 views

How do I default the visual studio file property “custom tool” for a given file extension?

I have a custom tool "NafestisGenerator" of which I need to apply to every ".ntf" file. The question is, how do I tell visual studio (using the Custom tool Generator sample from Microsoft) to use the ...
12
votes
4answers
3k views

How to hide files generated by custom tool in Visual Studio

I would like the files generated by my custom tool to be hidden, but I cannot find any documentation on how this is done. An example of what I'm looking for is WPF code behind files. These files are ...
2
votes
1answer
309 views

How to output in the the log window in perforce client p4v using custom tools

We're developing perforce custom tools in python and we're outputting messages during the script execution. It shows up in p4win but we're mainly using p4v and the output doesn't show up in the log ...
5
votes
2answers
3k views

How to deploy a visual studio custom tool?

I have a my own custom tool for Visual Studio 2008 SP1. It consists of 5 assemblies: 3 assemblies with code that used heavily in my other projects, 1 assembly-wrapper above VS2008 SDK and assembly ...
4
votes
2answers
1k views

Run Custom Tool for entire solution

Is there a way to 'Run Custom Tool' for an entire solution? Why? The custom tool is under development and when changes are made I need to refresh all the items that use it to make sure nothing ...
0
votes
1answer
89 views

Language neutral custom tool

I'm working on a DSL tool, and for this tool, there exists a custom code generation tool that creates output files. Currently, this tool is registered with C# using a RegistrationAttribute on the ...
12
votes
5answers
13k views

How do I write to the Visual Studio Output Window in My Custom Tool?

I am writing a custom tool and I currently have it doing what I want as far as functionality. I would like to be able to write to Visual Studio if something goes wrong. (Incorrectly formatted code or ...
1
vote
2answers
447 views

How do I Debug a SingleFileGenerator/ Custom Tool?

I am building a Custom Tool code generator using the Visual Studio SDK and basing it on the SingleFileGenerator example. My question is how to enter debug mode on this code? I can currently add my ...
6
votes
1answer
2k views

Using Studio's “Custom Tool” in MSBuild

I've got a "Custom Tool" for Visual Studio to munge some template files into code. For consistency and portability I'd like to be able to run this template processor from MSBuild when building outside ...