https://github.com/kant2002/msbuildtranslator
convert MSBuild project files to C# pseudo-code
https://github.com/kant2002/msbuildtranslator
msbuild
Last synced: 2 months ago
JSON representation
convert MSBuild project files to C# pseudo-code
- Host: GitHub
- URL: https://github.com/kant2002/msbuildtranslator
- Owner: kant2002
- License: mit
- Created: 2024-01-19T14:21:43.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-17T11:09:42.000Z (8 months ago)
- Last Synced: 2025-02-26T00:21:38.265Z (5 months ago)
- Topics: msbuild
- Language: C#
- Homepage:
- Size: 13.7 KB
- Stars: 11
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# MSBuild Translator
This is very primitive attempt to convert MSBuild project files to C# pseudo-code.
I hope that created file, allow for easier navigation of the inner working of .NET SDK## How to run
```
dotnet run --project msbuildtranslator -- myproject.proj
```For saving generated code to file pass output pass as second argument:
```
dotnet run --project msbuildtranslator -- myproject.proj Generated.cs
```Sample of output can be found here.
https://github.com/kant2002/MSBuildScript-sample