Does this repository contain the source code of generators (custom tools)? #55078
-
Hello This is relating to #54117. Is there the source code of generators (custom tools) such as Thanks PS: I created a simple small C# project with the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Some of the dotnet repo specific tools live in dotnet/arcade repo. You may search there. |
Beta Was this translation helpful? Give feedback.
-
Use MSBuild to find what it uses should be a good approach. Right click VS project and select "Open in Terminal", the opened terminal will use MSBuild shipped with Visual Studio.
This will process the project file and import everything required. You can search for the xml to find what are imported.
This will do a build, then log every step MSBuild does. Then you can use the Log Viewer to inspect it. The log should contain some details of everything invoked. |
Beta Was this translation helpful? Give feedback.
Use MSBuild to find what it uses should be a good approach.
Right click VS project and select "Open in Terminal", the opened terminal will use MSBuild shipped with Visual Studio.
This will process the project file and import everything required. You can search for the xml to find what are imported.
This will do a build, then log every step MSBuild does. Then you can use the Log Viewer to inspect it. The log should contain some details of everything invoked.