Home > Net >  How to I run a file on ubuntu which i compiled with Visual Studio on Windows for Linux
How to I run a file on ubuntu which i compiled with Visual Studio on Windows for Linux

Time:04-28

I compiled a C# project in VS2022 with this settings:

compilersettings

It produced a file without a file extension.

How to I run in from linux?

CodePudding user response:

cd you_vs_code_foler/bin/Release/net6.0/publish/linux-x64

chmod x your_programm

./your_programm

  • Related