aboutsummaryrefslogtreecommitdiff
path: root/plugins/SessionProvider
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/SessionProvider')
-rw-r--r--plugins/SessionProvider/README.md9
-rw-r--r--plugins/SessionProvider/src/SessionProvider.csproj22
2 files changed, 20 insertions, 11 deletions
diff --git a/plugins/SessionProvider/README.md b/plugins/SessionProvider/README.md
index f0b4649..9584fb3 100644
--- a/plugins/SessionProvider/README.md
+++ b/plugins/SessionProvider/README.md
@@ -1,9 +1,8 @@
-# VNLib.Plugins.Extensions.Validation
-*An extension library for data validation helpers and extension methods using FluentValidation*
+# SessionProvider
+*An Essentials framework plugin that provides HTTP sessions by dynamically loading configurable session provider libraries*
#### 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.
-## FluentValidation
-
-This library includes a package reference to [FluentValidation](https://github.com/FluentValidation/FluentValidation) which can also be found on nuget.org. \ No newline at end of file
+## License
+Source files in for this project are licensed to you under the GNU Affero General Public License (or any later version). See the LICENSE files for more information. \ No newline at end of file
diff --git a/plugins/SessionProvider/src/SessionProvider.csproj b/plugins/SessionProvider/src/SessionProvider.csproj
index 4df3823..3e5aa55 100644
--- a/plugins/SessionProvider/src/SessionProvider.csproj
+++ b/plugins/SessionProvider/src/SessionProvider.csproj
@@ -2,17 +2,27 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
- <Nullable>enable</Nullable>
<RootNamespace>VNLib.Plugins.Sessions</RootNamespace>
<AssemblyName>SessionProvider</AssemblyName>
- <PackageId>SessionProvider</PackageId>
+ <Version>1.0.3.2</Version>
+ <NeutralLanguage>en-US</NeutralLanguage>
+ <Nullable>enable</Nullable>
+ <GenerateDocumentationFile>True</GenerateDocumentationFile>
+ <AnalysisLevel>latest-all</AnalysisLevel>
+ <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <PackageId>VNLib.Plugins.Sessions.SessionProvider</PackageId>
<Authors>Vaughn Nugent</Authors>
+ <Company>Vaughn Nugent</Company>
<Product>SessionProvider</Product>
+ <Description>
+ An Essentials framework plugin that provides HTTP sessions by dynamically loading configurable session provider libraries
+ </Description>
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
- <Version>1.0.3.1</Version>
- <PackageProjectUrl>https://www.vaughnugent.com/resources/software</PackageProjectUrl>
- <SignAssembly>True</SignAssembly>
- <AssemblyOriginatorKeyFile>\\vaughnnugent.com\Internal\Folder Redirection\vman\Documents\Programming\Software\StrongNameingKey.snk</AssemblyOriginatorKeyFile>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Plugins.Sessions</PackageProjectUrl>
+ <RepositoryUrl>https://github.com/VnUgE/VNLib.Plugins.Sessions/tree/master/plugins/SessionProvider</RepositoryUrl>
</PropertyGroup>
<ItemGroup>