I do not wanna set up virtual machine on my macbook. I downloaded Rider on my laptop. However, I cannot see templates like(https://i.stack.imgur.com/gLXbP.png). May you help me about it?
Thanks from now.
CodePudding user response:
This is not possible without any other software like a VM to emulate the windows environment.
"Yes, compiled applications that target the .NET framework will absolutely not run on MacOS, or Linux, or Solaris or..... anything not Windows. .NET core is now portable to MacOS though."
CodePudding user response:
You can use .NET 5 or higher on a Mac, it's cross-platform. .NET Framework, on the other hand, is not cross-platform unless you use something like Mono, which I wouldn't recommend doing unless there's a very specific reason to do so. If you need to develop a Windows app, you're better off using a Windows device.
I'd suggest looking into the differences between .NET, .NET Framework, and .NET Core, if you're not already aware of them, because the naming does not make it particularly clear.