aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-02-25 21:08:37 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-02-25 21:08:37 -0500
commit3bfc707c736e4be22aa8ab6e9ff72d9d20387687 (patch)
treeca644942ba446e28b69b35d197fd1ae9d2908df4
parentead082ee3bd2160351348107308d329bc55e7c5d (diff)
Project meta + core features and upgrades
-rw-r--r--Libs/VNLib.Plugins.Essentials.Oauth/README.md2
-rw-r--r--Libs/VNLib.Plugins.Essentials.Oauth/src/VNLib.Plugins.Essentials.Oauth.csproj19
-rw-r--r--Plugins/OAuth2ClientApplications/src/OAuth2ClientApplications.csproj36
-rw-r--r--Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs18
4 files changed, 35 insertions, 40 deletions
diff --git a/Libs/VNLib.Plugins.Essentials.Oauth/README.md b/Libs/VNLib.Plugins.Essentials.Oauth/README.md
index 296f972..e932414 100644
--- a/Libs/VNLib.Plugins.Essentials.Oauth/README.md
+++ b/Libs/VNLib.Plugins.Essentials.Oauth/README.md
@@ -1,5 +1,5 @@
# VNLib.Plugins.Essentials.Oauth
-*An extension library for data validation helpers and extension methods using FluentValidation*
+*A library containing common data-structures for client application driven OAuth2 implementations*
#### Builds
Debug build w/ symbols & xml docs, release builds, NuGet packages, and individually packaged source code are available on my [website](https://www.vaughnnugent.com/resources/software). All tar-gzip (.tgz) files will have an associated .sha384 appended checksum of the desired download file.
diff --git a/Libs/VNLib.Plugins.Essentials.Oauth/src/VNLib.Plugins.Essentials.Oauth.csproj b/Libs/VNLib.Plugins.Essentials.Oauth/src/VNLib.Plugins.Essentials.Oauth.csproj
index 8063022..16e2526 100644
--- a/Libs/VNLib.Plugins.Essentials.Oauth/src/VNLib.Plugins.Essentials.Oauth.csproj
+++ b/Libs/VNLib.Plugins.Essentials.Oauth/src/VNLib.Plugins.Essentials.Oauth.csproj
@@ -4,24 +4,21 @@
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>VNLib.Plugins.Essentials.Oauth</RootNamespace>
<AssemblyName>VNLib.Plugins.Essentials.OAuth</AssemblyName>
- <Version>1.0.2.1</Version>
+ <NeutralLanguage>en-US</NeutralLanguage>
<Nullable>enable</Nullable>
<AnalysisLevel>latest-all</AnalysisLevel>
- <SignAssembly>True</SignAssembly>
- <AssemblyOriginatorKeyFile>\\vaughnnugent.com\Internal\Folder Redirection\vman\Documents\Programming\Software\StrongNameingKey.snk</AssemblyOriginatorKeyFile>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<PropertyGroup>
+ <PackageId>VNLib.Plugins.Essentials.OAuth</PackageId>
<Authors>Vaughn Nugent</Authors>
- <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
- <PackageProjectUrl>https://www.vaughnnugent.com/resources/software</PackageProjectUrl>
+ <Company>Vaughn Nugent</Company>
+ <Product>Essentials OAuth2 data structures library</Product>
<Description>A library containing common data-structures for client application driven OAuth2 implementations</Description>
- </PropertyGroup>
-
- <PropertyGroup>
- <!-- Enable dynamic loading as this lib may be used as a plugin -->
- <EnableDynamicLoading>true</EnableDynamicLoading>
+ <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Plugins.Essentials.Oauth</PackageProjectUrl>
+ <RepositoryUrl>https://github.com/VnUgE/VNLib.Plugins.Essentials.Oauth/tree/master/Libs/VNLib.Plugins.Essentials.Oauth</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
@@ -41,7 +38,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.13" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.14" />
</ItemGroup>
<ItemGroup>
diff --git a/Plugins/OAuth2ClientApplications/src/OAuth2ClientApplications.csproj b/Plugins/OAuth2ClientApplications/src/OAuth2ClientApplications.csproj
index 7af6bfa..c7fd89a 100644
--- a/Plugins/OAuth2ClientApplications/src/OAuth2ClientApplications.csproj
+++ b/Plugins/OAuth2ClientApplications/src/OAuth2ClientApplications.csproj
@@ -3,24 +3,30 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
- <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
- <Company>Vaughn Nugent</Company>
- <Authors>Vaughn Nugent</Authors>
- <AssemblyVersion>1.0.2.1</AssemblyVersion>
- <FileVersion>1.0.2.1</FileVersion>
- <PackageProjectUrl>https://www.vaughnnugent.com/resources</PackageProjectUrl>
- <Version>1.0.2.1</Version>
-
+ <AssemblyName>OAuth2ClientApplications</AssemblyName>
+ <RootNamespace>OAuth2ClientApplications</RootNamespace>
+ <GenerateDocumentationFile>False</GenerateDocumentationFile>
+ <AnalysisLevel>latest-all</AnalysisLevel>
+ <!--Enable dynamic loading-->
+ <EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
- <!-- Resolve nuget dll files and store them in the output dir -->
<PropertyGroup>
- <!--Enable dynamic loading-->
- <EnableDynamicLoading>true</EnableDynamicLoading>
- <Private>false</Private>
- <GenerateDocumentationFile>False</GenerateDocumentationFile>
- <AnalysisLevel>latest-all</AnalysisLevel>
+
</PropertyGroup>
+ <PropertyGroup>
+ <PackageId>VNLib.Plugins.Essentials.OAuth.ClientApplications</PackageId>
+ <Authors>Vaughn Nugent</Authors>
+ <Company>Vaughn Nugent</Company>
+ <Product>OAuth2 client application web api plugin</Product>
+ <Description>
+ An essentials framework plugin that provides user api access for managing OAuth2 client applications
+ </Description>
+ <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Plugins.Essentials.Oauth</PackageProjectUrl>
+ <RepositoryUrl>https://github.com/VnUgE/VNLib.Plugins.Essentials.Oauth/tree/master/Plugins/OAuth2ClientApplications</RepositoryUrl>
+ </PropertyGroup>
+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Deterministic>False</Deterministic>
</PropertyGroup>
@@ -36,7 +42,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="FluentValidation" Version="11.4.0" />
+ <PackageReference Include="FluentValidation" Version="11.5.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\Extensions\lib\VNLib.Plugins.Extensions.Loading.Sql\src\VNLib.Plugins.Extensions.Loading.Sql.csproj" />
diff --git a/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs b/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
index def6a35..3390a77 100644
--- a/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
+++ b/Plugins/OAuth2ClientApplications/src/OAuth2ClientAppsEntryPoint.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2023 Vaughn Nugent
*
* Library: VNLib
* Package: OAuth2ClientApplications
@@ -23,7 +23,6 @@
*/
using System;
-using System.Collections.Generic;
using OAuth2ClientApplications.Endpoints;
@@ -38,18 +37,11 @@ namespace OAuth2ClientApplications
public override string PluginName => "OAuth2.ClientApps";
protected override void OnLoad()
- {
- try
- {
- //Route the applications endpoint
- this.Route<ApplicationEndpoint>();
+ {
+ //Route the applications endpoint
+ this.Route<ApplicationEndpoint>();
- Log.Information("Plugin Loaded");
- }
- catch (KeyNotFoundException kne)
- {
- Log.Error("Missing required configuration variables, {reason}", kne.Message);
- }
+ Log.Information("Plugin Loaded");
}
protected override void OnUnLoad()