Skip to content

Commit 92fdc3b

Browse files
committed
Add initial project
1 parent 103afa0 commit 92fdc3b

Some content is hidden

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

60 files changed

+40455
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.28922.388
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CustomFeatureFilter", "CustomFeatureFilter\CustomFeatureFilter.csproj", "{FF183581-70D4-46B7-BBAB-FABEA0867723}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{FF183581-70D4-46B7-BBAB-FABEA0867723}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{FF183581-70D4-46B7-BBAB-FABEA0867723}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{FF183581-70D4-46B7-BBAB-FABEA0867723}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{FF183581-70D4-46B7-BBAB-FABEA0867723}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {00BD299D-1D12-4CB9-A6DF-291A5577FCFA}
24+
EndGlobalSection
25+
EndGlobal
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+
}
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<UserSecretsId>aspnet-CustomFeatureFilter-448E9684-C96C-4D6D-8475-3A0DE137CF3B</UserSecretsId>
6+
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
7+
</PropertyGroup>
8+
9+
10+
<ItemGroup>
11+
<PackageReference Include="Microsoft.AspNetCore.App" />
12+
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
13+
</ItemGroup>
14+
15+
</Project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Text;
4+
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
5+
using Microsoft.EntityFrameworkCore;
6+
7+
namespace CustomFeatureFilter.Data
8+
{
9+
public class ApplicationDbContext : IdentityDbContext
10+
{
11+
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)
12+
: base(options)
13+
{
14+
}
15+
}
16+
}

CustomFeatureFilter/CustomFeatureFilter/Data/Migrations/00000000000000_CreateIdentitySchema.Designer.cs

Lines changed: 236 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)