Skip to content

Commit

Permalink
add sample web app
Browse files Browse the repository at this point in the history
  • Loading branch information
jxnkwlp committed Sep 17, 2023
1 parent 3ad56da commit e9c4809
Show file tree
Hide file tree
Showing 85 changed files with 75,247 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Passingwind.CommonLibs.sln
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Passingwind.Authentication.
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Passingwind.SwaggerExtensions", "src\Passingwind.SwaggerExtensions\Passingwind.SwaggerExtensions.csproj", "{300C8EF1-B040-4F50-BA65-175EE5A82A0F}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CE8B3FAE-E7B7-4EB6-BEB5-716F2B91A315}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{D7A92342-2C8A-4121-8824-95AEF5856AAF}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{31171FC1-4062-4E5D-9DF2-60DC54896CA5}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleWeb", "samples\SampleWeb\SampleWeb.csproj", "{41CC2AD6-8FDC-4F00-8CF1-94C89666137E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -21,10 +29,19 @@ Global
{300C8EF1-B040-4F50-BA65-175EE5A82A0F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{300C8EF1-B040-4F50-BA65-175EE5A82A0F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{300C8EF1-B040-4F50-BA65-175EE5A82A0F}.Release|Any CPU.Build.0 = Release|Any CPU
{41CC2AD6-8FDC-4F00-8CF1-94C89666137E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{41CC2AD6-8FDC-4F00-8CF1-94C89666137E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{41CC2AD6-8FDC-4F00-8CF1-94C89666137E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{41CC2AD6-8FDC-4F00-8CF1-94C89666137E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8EF49E09-42AC-4B7C-BDBB-96EDE277F030} = {CE8B3FAE-E7B7-4EB6-BEB5-716F2B91A315}
{300C8EF1-B040-4F50-BA65-175EE5A82A0F} = {CE8B3FAE-E7B7-4EB6-BEB5-716F2B91A315}
{41CC2AD6-8FDC-4F00-8CF1-94C89666137E} = {D7A92342-2C8A-4121-8824-95AEF5856AAF}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {F179D1F8-05C5-4E5D-BB62-10E41921A6BC}
EndGlobalSection
Expand Down
8 changes: 8 additions & 0 deletions samples/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Version>1.0.0</Version>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>
3 changes: 3 additions & 0 deletions samples/SampleWeb/Areas/Identity/Pages/_ViewStart.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@{
Layout = "/Pages/Shared/_Layout.cshtml";
}
11 changes: 11 additions & 0 deletions samples/SampleWeb/Data/ApplicationDbContext.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;

namespace SampleWeb.Data;
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
: base(options)
{
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e9c4809

Please sign in to comment.