Skip to content

Commit 1c4f145

Browse files
committed
webapp
1 parent 3c359a0 commit 1c4f145

File tree

87 files changed

+75563
-269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+75563
-269
lines changed

.github/workflows/win-live.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020
with:
2121
dotnet-version: '8.0.100'
2222

23-
- name: Build
24-
run: dotnet build -c Release
2523
- name: Publish
2624
run: dotnet publish -c Release -o publish
2725
- name: Deploy

.gitignore

Lines changed: 0 additions & 234 deletions
This file was deleted.
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@{
2+
Layout = "/Pages/Shared/_Layout.cshtml";
3+
}

Data/ApplicationDbContext.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
2+
using Microsoft.EntityFrameworkCore;
3+
4+
namespace dotnetweb.Data;
5+
6+
public class ApplicationDbContext : IdentityDbContext
7+
{
8+
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
9+
: base(options)
10+
{
11+
}
12+
}

0 commit comments

Comments
 (0)