Quick example of getting a site up and running with .Net Core on Mac. This site converts the publishsettings from Azure Websites and converts it to yml for AppVeyor.
In order to run this solution you need to have bower and .Net Core installed on your machine.
Clone the repository.
git clone https://github.com/Cyberkruz/publishprofile-webdeploy.git
cd publishprofile-webdeploy
Restore NuGet packages
cd src/
dotnet restore
Restore the frontend packages
cd Cyberkruz.PublishProfile.Web
bower install
cd ..
Run the tests
dotnet test Cyberkruz.PublishProfile.Web.Tests/Cyberkruz.PublishProfile.Web.Tests.csproj
Build the project
dotnet build
Run the project
cd Cyberkruz.PublishProfile.Web
dotnet run