aboutsummaryrefslogtreecommitdiff
path: root/Plugins/SessionProvider/SessionProvider.csproj
diff options
context:
space:
mode:
authorLibravatar vman <public@vaughnnugent.com>2022-11-30 14:58:14 -0500
committerLibravatar vman <public@vaughnnugent.com>2022-11-30 14:58:14 -0500
commita0d5a8d40de9806e21e64475e3297a2a84effe22 (patch)
tree510ffabe5a8617e7a9388641bf5aefb2fd51742d /Plugins/SessionProvider/SessionProvider.csproj
parent71ad09dda9ac67ef481d115fb9544dcd56834f22 (diff)
Project cleanup + analyzer updates
Diffstat (limited to 'Plugins/SessionProvider/SessionProvider.csproj')
-rw-r--r--Plugins/SessionProvider/SessionProvider.csproj20
1 files changed, 9 insertions, 11 deletions
diff --git a/Plugins/SessionProvider/SessionProvider.csproj b/Plugins/SessionProvider/SessionProvider.csproj
index d20a524..4ed7dc1 100644
--- a/Plugins/SessionProvider/SessionProvider.csproj
+++ b/Plugins/SessionProvider/SessionProvider.csproj
@@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
+ <Nullable>enable</Nullable>
<RootNamespace>VNLib.Plugins.Essentials.Sessions</RootNamespace>
<AssemblyName>SessionProvider</AssemblyName>
<PackageId>SessionProvider</PackageId>
@@ -9,8 +10,7 @@
<Product>SessionProvider</Product>
<Copyright>Copyright © 2022 Vaughn Nugent</Copyright>
<Version>1.0.3.1</Version>
- <PackageProjectUrl>www.vaughnnugent.com/resources</PackageProjectUrl>
- <Platforms>AnyCPU;x64</Platforms>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
@@ -27,16 +27,10 @@
<!-- Resolve nuget dll files and store them in the output dir -->
<PropertyGroup>
<EnableDynamicLoading>true</EnableDynamicLoading>
- <AssemblyVersion>1.0.2.1</AssemblyVersion>
- <FileVersion>1.0.2.1</FileVersion>
- <Nullable>enable</Nullable>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <Deterministic>False</Deterministic>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
- <Deterministic>False</Deterministic>
+ <GenerateDocumentationFile>True</GenerateDocumentationFile>
+ <AnalysisLevel>latest-all</AnalysisLevel>
</PropertyGroup>
+
<ItemGroup>
<ProjectReference Include="..\..\..\..\VNLib\Utils\src\VNLib.Utils.csproj" />
<ProjectReference Include="..\..\..\Extensions\VNLib.Plugins.Extensions.Loading\VNLib.Plugins.Extensions.Loading.csproj" />
@@ -53,4 +47,8 @@
<Exec Command="start xcopy &quot;$(TargetDir)&quot; &quot;F:\Programming\Web Plugins\DevPlugins\$(TargetName)&quot; /E /Y /R" />
</Target>
+ <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
+ <Exec Command="erase &quot;F:\Programming\Web Plugins\DevPlugins\$(TargetName)&quot; /q &gt; nul" />
+ </Target>
+
</Project>