Skip to content

Commit 531baab

Browse files
committed
Package updates and license file copy/nuget package updates
1 parent b1645cb commit 531baab

File tree

14 files changed

+76
-998
lines changed

14 files changed

+76
-998
lines changed

lib/VNLib.Plugins.Extensions.VNCache/LICENSE.txt LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Contact information
44
Name: Vaughn Nugent
5-
Email: vnpublic@proton.me
5+
Email: vnpublic[at]proton.me
66
Website: https://www.vaughnnugent.com
77

88
The software in this repository is licensed under the GNU Affero GPL version 3.0 (or any later version).

LICENSE.txt

-195
This file was deleted.

Module.Taskfile.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version: '3'
1212

1313
vars:
1414
INT_DIR: '{{.SCRATCH_DIR}}/obj/{{.MODULE_NAME}}/'
15-
MS_ARGS: '/p:RunAnalyzersDuringBuild=false /p:IntermediateOutputPath="{{.INT_DIR}}" /p:UseCommonOutputDirectory=true /p:BuildInParallel=true /p:MultiProcessorCompilation=true'
15+
MS_ARGS: '/p:RunAnalyzersDuringBuild=false /p:IntermediateOutputPath="{{.INT_DIR}}" /p:UseCommonOutputDirectory=true /p:BuildInParallel=true /p:MultiProcessorCompilation=true /p:ErrorOnDuplicatePublishOutputFiles=false /p:ErrorOnDuplicatePublishOutputFiles=false'
1616
PACK_OUT: '{{.OUTPUT_DIR}}/{{.HEAD_SHA}}/pkg'
1717

1818
tasks:

Taskfile.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ tasks:
5151
cmds:
5252

5353
#copy license and readme to target
54-
- cd .. && powershell -Command "Copy-Item -Path ./LICENSE.txt -Destination '{{.BUILD_OUT}}/license.txt'"
5554
- cd .. && powershell -Command "Copy-Item -Path ./build.readme.md -Destination '{{.BUILD_OUT}}/readme.md'"
5655

5756
#tar outputs

lib/VNLib.Data.Caching.Extensions/LICENSE.txt

-195
This file was deleted.

lib/VNLib.Data.Caching.Extensions/src/VNLib.Data.Caching.Extensions.csproj

+16-4
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,26 @@
1414
<Authors>Vaughn Nugent</Authors>
1515
<Company>Vaughn Nugent</Company>
1616
<Product>VNLib distributed caching extension library</Product>
17-
<Description>
18-
A libray for working with VNCache distributed object cache networks.
19-
</Description>
17+
<Description>A libray for working with VNCache distributed object cache networks.</Description>
2018
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
2119
<PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Data.Caching</PackageProjectUrl>
2220
<RepositoryUrl>https://github.com/VnUgE/VNLib.Data.Caching/tree/master/lib/VNLib.Data.Caching.Extensions</RepositoryUrl>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
23+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2324
</PropertyGroup>
24-
25+
26+
<ItemGroup>
27+
<None Include="..\..\..\LICENSE">
28+
<Pack>True</Pack>
29+
<PackagePath>\</PackagePath>
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</None>
32+
<None Include="..\README.md">
33+
<Pack>True</Pack>
34+
<PackagePath>\</PackagePath>
35+
</None>
36+
</ItemGroup>
2537

2638
<ItemGroup>
2739
<PackageReference Include="ErrorProne.NET.CoreAnalyzers" Version="0.1.2">

lib/VNLib.Data.Caching.ObjectCache/LICENSE.txt

-195
This file was deleted.

lib/VNLib.Data.Caching.ObjectCache/src/VNLib.Data.Caching.ObjectCache.csproj

+16-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,27 @@
1414
<Company>Vaughn Nugent</Company>
1515
<Product>VNLib.Data.Caching.ObjectCache</Product>
1616
<PackageId>VNLib.Data.Caching.ObjectCache</PackageId>
17-
<Description>
18-
A library for a high-performance in-memory object-data caching, based on key-derrived cache buckets
19-
for wait distribution.
20-
</Description>
17+
<Description>A library for a high-performance in-memory object-data caching, based on key-derrived cache buckets for wait distribution.</Description>
2118
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
2219
<PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Data.Caching</PackageProjectUrl>
2320
<RepositoryUrl>https://github.com/VnUgE/VNLib.Data.Caching/tree/master/lib/VNLib.Data.Caching.ObjectCache</RepositoryUrl>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
23+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2424
</PropertyGroup>
2525

26+
<ItemGroup>
27+
<None Include="..\..\..\LICENSE">
28+
<Pack>True</Pack>
29+
<PackagePath>\</PackagePath>
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</None>
32+
<None Include="..\README.md">
33+
<Pack>True</Pack>
34+
<PackagePath>\</PackagePath>
35+
</None>
36+
</ItemGroup>
37+
2638
<ItemGroup>
2739
<PackageReference Include="ErrorProne.NET.CoreAnalyzers" Version="0.1.2">
2840
<PrivateAssets>all</PrivateAssets>

lib/VNLib.Data.Caching/LICENSE.txt

-195
This file was deleted.

lib/VNLib.Data.Caching/src/VNLib.Data.Caching.csproj

+9-3
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,21 @@
1414
<Authors>Vaughn Nugent</Authors>
1515
<Company>Vaughn Nugent</Company>
1616
<Product>VNLib FBM Data caching extension library</Product>
17-
<Description>
18-
Provides constants and extensions for a key-value data caching protocol layer atop the Fixed Buffer Messaging protocol to work VNCache servers. Provides rapid cache development
19-
</Description>
17+
<Description>Provides constants and extensions for a key-value data caching protocol layer atop the Fixed Buffer Messaging protocol to work VNCache servers. Provides rapid cache development</Description>
2018
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
2119
<PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Data.Caching</PackageProjectUrl>
2220
<RepositoryUrl>https://github.com/VnUgE/VNLib.Data.Caching/tree/master/lib/VNLib.Data.Caching</RepositoryUrl>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
23+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2324
</PropertyGroup>
2425

2526
<ItemGroup>
27+
<None Include="..\..\..\LICENSE">
28+
<Pack>True</Pack>
29+
<PackagePath>\</PackagePath>
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</None>
2632
<None Include="..\README.md">
2733
<Pack>True</Pack>
2834
<PackagePath>\</PackagePath>

lib/VNLib.Plugins.Extensions.VNCache/src/VNLib.Plugins.Extensions.VNCache.csproj

+16-4
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,27 @@
1414
<Company>Vaughn Nugent</Company>
1515
<Product>VNLib.Plugins.Extensions.VNCache</Product>
1616
<PackageId>VNLib.Plugins.Extensions.VNCache</PackageId>
17-
<Description>
18-
An Essentials framework extension library for integrating VNCache global caching provider into applications
19-
for distributed data caching, and extensions for entity caching.
20-
</Description>
17+
<Description>An Essentials framework extension library for integrating VNCache global caching provider into applications for distributed data caching, and extensions for entity caching.</Description>
2118
<Copyright>Copyright © 2023 Vaughn Nugent</Copyright>
2219
<PackageProjectUrl>https://www.vaughnnugent.com/resources/software/modules/VNLib.Data.Caching</PackageProjectUrl>
2320
<RepositoryUrl>https://github.com/VnUgE/VNLib.Data.Caching/tree/master/lib/VNLib.Plugins.Extensions.VNCache</RepositoryUrl>
21+
<PackageReadmeFile>README.md</PackageReadmeFile>
22+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
23+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
2424
</PropertyGroup>
2525

26+
<ItemGroup>
27+
<None Include="..\..\..\LICENSE">
28+
<Pack>True</Pack>
29+
<PackagePath>\</PackagePath>
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</None>
32+
<None Include="..\README.md">
33+
<Pack>True</Pack>
34+
<PackagePath>\</PackagePath>
35+
</None>
36+
</ItemGroup>
37+
2638
<ItemGroup>
2739
<ProjectReference Include="..\..\..\..\Extensions\lib\VNLib.Plugins.Extensions.Loading\src\VNLib.Plugins.Extensions.Loading.csproj" />
2840
<ProjectReference Include="..\..\VNLib.Data.Caching.Extensions\src\VNLib.Data.Caching.Extensions.csproj" />

0 commit comments

Comments
 (0)