Netmash.Security.Authentication.Identity => Netmash.Security.Authentication.Tuitio
parent
18131ead03
commit
e659d3dd76
|
@ -62,7 +62,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Hosting.WindowsServ
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Logging.Api", "src\logging\Netmash.Logging.Api\Netmash.Logging.Api.csproj", "{5CB39BE9-0C83-4FDC-AB26-32642EA13639}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Logging.Api", "src\logging\Netmash.Logging.Api\Netmash.Logging.Api.csproj", "{5CB39BE9-0C83-4FDC-AB26-32642EA13639}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Security.Authentication.Identity", "src\security\authentication\Netmash.Security.Authentication.Identity\Netmash.Security.Authentication.Identity.csproj", "{D926068E-7C61-4130-B7A0-C38294F13855}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Security.Authentication.Tuitio", "src\security\authentication\Netmash.Security.Authentication.Tuitio\Netmash.Security.Authentication.Tuitio.csproj", "{D926068E-7C61-4130-B7A0-C38294F13855}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Test.Api", "src\test\Netmash.Test.Api\Netmash.Test.Api.csproj", "{B7B073F6-91D5-4EB1-876C-76F6BD612FD9}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Netmash.Test.Api", "src\test\Netmash.Test.Api\Netmash.Test.Api.csproj", "{B7B073F6-91D5-4EB1-876C-76F6BD612FD9}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -17,7 +17,7 @@ dotnet nuget push Netmash.Extensions.Swagger.1.0.6.nupkg -k ****KEY**** -s https
|
||||||
|
|
||||||
dotnet nuget push Netmash.Extensions.Http.1.0.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
dotnet nuget push Netmash.Extensions.Http.1.0.0.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
||||||
|
|
||||||
dotnet nuget push Netmash.Security.Authentication.Identity.1.0.8.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
dotnet nuget push Netmash.Security.Authentication.Tuitio.1.0.8.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
||||||
|
|
||||||
dotnet nuget push Netmash.Extensions.Caching.1.0.1.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
dotnet nuget push Netmash.Extensions.Caching.1.0.1.nupkg -k ****KEY**** -s https://lab.code-rove.com/public-nuget-server/nuget
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Netmash.Security.Authentication.Identity.Abstractions
|
namespace Netmash.Security.Authentication.Tuitio.Abstractions
|
||||||
{
|
{
|
||||||
public interface IAuthenticationOptions
|
public interface IAuthenticationOptions
|
||||||
{
|
{
|
|
@ -1,10 +1,10 @@
|
||||||
using Tuitio.Wrapper;
|
using Tuitio.Wrapper;
|
||||||
using Microsoft.AspNetCore.Authentication;
|
using Microsoft.AspNetCore.Authentication;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Netmash.Security.Authentication.Identity.Abstractions;
|
using Netmash.Security.Authentication.Tuitio.Abstractions;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Netmash.Security.Authentication.Identity
|
namespace Netmash.Security.Authentication.Tuitio
|
||||||
{
|
{
|
||||||
public static class AuthenticationExtensions
|
public static class AuthenticationExtensions
|
||||||
{
|
{
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Netmash.Security.Authentication.Identity.Constants
|
namespace Netmash.Security.Authentication.Tuitio.Constants
|
||||||
{
|
{
|
||||||
public struct ClaimTypes
|
public struct ClaimTypes
|
||||||
{
|
{
|
|
@ -1,4 +1,4 @@
|
||||||
namespace Netmash.Security.Authentication.Identity.Constants
|
namespace Netmash.Security.Authentication.Tuitio.Constants
|
||||||
{
|
{
|
||||||
internal struct QueryParams
|
internal struct QueryParams
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using Microsoft.AspNetCore.Authentication;
|
using Microsoft.AspNetCore.Authentication;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using Netmash.Security.Authentication.Identity.Abstractions;
|
using Netmash.Security.Authentication.Tuitio.Abstractions;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
@ -11,9 +11,9 @@ using System.Text.Encodings.Web;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Tuitio.PublishedLanguage.Dto;
|
using Tuitio.PublishedLanguage.Dto;
|
||||||
using Tuitio.Wrapper.Services;
|
using Tuitio.Wrapper.Services;
|
||||||
using c = Netmash.Security.Authentication.Identity.Constants;
|
using c = Netmash.Security.Authentication.Tuitio.Constants;
|
||||||
|
|
||||||
namespace Netmash.Security.Authentication.Identity
|
namespace Netmash.Security.Authentication.Tuitio
|
||||||
{
|
{
|
||||||
public class TuitioAuthenticationHandler : AuthenticationHandler<AuthenticationSchemeOptions>
|
public class TuitioAuthenticationHandler : AuthenticationHandler<AuthenticationSchemeOptions>
|
||||||
{
|
{
|
|
@ -1,8 +1,8 @@
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Netmash.Security.Authentication.Identity.Abstractions;
|
using Netmash.Security.Authentication.Tuitio.Abstractions;
|
||||||
using System;
|
using System;
|
||||||
|
|
||||||
namespace Netmash.Security.Authentication.Identity.Models
|
namespace Netmash.Security.Authentication.Tuitio.Models
|
||||||
{
|
{
|
||||||
public class AuthenticationOptions : IAuthenticationOptions
|
public class AuthenticationOptions : IAuthenticationOptions
|
||||||
{
|
{
|
|
@ -1,7 +1,7 @@
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
using Netmash.Security.Authentication.Identity;
|
using Netmash.Security.Authentication.Tuitio;
|
||||||
using Netmash.Security.Authentication.Identity.Models;
|
using Netmash.Security.Authentication.Tuitio.Models;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
|
|
||||||
namespace Netmash.Test.Api.Extensions
|
namespace Netmash.Test.Api.Extensions
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\extensions\swagger\Netmash.Extensions.Swagger\Netmash.Extensions.Swagger.csproj" />
|
<ProjectReference Include="..\..\extensions\swagger\Netmash.Extensions.Swagger\Netmash.Extensions.Swagger.csproj" />
|
||||||
<ProjectReference Include="..\..\infrastructure\Netmash.Infrastructure.DatabaseMigration\Netmash.Infrastructure.DatabaseMigration.csproj" />
|
<ProjectReference Include="..\..\infrastructure\Netmash.Infrastructure.DatabaseMigration\Netmash.Infrastructure.DatabaseMigration.csproj" />
|
||||||
<ProjectReference Include="..\..\security\authentication\Netmash.Security.Authentication.Identity\Netmash.Security.Authentication.Identity.csproj" />
|
<ProjectReference Include="..\..\security\authentication\Netmash.Security.Authentication.Tuitio\Netmash.Security.Authentication.Tuitio.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|
Loading…
Reference in New Issue