X
X
Xeon24412015-01-28 16:35:10
Debian
Xeon2441, 2015-01-28 16:35:10

Is it possible somehow to run a VS C# console application in debian via putty?

We have a VDS running Debian x64. We have a console application (master server for the game), which is written in Visual Studio 2013 C#. Is it possible somehow to run it there, working exclusively in Putty (inputting commands to the server, reading the information it gives out)?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Artem Belsky, 2015-01-28
@BelsiiArtem

You can also try using wine

M
ManWithBear, 2017-08-19
@Keksonov

git checkout -b feature/new_layout  # создаем свою ветку для фичи / бага / рефакторинга и тд и тп
{ do your work here, commit and etc }
git checkout master
git pull  # качаем к себе актуальное состояние мастера
git rebase master feature/new_layout  # сдвигаем свою ветку на актуальный мастер (если добавить флаг -i то можно немного подредактировать историю изменений)
git checkout master
git merge --no-ff feature/new_layout  # мержим в мастер вашу готовую фичу без фаст форварда
git push
git branch -d feature/new_layout  # удаляем ветку, она нам больше не нужна

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question