Skip to content

Commit

Permalink
Merge pull request #14 from TechLiam/v1.2.0
Browse files Browse the repository at this point in the history
V1.2.0
  • Loading branch information
TechLiam authored Oct 15, 2019
2 parents 8d82640 + 62839f7 commit b536f62
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 5 deletions.
29 changes: 29 additions & 0 deletions NugetDocumentationFile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# SQRL For .Net Standard
SQRL (Secure Quick Reliable Login) for the .Net Standard runtimes.

## Secure Quick Reliable Login
Is a highly secure user privacy based authentication system that removes the need for users to have more than one password for a global identity https://www.grc.com/sqrl/sqrl.htm for more information of the protocol.

## How to install
You can install this as a package by running the following:
Package manager
```
Install-Package SqrlForNet
```

CLI
```
dotnet add package SqrlForNet
```

Or searching for it in with Nuget Manager within your project

## Requirements
To use this package you will need a .Net Standard 2.0 app

For use with ASP.net you will need a .Net core 2.2 or later version

## How to use
For help on using this package please visit the GitHub Wiki here https://github.com/TechLiam/SQRL-For-Dot-Net-Standard/wiki

For examples use the examples here: https://github.com/TechLiam/SQRL-For-Dot-Net-Standard/tree/master/Examples
13 changes: 8 additions & 5 deletions SqrlForNet/SqrlForNet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Version>1.1.0</Version>
<Version>1.2.0</Version>
<Authors>Liam Raper</Authors>
<Description>SQRL for the .Net Standard runtimes. Secure Quick Reliable Login is a highly secure user privacy based authentication system that removes the need for users to have more than one password for a global identity https://www.grc.com/sqrl/sqrl.htm for more information of the protocal.</Description>
<Copyright>Liam Raper 2019</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/TechLiam/SQRL-For-Dot-Net-Standard</PackageProjectUrl>
<RepositoryUrl>https://github.com/TechLiam/SQRL-For-Dot-Net-Standard</RepositoryUrl>
<PackageTags>SQRL, Authentication, ASP.net, ASP.net core, .net core 3.0, ASP.net 3.0</PackageTags>
<PackageReleaseNotes>1.1.0 - Added ASK capabilities, HTML helpers and SQRL Provider (used to get SQRL links server side)
<PackageReleaseNotes>1.2.0 - Added async hooks and Logging for middleware. Fixed bug with OnTicketReceived been called twice
1.1.0 - Added ASK capabilities, HTML helpers and SQRL Provider (used to get SQRL links server side)
1.0.1 - Added the removal of old NUTs for default in memory operation
1.0.0 - Production ready!!! CPS implomented and all opts have hooks
0.9.0 - .net core 3.0 friendly
Expand All @@ -29,10 +30,10 @@
<RepositoryType>GitHub</RepositoryType>
<SignAssembly>false</SignAssembly>
<PackageIcon>sqrllogo.png</PackageIcon>
<PackageVersion>1.1.0</PackageVersion>
<PackageVersion>1.2.0</PackageVersion>
<Title>SqrlForNet</Title>
<AssemblyVersion>1.1.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<AssemblyVersion>1.2.0</AssemblyVersion>
<FileVersion>1.2.0.0</FileVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand All @@ -43,6 +44,8 @@

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants />
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b536f62

Please sign in to comment.