Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 533 Bytes

File metadata and controls

18 lines (12 loc) · 533 Bytes

CollegeProjects

How to run these programs on Linux?

First of all you need to instal .NET <= Follow this link for setup instructions Then run the following in the terminal

~$ git clone https://github.com/MyczkowskiAdam/CollegeProjects
~$ cd CollegeProjects
~$ cd *Program-you-want-to-build*
// If you want to run it
~$ dotnet run
// If you want to build an executable
~$ dotnet build //then run the executable

That's it, your program should be running now!