-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeWorks.Auth.csproj
More file actions
38 lines (34 loc) · 1.74 KB
/
CodeWorks.Auth.csproj
File metadata and controls
38 lines (34 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>CodeWorks.Auth</PackageId>
<Version>0.2.0</Version>
<Authors>CodeWorks</Authors>
<Company>CodeWorks</Company>
<Description>Flexible, pluggable authentication module for .NET APIs with JWT, email login, and MFA support.</Description>
<PackageTags>authentication jwt email dotnet</PackageTags>
<RepositoryUrl>https://github.com/codeworksacademy/CodeWorks.Auth</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/codeworksacademy/CodeWorks.Auth</PackageProjectUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.3.1" />
<None Include="./readme.md" Pack="true" PackagePath="\"/>
<Compile Remove="samples/**/*.cs" />
<None Include="samples/**/*.cs" Pack="true" PackagePath="samples/" />
<None Include="samples/**/*.md" Pack="true" PackagePath="samples/" />
<None Include="samples/**/*.json" Pack="true" PackagePath="samples/" />
<None Include="samples/**/*.http" Pack="true" PackagePath="samples/" />
<None Remove="samples/**/bin/**" />
<None Remove="samples/**/obj/**" />
<None Include="sql/**/*.sql" Pack="true" PackagePath="sql/" />
</ItemGroup>
</Project>