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

View File

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

View File

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