-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
151 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Nullable>enable</Nullable> | ||
<AnalysisLevel>latest-minimum</AnalysisLevel> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<NoWarn>1701;1702;CS1591</NoWarn> | ||
<LangVersion>latest</LangVersion> | ||
<Authors>Passingwind</Authors> | ||
<PackageProjectUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 9 additions & 33 deletions
42
src/Authentication.ApiKey/source/Passingwind.AspNetCore.Authentication.ApiKey.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,24 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<Import Project="..\..\..\common.props"/> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net6;net7</TargetFrameworks> | ||
<Nullable>enable</Nullable> | ||
<RootNamespace>Passingwind.AspNetCore.Authentication.ApiKey</RootNamespace> | ||
<AnalysisLevel>latest</AnalysisLevel> | ||
<GenerateDocumentationFile>True</GenerateDocumentationFile> | ||
<FileVersion>$(AssemblyVersion)</FileVersion> | ||
<AssemblyVersion>0.2</AssemblyVersion> | ||
<TargetFrameworks>net6;net7;net8</TargetFrameworks> | ||
<RootNamespace>Passingwind.AspNetCore.Authentication.ApiKey</RootNamespace> | ||
<Version>0.3.0</Version> | ||
<NoWarn>1701;1702;CS1591</NoWarn> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<PackageId>Passingwind.AspNetCore.Authentication.ApiKey</PackageId> | ||
<Title>Passingwind.AspNetCore.Authentication.ApiKey</Title> | ||
<Authors>Passingwind</Authors> | ||
<PackageProjectUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/jxnkwlp/Passingwind.CommonLibs</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<Title>Passingwind.AspNetCore.Authentication.ApiKey</Title> | ||
<PackageTags>authentication, ApiKey</PackageTags> | ||
<Description>ASP.NET Core authentication handler for the ApiKey protocol</Description> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<IncludeSymbols>True</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<PackageVersion>0.2.0</PackageVersion> | ||
<Description>ASP.NET Core authentication handler for the ApiKey protocol</Description> | ||
<PackageVersion>0.3.0</PackageVersion> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<FrameworkReference Include="Microsoft.AspNetCore.App" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="..\README.md"> | ||
<Pack>True</Pack> | ||
<PackagePath>\</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.