aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-01-12 17:47:29 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-01-12 17:47:29 -0500
commit0dcecff0f51bdb51b070c05255fbcd9338ab11f2 (patch)
tree4ed7ed2ba544d7466fe8a3e700e0f49b95cd0efc /lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
parent18e0e1cf14468132728a4cf629be4b8f36f4b056 (diff)
Large project reorder and consolidation
Diffstat (limited to 'lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj')
-rw-r--r--lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj53
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj b/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
new file mode 100644
index 0000000..7d6485a
--- /dev/null
+++ b/lib/Plugins.PluginBase/src/VNLib.Plugins.PluginBase.csproj
@@ -0,0 +1,53 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net6.0</TargetFramework>
+ <RootNamespace>VNLib.Plugins</RootNamespace>
+ <PackageId>VNLib.Plugins.PluginBase</PackageId>
+ <Version>1.0.1.2</Version>
+ <Authors>Vaughn Nugent</Authors>
+ <Copyright>Copyright © 2022 Vaughn Nugent</Copyright>
+ <DocumentationFile></DocumentationFile>
+ <SignAssembly>True</SignAssembly>
+ <AssemblyOriginatorKeyFile>\\vaughnnugent.com\Internal\Folder Redirection\vman\Documents\Programming\Software\StrongNameingKey.snk</AssemblyOriginatorKeyFile>
+ </PropertyGroup>
+
+ <!-- Resolve nuget dll files and store them in the output dir -->
+ <PropertyGroup>
+ <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
+ <GenerateDocumentationFile>True</GenerateDocumentationFile>
+ <AnalysisLevel>latest-all</AnalysisLevel>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources</PackageProjectUrl>
+ <Description>A base class for VNLib.Plugins that provides all supported loading functionalities, with built-in logging, loading, task-managment and endpoint routing.</Description>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
+ <Deterministic>False</Deterministic>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
+ <Deterministic>False</Deterministic>
+ </PropertyGroup>
+ <ItemGroup>
+ <None Include="..\.editorconfig" Link=".editorconfig" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="ErrorProne.NET.CoreAnalyzers" Version="0.1.2">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="ErrorProne.NET.Structs" Version="0.1.2">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="Serilog" Version="2.12.0" />
+ <PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
+ <PackageReference Include="Serilog.Sinks.File" Version="5.0.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\..\Plugins\src\VNLib.Plugins.csproj" />
+ <ProjectReference Include="..\..\Utils\src\VNLib.Utils.csproj" />
+ </ItemGroup>
+
+
+</Project>