▲ | hu3 2 days ago | |
There's `dotnet run` now. You can: vim projects/example.cs
dotnet run projects/example.csNot the same as PHP I know, but it's close enough for me. | ||
▲ | DoctorOW 2 days ago | parent [-] | |
I'm glad it works for you but I guess that doesn't really cover the use case I was talking about because I want to have a bunch of these. As an example, I threw together a quick web hook processor, data from one service reformatted to fit another. I don't really need to spin up a whole new VPS for an endpoint that'll only be hit once or twice a week, so this is the workflow for doing that on the server I already have. PHP:
C#:
|