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

83
.gitignore vendored
View File

@ -1,41 +1,42 @@
# Autosave files # Autosave files
*~ *~
# build # build
[Oo]bj/ [Oo]bj/
[Bb]in/ [Bb]in/
packages/ packages/
TestResults/ TestResults/
# globs # globs
Makefile.in Makefile.in
*.DS_Store *.DS_Store
*.sln.cache *.sln.cache
*.suo *.suo
*.cache *.cache
*.pidb *.pidb
*.userprefs *.userprefs
*.usertasks *.usertasks
config.log config.log
config.make config.make
config.status config.status
aclocal.m4 aclocal.m4
install-sh install-sh
autom4te.cache/ autom4te.cache/
*.user *.user
*.tar.gz *.tar.gz
tarballs/ tarballs/
test-results/ test-results/
Thumbs.db Thumbs.db
.vs/ .vs/
# Mac bundle stuff # Mac bundle stuff
*.dmg *.dmg
*.app *.app
# resharper # resharper
*_Resharper.* *_Resharper.*
*.Resharper *.Resharper
# 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>