bman46 / InstagramEmbedDiscordBot

Embeds videos and images from an Instagram link into a Discord chat.
BSD 3-Clause "New" or "Revised" License
77 stars 26 forks source link

what is the run cmd? #6

Closed ehsansayrafi closed 3 years ago

ehsansayrafi commented 3 years ago

for ex , node.js is usually npm start what is it for c#?

bman46 commented 3 years ago

Javascript is an interpreted language, so it doesn't require the program to be complied. For C#, which is a compiled language, you need to run it through a compiler to get an executable file (.exe or other OS equivalent) so you can run it as you would any other desktop program.

I would suggest you download Visual Studio and compile it from there as it is the easiest. Opening the .sln file will open the project in visual studio.

If you would prefer command line, you can install the dotnet CLI tools and use the dotnet build "Instagram Reels Bot.sln" command.