Created
June 22, 2025 20:49
-
-
Save ZedDevStuff/9e4fb5ba792ff17cdf270f6968e14539 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"technologies": [ | |
{ | |
"name": "csharp", | |
"aliases": ["c#", "cs"], | |
"binary": "dotnet", | |
"commands": { | |
"build": { | |
"binary": "dotnet", | |
"arguments": "build" | |
}, | |
"run": { | |
"binary": "dotnet", | |
"arguments": "run" | |
}, | |
"dev": { | |
"binary": "dotnet", | |
"arguments": "run" | |
}, | |
"addlib": { | |
"binary": "dotnet", | |
"arguments": "add package" | |
} | |
} | |
}, | |
{ | |
"name": "typecript-bun", | |
"aliases": ["ts-bun", "tsbun"], | |
"binary": "bun", | |
"commands": { | |
"build": { | |
"binary": "bun", | |
"arguments": "run build" | |
}, | |
"run": { | |
"binary": "bun", | |
"arguments": "dev" | |
}, | |
"dev": { | |
"binary": "bun", | |
"arguments": "dev" | |
}, | |
"addlib": { | |
"binary": "bun", | |
"arguments": "add" | |
} | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment