Questions tagged [customtool]
45 questions
0
votes
2 answers
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:

vertti
- 7,539
- 4
- 51
- 81
0
votes
1 answer
CMake ignore custom toolchain file. (Cache is cleaned)
Windows 10, CMake 3.19.1
Im trying to compile test project with XC8 compiler, CMake and custom toolchain (third party).
Link: Toolchain repository
Toolchains quick guide says to only add two strings at top of my CMakeLists.txt.
So ive got the next…
user7516326
0
votes
1 answer
How to fetch the path of current solution opened in visual studio?
I created a tool window as part of VSIX project and installed an extension to test it. So, the tool window need access to the current solution/project opened in visual studio. When the user created the project for the first time, We can fetch the…

Diksha Mundhra
- 121
- 2
- 12
0
votes
1 answer
How to add an icon for tool window in visual studio extension
I created a tool window into my VSIX using
https://learn.microsoft.com/en-us/dotnet/api/microsoft.visualstudio.shell.providetoolwindowattribute?view=visualstudiosdk-2019
https://www.mztools.com/articles/2015/MZ2015004.aspx
I completed creation of…

Diksha Mundhra
- 121
- 2
- 12
0
votes
0 answers
Captions not showing in Internet Explorer when the application is hosted on AWS
The captions are showing up on the video in all the other browsers except Internet Explorer.
Point to be noted is: The captions are showing on the video when the code is run from local, meaning when I try to access the application from a server…

Vivek Singh
- 93
- 1
- 5
0
votes
0 answers
HRESULT E_FAIL Error while Calling ArcObjects Custom Model Tool
I have created a custom model tool in ArcMap 10.2.2. If we run this tool on ArcMap, we noticed that the tool is working fine. where as if we call the same in Arc Objects under Geo-processing tool, it is throwing an error as shown below
Error…
0
votes
1 answer
Cozyroc SSIS : Unable to use SFTP task
I am trying to use cozyroc tool sftpTask, first all the component were not present in the toolbox so I changed project setting from SQL server 2016 to SQL server 2014, after that all the tools came up to the toolbox.
Image of Project Setting
Now…

observer
- 316
- 3
- 9
0
votes
2 answers
Cannot find custom tool AGDataSetGenerator on this system
I've inherited a legacy .Net 3.5 VB app to support from a client and they'd like to make some small data changes. Before we begin I think it's important to note that I am running Windows 7 64 bit, and VS 2013 Ultimate R2.
While making my first…

Dylan Hayes
- 2,331
- 1
- 23
- 33
0
votes
1 answer
MSBuild XAML-Like Compilation of DSL to Typescript
Update: It seems the C# code generation issue, which I suspected to be of the same reason was really a ReSharper issue. But the TypeScript issue also persists on a clean Visual Studio inside a VM.
I have based my current targets file for compiling…

Fionn
- 10,975
- 11
- 54
- 84
0
votes
1 answer
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 DslPackage with the following code:
class…

Alex
- 3,429
- 4
- 36
- 66
0
votes
2 answers
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 project there is no project file, only the SLN file…

famousgarkin
- 13,687
- 5
- 58
- 74
0
votes
1 answer
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 template and procces it with suplied parameters?
I have…

Jan Pfeifer
- 2,854
- 25
- 35
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
0
votes
1 answer
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 CreatePkgDef task enabled from within the project file…

Umar Farooq Khawaja
- 3,925
- 1
- 31
- 52
-2
votes
2 answers
Regex in Custom package in C# i want capture (meta:resourcekey =".......")
DTE dte = Package.GetGlobalService(typeof(DTE)) as DTE;
TextDocument activeDoc = dte.ActiveDocument.Object() as TextDocument;
var text = activeDoc.CreateEditPoint(activeDoc.StartPoint).GetText(activeDoc.EndPoint);
var…

Yunus Kiraz
- 3
- 1