I have a doubt is that I want to start a bot written in C # and I want to host it in glitch if there is a way to do it? (I was watching and trying and I couldn’t)
Hey @vStqr74, welcome to the Glitch forum!
dotnet core
is installed in the Glitch containers:
app@fish-water:~ 14:41
$ dotnet --version
2.1.700
so you can use C# on Glitch. You’ll have to start with a glitch.json
file instead of the default package.json
file for NodeJS projects. My very simple example at https://glitch.com/~dotnet-console-starter might point you in the right direction as a starting point, or potentially some of the ther results in https://glitch.com/search?q=dotnet.
Good luck!
3 Likes