9 Replies
$newproject
When creating a new project, prefer using .NET over .NET Framework, unless you have a very specific reason to be using .NET Framework.
.NET Framework is now legacy code and only get security fix updates, it no longer gets new features and is not recommended.
https://cdn.discordapp.com/attachments/569261465463160900/899381236617855016/unknown.png
Just pick a project and start
$helloworld
Written interactive course https://learn.microsoft.com/en-us/users/dotnet/collections/yz26f8y64n7k07
Videos https://dotnet.microsoft.com/learn/videos
Here's some tutorials for beginners
Which of these three should I choose?
Probably the console project if you're just starting out
I already have the code for working with the database, how can I compile it?
Why Visual Studio is so hard to figure out
What do you mean it's hard?
File -> publish
Or press the green arrow to run it
Or use the CLI and
dotnet publish
or dotnet build
the project