├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── ZLocation.Tests ├── Meta.Tests.ps1 ├── ZLocation.Search.Tests.ps1 ├── ZLocation.Storage.Tests.ps1 ├── ZLocation.Tests.ps1 └── _mocks.ps1 ├── ZLocation ├── LiteDB │ ├── LICENSE │ └── LiteDB.dll ├── ZLocation.LiteDB.psd1 ├── ZLocation.LiteDB.psm1 ├── ZLocation.Search.psm1 ├── ZLocation.Service.psd1 ├── ZLocation.Service.psm1 ├── ZLocation.Storage.psm1 ├── ZLocation.psd1 └── ZLocation.psm1 └── appveyor.yml /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ignored -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/README.md -------------------------------------------------------------------------------- /ZLocation.Tests/Meta.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation.Tests/Meta.Tests.ps1 -------------------------------------------------------------------------------- /ZLocation.Tests/ZLocation.Search.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation.Tests/ZLocation.Search.Tests.ps1 -------------------------------------------------------------------------------- /ZLocation.Tests/ZLocation.Storage.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation.Tests/ZLocation.Storage.Tests.ps1 -------------------------------------------------------------------------------- /ZLocation.Tests/ZLocation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation.Tests/ZLocation.Tests.ps1 -------------------------------------------------------------------------------- /ZLocation.Tests/_mocks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation.Tests/_mocks.ps1 -------------------------------------------------------------------------------- /ZLocation/LiteDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/LiteDB/LICENSE -------------------------------------------------------------------------------- /ZLocation/LiteDB/LiteDB.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/LiteDB/LiteDB.dll -------------------------------------------------------------------------------- /ZLocation/ZLocation.LiteDB.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.LiteDB.psd1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.LiteDB.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.LiteDB.psm1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.Search.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.Search.psm1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.Service.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.Service.psd1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.Service.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.Service.psm1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.Storage.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.Storage.psm1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.psd1 -------------------------------------------------------------------------------- /ZLocation/ZLocation.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/ZLocation/ZLocation.psm1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vors/ZLocation/HEAD/appveyor.yml --------------------------------------------------------------------------------