aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-07-27 01:39:44 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-07-27 01:39:44 -0400
commit1074db64cc7bae103240ff1220d50d1958b7a900 (patch)
treea9cff64a3ce836027820b1c536b1a88db4e13a0d /lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj
parentab07d9d36e3e61f48584920d882d95dead6e7600 (diff)
Native compression lib first build, managed, and tests
Diffstat (limited to 'lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj')
-rw-r--r--lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj37
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj b/lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj
new file mode 100644
index 0000000..e91c640
--- /dev/null
+++ b/lib/Net.Compression/VNLib.Net.Compression/VNLib.Net.Compression.csproj
@@ -0,0 +1,37 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>net6.0</TargetFramework>
+ <RootNamespace>VNLib.Net.Compression</RootNamespace>
+ <AssemblyName>VNLib.Net.Compression</AssemblyName>
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ <Nullable>enable</Nullable>
+ <GenerateDocumentationFile>True</GenerateDocumentationFile>
+ <AnalysisLevel>latest-all</AnalysisLevel>
+ <RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
+
+ <!--Enable dynamic loading for debugging-->
+ <EnableDynamicLoading>true</EnableDynamicLoading>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <PackageId>VNLib.Net.Compression</PackageId>
+ <Authors>Vaughn Nugent</Authors>
+ <Company>Vaughn Nugent</Company>
+ <Product>VNLib Native Http Compression Provider</Product>
+ <Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
+ <Description>
+ .NET/6.0 dynamically loadable managed wrapper library for loading vnlib_compress native library. It provides
+ an implementation of the IHttpCompressorManager interface for use with the VNLib.Net.Http library and servers
+ wishing to support dynamic response compression.
+ </Description>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Core</PackageProjectUrl>
+ <RepositoryUrl>https://github.com/VnUgE/VNLib.Core/tree/main/lib/Net.Compression</RepositoryUrl>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\..\Net.Http\src\VNLib.Net.Http.csproj" />
+ <ProjectReference Include="..\..\Utils\src\VNLib.Utils.csproj" />
+ </ItemGroup>
+
+</Project>