Compare commits

...

2 Commits

Author SHA1 Message Date
Harald Wolff ab10627bba Fix protection level of SimpleIndex type
ln.build - build0.waldrennach.l--n.de build job pending Details
2021-01-12 15:09:30 +01:00
Harald Wolff 434a6971b6 Update .gitignore, remove artefacts 2021-01-12 14:46:19 +01:00
3 changed files with 44 additions and 43 deletions

1
.gitignore vendored
View File

@ -39,3 +39,4 @@ Thumbs.db
# dotCover # dotCover
*.dotCover *.dotCover
.build

View File

@ -5,7 +5,7 @@ using System.Text;
namespace ln.objects.index namespace ln.objects.index
{ {
class SimpleIndex<T> : Index public class SimpleIndex<T> : Index
{ {
BTreeValueSet<T, Guid> index = new BTreeValueSet<T, Guid>(); BTreeValueSet<T, Guid> index = new BTreeValueSet<T, Guid>();
BTree<Guid, T> reverseIndex = new BTree<Guid, T>(); BTree<Guid, T> reverseIndex = new BTree<Guid, T>();

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<Version>1.0.0</Version> <Version>1.0.1</Version>
<Authors>Harald Wolff-Thobaben</Authors> <Authors>Harald Wolff-Thobaben</Authors>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup> </PropertyGroup>