Questions tagged [dsl-tools]

74 questions
2
votes
2 answers

DSLs(Domain Specific Programming Languages) implemented using different GPLs(General Purpose Programming Languages)

I am looking for DSLs implemented using general purpose programming languages(GPLs) e.g., C#, Java , Scala and so on. Primary goal is to survey various important attributes of well-designed DSL implementations used in a daily basis in Software…
Adil Akhter
  • 192
  • 3
  • 12
2
votes
1 answer

How to add context menu option for laying out the diagram in DSL Tools?

I would like to add an option to the DSL extension that I am creating in the Visual Studio DSL Tools (Visualization and Modeling SDK), to auto-arrange the layout via the context menu that appears when right-clicking on the diagram. Is this…
ngm
  • 7,277
  • 1
  • 53
  • 62
2
votes
1 answer

Microsoft.VisualStudio.Modeling.DomainDataNotFoundException : Domain object with identity was not found in directory

I am working on a DSL using the DSL Tools in the Modeling SDK for Visual Studio 2015. The DSL is working fine. The problem is occurring where I'm trying to write some unit tests to work with some of the classes generated by the DSL. I want to…
ngm
  • 7,277
  • 1
  • 53
  • 62
2
votes
1 answer

Update Compartment Shape Outline Color on DragOver in DSL

I am looking to be able to validate if user is looking to make a valid drag drop and have this indicated by the colour of the destination CompartmentShape, I have done the following which gives me the ability to validate correctly, I just need to…
Phill Duffy
  • 2,805
  • 3
  • 33
  • 45
2
votes
2 answers

C# Create a hidden transaction

I am using C# and DSL Tools for VS2005. I need to create Transactions to change some data but i want them to be hidden from the user, that means, to not show in the UNDO list in VS2005. I tried by disabling the…
Luis Filipe
  • 8,488
  • 7
  • 48
  • 76
2
votes
0 answers

How to make DSL compatible w/ both VS2010 and 2012?

I'm in charge of a DSL/VSVM VSIX extension at work and, since VS2012 just got released, I want to make it compatible with both. The VSIX is already installable in both environments, but I get load errors. I haven't fully checked, but I assume it's…
hb.
  • 1,705
  • 5
  • 22
  • 43
1
vote
1 answer

What are the steps to create domain specific query language?

i want to create domain specific query language i need steps to create it and how to transfer from the created domain specific query language to normal SQL query to execute it. and any recommended tools??
1
vote
1 answer

How to load a ModelingPackage (DSL-Tools) asynchronously in Visual Studio 2019?

I have a DSL-tools project where I use [ProvideAutoLoad] because it adds a set of menu commands to Visual Studio to allow the user to transform code (we have lots of text templates), and few other things. Since VS2019 does not allow to autoload sync…
1
vote
1 answer

Someone to explain the mechanics for DSL language creation "in plain english"

Basically the problem is that I'm starting doing somme development of Visual Studio 2010 extensions and language definitions are rather complex, so anyone giving a small intro and pointing some good docs would be great Thanks in advance, EDIT My…
David Conde
  • 4,631
  • 2
  • 35
  • 48
1
vote
1 answer

Can I create a visual DSL that does not require Visual Studio?

I would like to create a visual DSL (boxes and arrows). I have found that I can create such a DSL using Microsoft's Visualization and modeling SDK (DSL Tools sequel, for VS2010) and there is also a lab on the subject. However, that would require…
Kristoffer
  • 834
  • 6
  • 22
1
vote
0 answers

Can Visual Studio's Find be hooked for new file types?

I've created an entity modeling DSL (https://github.com/msawczyn/EFDesigner) and would like to give the users the ability to search the model while viewing it (for class names, attribute names, association endpoint names, etc.). I'd like to hook…
1
vote
1 answer

Getting started with the new Visual Studio Visualization and Modeling SDK (was DSL SDK)

Is there a good guide on how to setup and use the new Visual Studio Visualization and Modeling SDK with vs 2010 and vs 2008 ? reference: http://code.msdn.microsoft.com/vsvmsdk/Release/ProjectReleases.aspx?ReleaseId=3850
iceman
  • 4,211
  • 13
  • 65
  • 92
1
vote
1 answer

Debugger for DSL

At my company, we have a DSL to represent a data flow network. I'm looking into ways to make this environment more debuggable (not only native C++, since that would throw you out of the domain view). Are there existing debugger 'frontends' that I…
xtofl
  • 40,723
  • 12
  • 105
  • 192
1
vote
0 answers

Exception from HRESULT: 0x80070057 (E_INVALIDARG) on DSL Designer Visual Studio 2013

I have developed a modeling tool based on DSL, every things was fine with no problem, but suddenly when I right click on the model first I get "Value does not fall within the expected range." error and after clicking again I get "Exception from…
Reza
  • 18,865
  • 13
  • 88
  • 163
1
vote
1 answer

T4 (Text Template Transformation Toolkit) for generating a set of types based on a list of basic types e.g. PointI32, PointF32 etc. in C#

Similar to Boost Preprocessor library for generating a set of types based on a list of basic types e.g. PointI32, PointF32 etc. in C++/CLI I am asking how to generate: struct Point##TYPE_SUFFIX_NAME { TYPE X { get; set; } TYPE Y; {…
nietras
  • 3,949
  • 1
  • 34
  • 38