From bba0769b31896c4da3162807930c75e1b84e9c7c Mon Sep 17 00:00:00 2001 From: Tom Dykstra Date: Fri, 24 Feb 2017 14:26:08 -0800 Subject: [PATCH] fix link --- aspnetcore/tutorials/your-first-mac-aspnet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/your-first-mac-aspnet.md b/aspnetcore/tutorials/your-first-mac-aspnet.md index 6df4dad780..51cc64a0d3 100644 --- a/aspnetcore/tutorials/your-first-mac-aspnet.md +++ b/aspnetcore/tutorials/your-first-mac-aspnet.md @@ -39,7 +39,7 @@ The template "Empty ASP.NET Core Web Application" created successfully. ``` * Startup.cs : [Startup Class](../fundamentals/startup.md) - class configures the request pipeline that handles all requests made to the application. -* Program.cs : [Program Class](../fundamentals/) that contains the Main entry point of the application. +* Program.cs : [Program Class](../fundamentals/index.md) that contains the Main entry point of the application. * firstmacapp.csproj : [Project file](https://docs.microsoft.com/en-us/dotnet/articles/core/preview3/tools/csproj) MSBuild Project file format for ASP.NET Core applications. Contains Project to Project references, NuGet References and other project related items. * appsettings.json / appsettings.Development.json : Environment base app settings configuration file. [See Configuration](xref:fundamentals/configuration). * bower.json : Bower package dependencies for the project.