aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-02-25 22:01:06 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-02-25 22:01:06 -0500
commite51b128d3a4ad4e4013fcab9a37888ca0558f8eb (patch)
tree01d371e85ba8353c2f8a9c0051136a2b57080952
parent5f03ea982d73504ec25d0ba54d8807bc65ef8aa5 (diff)
Repair breaking project file changes
-rw-r--r--libs/VNLib.Plugins.Sessions.Cache.Client/src/VNLib.Plugins.Sessions.Cache.Client.csproj4
-rw-r--r--plugins/SessionProvider/src/SessionProvider.csproj11
2 files changed, 6 insertions, 9 deletions
diff --git a/libs/VNLib.Plugins.Sessions.Cache.Client/src/VNLib.Plugins.Sessions.Cache.Client.csproj b/libs/VNLib.Plugins.Sessions.Cache.Client/src/VNLib.Plugins.Sessions.Cache.Client.csproj
index d4dc65f..284acdb 100644
--- a/libs/VNLib.Plugins.Sessions.Cache.Client/src/VNLib.Plugins.Sessions.Cache.Client.csproj
+++ b/libs/VNLib.Plugins.Sessions.Cache.Client/src/VNLib.Plugins.Sessions.Cache.Client.csproj
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
+ <TargetFramework>net6.0</TargetFramework>
<RootNamespace>VNLib.Plugins.Sessions.Cache.Client</RootNamespace>
<AssemblyName>VNLib.Plugins.Sessions.Cache.Client</AssemblyName>
<NeutralLanguage>en-US</NeutralLanguage>
@@ -9,7 +10,7 @@
<AnalysisLevel>latest-all</AnalysisLevel>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
</PropertyGroup>
-
+
<PropertyGroup>
<PackageId>VNLib.Plugins.Sessions.Cache.Client</PackageId>
<Authors>Vaughn Nugent</Authors>
@@ -40,7 +41,6 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.4.33" />
</ItemGroup>
<ItemGroup>
diff --git a/plugins/SessionProvider/src/SessionProvider.csproj b/plugins/SessionProvider/src/SessionProvider.csproj
index 3e5aa55..418e629 100644
--- a/plugins/SessionProvider/src/SessionProvider.csproj
+++ b/plugins/SessionProvider/src/SessionProvider.csproj
@@ -10,13 +10,16 @@
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AnalysisLevel>latest-all</AnalysisLevel>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
+
+ <!-- Resolve nuget dll files and store them in the output dir -->
+ <EnableDynamicLoading>true</EnableDynamicLoading>
</PropertyGroup>
<PropertyGroup>
- <PackageId>VNLib.Plugins.Sessions.SessionProvider</PackageId>
<Authors>Vaughn Nugent</Authors>
<Company>Vaughn Nugent</Company>
<Product>SessionProvider</Product>
+ <PackageId>VNLib.Plugins.Sessions.SessionProvider</PackageId>
<Description>
An Essentials framework plugin that provides HTTP sessions by dynamically loading configurable session provider libraries
</Description>
@@ -36,12 +39,6 @@
</PackageReference>
</ItemGroup>
- <!-- Resolve nuget dll files and store them in the output dir -->
- <PropertyGroup>
- <EnableDynamicLoading>true</EnableDynamicLoading>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- <AnalysisLevel>latest-all</AnalysisLevel>
- </PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\..\..\core\lib\Net.Http\src\VNLib.Net.Http.csproj" />
<ProjectReference Include="..\..\..\..\..\core\lib\Plugins.Essentials\src\VNLib.Plugins.Essentials.csproj" />