マガジンのカバー画像

覚書

5
運営しているクリエイター

#aspnetcore

【覚書】ASP.NET Core アプリケーションのIISへのデプロイ

■動作環境 ・Windows 10 ・Visual Studio Community 2019 ・.NET Core 3.1 ・IIS 10.0 ■備考 ・試験的にlocalhostのIISへデプロイ ・アプリケーション名は仮にCoreTestWebとする ■手順 1.IISをインストール 2.以下からHosting Bundleをインストール 3.IISでアプリケーションプールを追加 4.IISでサイトを追加 5.Visual Studioによるアプリケーションの発行

【覚書】ASP.NET Core Razor PagesとPostgreSQLとの接続

■動作環境 ・Visual Studio Community 2019 ・.NET Core 3.1 ■手順1.Npgsql.EntityFrameworkCore.PostgreSQLをNuGetよりインストール 2.モデルの追加※例:Models/Appuser​ using System.ComponentModel.DataAnnotations.Schema;namespace AspNetCoreTest.Models{ [Table("appuser"

【覚書】ASP.NET Core Razor Pages での Identity を使用しない Cookie 認証

■動作環境 ・Visual Studio Community 2019 ・.NET Core 3.1 ■Startup.csusing Microsoft.AspNetCore.Authentication.Cookies;using Microsoft.AspNetCore.Builder;using Microsoft.AspNetCore.Hosting;using Microsoft.Extensions.Configuration;using Microsoft