要求 .net core 2.1 引用包 Microsoft.AspNetCore.SpaServices 先在angular目录下执行 npm i npm run build 关键代码 services.AddSpaStaticFiles(c => { //这里设置路由 c.RootPath = "ClientApp/dist"; }); app.UseSpa(spa => { // To learn more about options for serving an A…
需求:现在一个应用是前后端开发分离,前端使用angular,后端使用 asp.net core 提供api ,开发完成后,现在需要把两个程序部署在同一个网站下,应该怎么处理? 首先可以参考微软的官方文档 Use the Angular project template with ASP.NET Core .net core 对前后端的部署还是很友好的,主要处理步骤如下: 1.配置服务 在startup中的 ConfigureServices()中声明 services.AddSpaStatic…
本文转自:http://andrewlock.net/an-introduction-to-oauth-2-using-facebook-in-asp-net-core/ This is the next post in a series on authentication and authorisation in ASP.NET Core. In this post I look in moderate depth at the OAuth 2.0 protocol as it pertain…