aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-02-14 13:23:38 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-02-14 13:23:38 -0500
commitf0f182b903c6807d87640514d2c1250f7d871d26 (patch)
treefc8b721dd72da40c2a5def14065044cbf13b8b66 /lib/Utils
parenta4d1d5acff5760a9432117cae634ca98881ad0ec (diff)
msbuild project file update for build stack, typo fixes
Diffstat (limited to 'lib/Utils')
-rw-r--r--lib/Utils/README.md7
-rw-r--r--lib/Utils/src/VNLib.Utils.csproj21
2 files changed, 21 insertions, 7 deletions
diff --git a/lib/Utils/README.md b/lib/Utils/README.md
index a3be003..60a65c5 100644
--- a/lib/Utils/README.md
+++ b/lib/Utils/README.md
@@ -1,6 +1,6 @@
# VNLib.Utils
-A .NET/C# library for common .NET operation optimizations.
+A .NET 6 /C# library for common .NET operation optimizations.
namespaces
- VNLib.Utils.Async - Provides classes for asynchronous access synchronization and some asynchronous collections
@@ -9,6 +9,9 @@ namespaces
- VNLib.Utils.Logging - Logging interfaces for zero dependency logging
- VNLib.Utils.Memory - Utilities for safely accessing unmanaged memory and CLR memory
- VNLib.Utils.Memory.Caching - Data structures for managed object, data caching, and interfaces for cache-able objects
+- VNLib.Utils.Memory.Diagnostics - Data structures for assisting in unmanaged memory diagnostics, and library wide memory diagnostics enablement
+- VNLib.Utils.Native - Utilities for safely (dynamically) loading and accessing platform native libraries.
+- VNLib.Utils.Resources - Abstractions and base data structures for holding and accessing resources.
#### 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.
@@ -33,7 +36,7 @@ The Memory.Diagnostics namespace was added to provide a wrapper for tracking IUn
## Usage
A usage breakdown would be far to lengthy for this library, and instead I intend to keep valid and comprehensive documentation in Visual Studio XML documentation files included in this project's src directory.
-This library is a utilities library and therefor may be directly included in your application or libraries,
+This library is a utilities library and therefor may be directly included in your application or libraries.
### License
diff --git a/lib/Utils/src/VNLib.Utils.csproj b/lib/Utils/src/VNLib.Utils.csproj
index 907ee1e..36fd1ca 100644
--- a/lib/Utils/src/VNLib.Utils.csproj
+++ b/lib/Utils/src/VNLib.Utils.csproj
@@ -3,30 +3,41 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>VNLib.Utils</RootNamespace>
-
<AssemblyName>VNLib.Utils</AssemblyName>
<Version>1.0.1.10</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<AnalysisLevel>latest-all</AnalysisLevel>
- <SignAssembly>True</SignAssembly>
- <AssemblyOriginatorKeyFile>\\vaughnnugent.com\Internal\Folder Redirection\vman\Documents\Programming\Software\StrongNameingKey.snk</AssemblyOriginatorKeyFile>
<RunAnalyzersDuringBuild>false</RunAnalyzersDuringBuild>
</PropertyGroup>
<PropertyGroup>
+ <PackageId>VNLib.Utils</PackageId>
<Authors>Vaughn Nugent</Authors>
+ <Company>Vaughn Nugent</Company>
<Product>VNLib Utilities Library</Product>
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
- <PackageProjectUrl>https://www.vaughnnugent.com/resources</PackageProjectUrl>
- <Description>Base utilities library, structs, classes</Description>
+ <Description>
+ .NET/6.0 Utilities library for high-performance common operations. Utilities and abstractions for building and
+ diagnosing native memory implementations. Dyanmic native library loading, IO, extensions, data encoding, resource
+ access, and asynchronous cooperation primitives.
+ </Description>
+ <PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Core</PackageProjectUrl>
+ <RepositoryUrl>https://github.com/VnUgE/VNLib.Core/tree/main/lib/Utils</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
+ <ItemGroup>
+ <None Include="..\README.md">
+ <Pack>True</Pack>
+ <PackagePath>\</PackagePath>
+ </None>
+ </ItemGroup>
+
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>