├── .vs ├── Booksonic Editor │ ├── v14 │ │ └── .suo │ └── v15 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ ├── storage.ide │ │ ├── storage.ide-shm │ │ └── storage.ide-wal └── Booksonic Library Editor │ └── v14 │ └── .suo ├── Booksonic Editor.sln ├── Booksonic Editor ├── Booksonic Library Editor.csproj ├── Booksonic Library Editor.csproj.user ├── Editor.Designer.cs ├── Editor.cs ├── Editor.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── DescBuilder.jar │ └── booksonic.ico ├── app.config ├── bin │ ├── Debug │ │ ├── Booksonic Editor.exe │ │ ├── Booksonic Editor.exe.config │ │ ├── Booksonic Editor.pdb │ │ ├── Booksonic Editor.vshost.exe │ │ ├── Booksonic Editor.vshost.exe.config │ │ ├── Booksonic Editor.vshost.exe.manifest │ │ ├── log │ │ │ └── booksonic-library-editor.log │ │ ├── log4net.dll │ │ └── log4net.xml │ ├── Debugeditor.log │ └── Release │ │ ├── Booksonic Editor.exe │ │ ├── Booksonic Editor.exe.config │ │ ├── Booksonic Editor.pdb │ │ ├── Booksonic Editor.vshost.exe │ │ ├── Booksonic Editor.vshost.exe.config │ │ ├── Booksonic Editor.vshost.exe.manifest │ │ ├── log4net.dll │ │ └── log4net.xml ├── obj │ ├── Debug │ │ ├── Booksonic Editor.exe │ │ ├── Booksonic Editor.pdb │ │ ├── Booksonic Library Editor.csproj.CopyComplete │ │ ├── Booksonic Library Editor.csproj.CoreCompileInputs.cache │ │ ├── Booksonic Library Editor.csproj.FileListAbsolute.txt │ │ ├── Booksonic Library Editor.csproj.GenerateResource.Cache │ │ ├── Booksonic Library Editor.csprojAssemblyReference.cache │ │ ├── Booksonic Library Editor.csprojResolveAssemblyReference.cache │ │ ├── Booksonic_Editor.Editor.resources │ │ ├── Booksonic_Editor.Properties.Resources.resources │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ └── Release │ │ ├── Booksonic Editor.exe │ │ ├── Booksonic Editor.pdb │ │ ├── Booksonic Library Editor.csproj.CopyComplete │ │ ├── Booksonic Library Editor.csproj.CoreCompileInputs.cache │ │ ├── Booksonic Library Editor.csproj.FileListAbsolute.txt │ │ ├── Booksonic Library Editor.csproj.GenerateResource.Cache │ │ ├── Booksonic Library Editor.csprojAssemblyReference.cache │ │ ├── Booksonic_Editor.Editor.resources │ │ ├── Booksonic_Editor.Properties.Resources.resources │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll └── packages.config ├── Booksonic Library Editor 2.png ├── Booksonic Library Editor 3.png ├── Booksonic Library Editor 4.png ├── Booksonic Library Editor 5.png ├── Booksonic Library Editor.png ├── Booksonic Setup ├── Booksonic Setup.vdproj ├── BooksonicLibraryEditorInstaller.SED ├── Debug │ ├── Booksonic Setup.msi │ └── setup.exe └── Release │ └── Booksonic Library Editor 2.0.zip ├── README.md ├── UpgradeLog.htm └── packages └── log4net.2.0.8 ├── .signature.p7s ├── lib ├── net20-full │ ├── log4net.dll │ └── log4net.xml ├── net35-client │ ├── log4net.dll │ └── log4net.xml ├── net35-full │ ├── log4net.dll │ └── log4net.xml ├── net40-client │ ├── log4net.dll │ └── log4net.xml ├── net40-full │ ├── log4net.dll │ └── log4net.xml ├── net45-full │ ├── log4net.dll │ └── log4net.xml └── netstandard1.3 │ └── log4net.dll └── log4net.2.0.8.nupkg /.vs/Booksonic Editor/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Editor/v14/.suo -------------------------------------------------------------------------------- /.vs/Booksonic Editor/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Editor/v15/.suo -------------------------------------------------------------------------------- /.vs/Booksonic Editor/v15/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Editor/v15/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /.vs/Booksonic Library Editor/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/.vs/Booksonic Library Editor/v14/.suo -------------------------------------------------------------------------------- /Booksonic Editor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor.sln -------------------------------------------------------------------------------- /Booksonic Editor/Booksonic Library Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Booksonic Library Editor.csproj -------------------------------------------------------------------------------- /Booksonic Editor/Booksonic Library Editor.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Booksonic Library Editor.csproj.user -------------------------------------------------------------------------------- /Booksonic Editor/Editor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Editor.Designer.cs -------------------------------------------------------------------------------- /Booksonic Editor/Editor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Editor.cs -------------------------------------------------------------------------------- /Booksonic Editor/Editor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Editor.resx -------------------------------------------------------------------------------- /Booksonic Editor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Program.cs -------------------------------------------------------------------------------- /Booksonic Editor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Booksonic Editor/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Booksonic Editor/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Properties/Resources.resx -------------------------------------------------------------------------------- /Booksonic Editor/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Booksonic Editor/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Properties/Settings.settings -------------------------------------------------------------------------------- /Booksonic Editor/Resources/DescBuilder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Resources/DescBuilder.jar -------------------------------------------------------------------------------- /Booksonic Editor/Resources/booksonic.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/Resources/booksonic.ico -------------------------------------------------------------------------------- /Booksonic Editor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/app.config -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.exe -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.exe.config -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.pdb -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe.config -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/Booksonic Editor.vshost.exe.manifest -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/log/booksonic-library-editor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/log/booksonic-library-editor.log -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/log4net.dll -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debug/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debug/log4net.xml -------------------------------------------------------------------------------- /Booksonic Editor/bin/Debugeditor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Debugeditor.log -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.exe -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.exe.config -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.pdb -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe.config -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/Booksonic Editor.vshost.exe.manifest -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/log4net.dll -------------------------------------------------------------------------------- /Booksonic Editor/bin/Release/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/bin/Release/log4net.xml -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Editor.exe -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Editor.pdb -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f6ac9de0297fa98f0dbbca463f3e0861b078c22 2 | -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Library Editor.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Library Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic Library Editor.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic Library Editor.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic_Editor.Editor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic_Editor.Editor.resources -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/Booksonic_Editor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/Booksonic_Editor.Properties.Resources.resources -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic Editor.exe -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Editor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic Editor.pdb -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0f6ac9de0297fa98f0dbbca463f3e0861b078c22 2 | -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic Library Editor.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic Library Editor.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic Library Editor.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic_Editor.Editor.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic_Editor.Editor.resources -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/Booksonic_Editor.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/Booksonic_Editor.Properties.Resources.resources -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Booksonic Editor/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /Booksonic Editor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Editor/packages.config -------------------------------------------------------------------------------- /Booksonic Library Editor 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Library Editor 2.png -------------------------------------------------------------------------------- /Booksonic Library Editor 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Library Editor 3.png -------------------------------------------------------------------------------- /Booksonic Library Editor 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Library Editor 4.png -------------------------------------------------------------------------------- /Booksonic Library Editor 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Library Editor 5.png -------------------------------------------------------------------------------- /Booksonic Library Editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Library Editor.png -------------------------------------------------------------------------------- /Booksonic Setup/Booksonic Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Setup/Booksonic Setup.vdproj -------------------------------------------------------------------------------- /Booksonic Setup/BooksonicLibraryEditorInstaller.SED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Setup/BooksonicLibraryEditorInstaller.SED -------------------------------------------------------------------------------- /Booksonic Setup/Debug/Booksonic Setup.msi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Setup/Debug/Booksonic Setup.msi -------------------------------------------------------------------------------- /Booksonic Setup/Debug/setup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Setup/Debug/setup.exe -------------------------------------------------------------------------------- /Booksonic Setup/Release/Booksonic Library Editor 2.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/Booksonic Setup/Release/Booksonic Library Editor 2.0.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/README.md -------------------------------------------------------------------------------- /UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/UpgradeLog.htm -------------------------------------------------------------------------------- /packages/log4net.2.0.8/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/.signature.p7s -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net20-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net20-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net20-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net20-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net35-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net35-client/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net35-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net35-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net35-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-client/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net40-client/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-client/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net40-client/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net40-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net40-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net40-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net45-full/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net45-full/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/net45-full/log4net.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/net45-full/log4net.xml -------------------------------------------------------------------------------- /packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/lib/netstandard1.3/log4net.dll -------------------------------------------------------------------------------- /packages/log4net.2.0.8/log4net.2.0.8.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/galacticat/booksonic-library-editor/HEAD/packages/log4net.2.0.8/log4net.2.0.8.nupkg --------------------------------------------------------------------------------