Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kant2002/msbuildtranslator
convert MSBuild project files to C# pseudo-code
https://github.com/kant2002/msbuildtranslator
msbuild
Last synced: 21 days 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-25T15:33:19.000Z (10 months ago)
- Last Synced: 2024-10-04T16:39:20.358Z (about 1 month 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