Skip to content

Commit

Permalink
Merge pull request #1 from joelbyford/dotnet6
Browse files Browse the repository at this point in the history
Bump to dotnet 6.x
  • Loading branch information
joelbyford authored May 19, 2022
2 parents 556946f + 0dbc08b commit ec1e5a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PublishGitHubArtifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ jobs:
id: latesttag # The step ID to refer to later.

# Install DotNet 5 SDK
- name: Setup dotnet 5.0.x
- name: Setup dotnet 6.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x
source-url: https://nuget.pkg.github.com/${{github.repository_owner}}/index.json
env:
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand Down
4 changes: 2 additions & 2 deletions BasicAuth.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Title>BasicAuthLibirary</Title>
<PackageId>joelbyford.BasicAuth</PackageId>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Version>1.1.1</Version>
<Version>1.2.0</Version>
<Authors>Joel Byford</Authors>
<Company>Mathco Software</Company>
<Product>joelbyford.BasicAuthLibirary</Product>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# BasicAuth
A library which includes a dotnet 5 (dotnet core 5) Basic Authentication middleware component which can be added to dotnet web and API apps on Azure to enable classic/old RFC 2617 Basic Authentication.
A library which includes a dotnet 6 Basic Authentication middleware component which can be added to dotnet web and API apps on Azure to enable classic/old RFC 2617 Basic Authentication.

## Install - Leveraging [NuGet Package](https://www.nuget.org/packages/joelbyford.BasicAuth/)
Assuming you would like to add the library to your project via a NuGet package, the following are the steps required:
Expand Down

0 comments on commit ec1e5a0

Please sign in to comment.