Tagged Questions
The customtool tag has no wiki summary.
10
votes
4answers
2k 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 ...
9
votes
3answers
8k 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 ...
6
votes
1answer
1k 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 ...
4
votes
2answers
1k 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 ...
2
votes
1answer
115 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 ...
2
votes
3answers
284 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 ...
2
votes
1answer
203 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 ...
2
votes
1answer
236 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 ...
1
vote
1answer
114 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 ...
1
vote
1answer
2k 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 ...
1
vote
1answer
243 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 ...
0
votes
1answer
76 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 ...
0
votes
2answers
137 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 ...
0
votes
1answer
827 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 ...
0
votes
1answer
65 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 ...