4. DotNetNote.Database 프로젝트를 SQL Server LocalDB의 DotNetNote 데이터베이스로 게시한다. 이에 대한 데이터베이스 연결 문자열 정보는 DotNetNote 웹 프로젝트 루트에 있는 appsettings.json 파일에 기록되어 있다.
{ “ConnectionStrings”: { “DefaultConnection”: “Server=(localdb)\mssqllocaldb;Database=DotNetNote;Trusted_Connection=True;” }, “Logging”: { “IncludeScopes”: false, “LogLevel”: { “Default”: “Debug”, “System”: “Information”, “Microsoft”: “Information” } } }