{"id":27814483,"url":"https://github.com/dotnet-presentations/aspnetcore-for-beginners","last_synced_at":"2025-05-01T12:43:56.715Z","repository":{"id":42187415,"uuid":"127181903","full_name":"dotnet-presentations/aspnetcore-for-beginners","owner":"dotnet-presentations","description":"Half day workshop for developers who are completely new to .NET Core and ASP.NET","archived":false,"fork":false,"pushed_at":"2023-04-11T06:59:14.000Z","size":12019,"stargazers_count":173,"open_issues_count":0,"forks_count":60,"subscribers_count":13,"default_branch":"main","last_synced_at":"2023-11-07T18:38:31.788Z","etag":null,"topics":["asp-net-core","workshop"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dotnet-presentations.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-03-28T18:29:33.000Z","updated_at":"2023-11-03T22:42:57.000Z","dependencies_parsed_at":"2023-02-10T15:00:46.603Z","dependency_job_id":null,"html_url":"https://github.com/dotnet-presentations/aspnetcore-for-beginners","commit_stats":null,"previous_names":[],"tags_count":0,"template":null,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-presentations%2Faspnetcore-for-beginners","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-presentations%2Faspnetcore-for-beginners/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-presentations%2Faspnetcore-for-beginners/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotnet-presentations%2Faspnetcore-for-beginners/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotnet-presentations","download_url":"https://codeload.github.com/dotnet-presentations/aspnetcore-for-beginners/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251879060,"owners_count":21658684,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asp-net-core","workshop"],"created_at":"2025-05-01T12:43:56.024Z","updated_at":"2025-05-01T12:43:56.706Z","avatar_url":"https://github.com/dotnet-presentations.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ASP.NET Core for Beginners - Workshop\n\nThis is a half day workshop for developers who are completely new to .NET Core and ASP.NET.\n\n[![build](https://github.com/dotnet-presentations/aspnetcore-for-beginners/actions/workflows/build-validation.yml/badge.svg)](https://github.com/dotnet-presentations/aspnetcore-for-beginners/actions/workflows/build-validation.yml)\n## Setup\n\n### VS Code\n\nInstall the following:\n\n* [.NET SDK](https://dotnet.microsoft.com/download)\n* [Visual Studio Code](https://code.visualstudio.com/?wt.mc_id=adw-brand\u0026gclid=Cj0KCQjwqYfWBRDPARIsABjQRYwLe3b9dJMixA98s8nS8QfuNBKGsiRVRXzB93fe4E27LGK5KLrGcnYaAgdREALw_wcB)\n\n### Visual Studio\n\n* [Visual Studio 2022](https://visualstudio.microsoft.com/downloads/?wt.mc_id=adw-brand\u0026gclid=Cj0KCQjwqYfWBRDPARIsABjQRYwLe3b9dJMixA98s8nS8QfuNBKGsiRVRXzB93fe4E27LGK5KLrGcnYaAgdREALw_wcB)\n* In the Visual Studio Installer, install the following workload:\n  * ASP.NET and web development\n\n### Visual Studio for Mac\n\n* [Visual Studio 2022 for Mac](https://visualstudio.microsoft.com/vs/mac/?wt.mc_id=adw-brand\u0026gclid=Cj0KCQjwqYfWBRDPARIsABjQRYwLe3b9dJMixA98s8nS8QfuNBKGsiRVRXzB93fe4E27LGK5KLrGcnYaAgdREALw_wcB)\n* In the Visual Studio for Mac Installer, install the .NET Core target.\n\n### What you'll build\n\nIn this tutorial, you'll learn the basics of building a simple ASP.NET Core Razor Pages web app.\n\n## Tutorial breakdown\n\n| VS Code Tutorial | Visual Studio Tutorial | Visual Studio for Mac Tutorial| Topics |\n| ----- | ---- | ---- | ---- |\n| [Tutorial 1](/Tutorial/1-Create%20a%20Razor%20Page/Create-a-Razorpage.md) | [VS Tutorial 1](/Tutorial/1-Create%20a%20Razor%20Page/Create-a-Razorpage-VS.md) | [VS for Mac Tutorial 1](/Tutorial/1-Create%20a%20Razor%20Page/Create-a-Razorpage-VSMac.md) | Create a Razor Page using dotnet CLI and VS Code.|\n| [Tutorial 2](/Tutorial/2-Add%20a%20model/Addamodel.md) | [VS Tutorial 2](/Tutorial/2-Add%20a%20model/Addamodel-VS.md) | [VS for Mac Tutorial 2](/Tutorial/2-Add%20a%20model/Addamodel-VSMac.md)| Add a model to an ASP.NET Core Razor Pages app |\n| [Tutorial 3](/Tutorial/3-Update%20Pages/update.md) | [VS Tutorial 3](/Tutorial/3-Update%20Pages/update-VS.md) | [VS for Mac Tutorial 3](/Tutorial/3-Update%20Pages/update-VSMac.md) | Update the generated pages |\n| [Tutorial 4](/Tutorial/4-Add%20Search/SearchPage.md) | [VS Tutorial 4](/Tutorial/4-Add%20Search/SearchPage-VS.md) | [VS for Mac Tutorial 4](/Tutorial/4-Add%20Search/SearchPage-VSMac.md) | Adding search to a Razor Pages app |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnet-presentations%2Faspnetcore-for-beginners","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotnet-presentations%2Faspnetcore-for-beginners","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotnet-presentations%2Faspnetcore-for-beginners/lists"}