-
1. Re: Is there a good example of an ASPNET program that runs on Linux?
dmulford Jun 24, 2016 10:59 AM (in response to hwindzio)1 of 1 people found this helpfulCheck out these projects I created
https://github.com/mw007/StackOverflowMonitor
https://github.com/mw007/adventure-works
Also, there's the MusicStore sample provided by Microsoft
-
2. Re: Is there a good example of an ASPNET program that runs on Linux?
rick_wagner Jun 24, 2016 2:18 PM (in response to hwindzio)Hello Heinz,
Yes, there are several!
To get the most basic, just type the following:
dotnet new
dotnet restore
dotnet run
That'll get you a very basic 'HelloWorld' program and will run it.
You'll soon be bored with that. The next step up is 3 three samples ASP.NET provides at [1]. There is a 'helloworld', a basic web application and small MVC program.
The next step up from that is the 'MusicStore', which is almost a real application. [2]
Following those in order should give a good path to .NET on RHEL coding. Good Luck!
Rick
[1] Home/samples/latest at dev · aspnet/Home · GitHub
[2] GitHub - aspnet/MusicStore: Sample MusicStore application that uses MVC and Entity Framework.