├── .config └── dotnet-tools.json ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── 10_bug_report.yml │ ├── 20_feature_request.yml │ ├── 30_question.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actionlint-matcher.json ├── dependabot.yml ├── release.yml ├── renovate.json ├── update-dotnet-sdk.json ├── workflows │ ├── build.yml │ ├── bump-version.yml │ ├── codeql.yml │ ├── dependency-review.yml │ ├── lint.yml │ ├── ossf-scorecard.yml │ ├── publish.yml │ └── release.yml └── zizmor.yml ├── .gitignore ├── .markdownlint.json ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── .vsconfig ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── Directory.Build.props ├── Directory.Packages.props ├── LICENSE ├── NuGet.config ├── SECURITY.md ├── SqlLocalDb.ruleset ├── SqlLocalDb.slnx ├── exclusion.dic ├── global.json ├── package-icon.png ├── package-readme.md ├── readme.md ├── samples ├── README.md ├── TodoApp.Tests │ ├── TodoApp.Tests.csproj │ └── TodoRepositoryTests.cs └── TodoApp │ ├── Controllers │ └── HomeController.cs │ ├── Data │ ├── ITodoRepository.cs │ ├── TodoContext.cs │ ├── TodoInitializer.cs │ ├── TodoItem.cs │ ├── TodoMigration.cs │ └── TodoRepository.cs │ ├── Models │ ├── ErrorViewModel.cs │ ├── TodoItemModel.cs │ └── TodoListViewModel.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── ITodoService.cs │ └── TodoService.cs │ ├── TodoApp.csproj │ ├── Views │ ├── Home │ │ ├── Index.cshtml │ │ ├── _AddItem.cshtml │ │ └── _ViewItem.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ └── js │ └── site.js ├── src ├── SqlLocalDb │ ├── ArgumentNullExceptionExtensions.cs │ ├── CallerArgumentExpressionAttribute.cs │ ├── EventIds.cs │ ├── ILoggerExtensions.cs │ ├── ISqlLocalDbApi.cs │ ├── ISqlLocalDbApiAdapter.cs │ ├── ISqlLocalDbApiExtensions.cs │ ├── ISqlLocalDbInstanceInfo.cs │ ├── ISqlLocalDbInstanceInfoExtensions.cs │ ├── ISqlLocalDbInstanceManager.cs │ ├── ISqlLocalDbInstanceManagerExtensions.cs │ ├── ISqlLocalDbVersionInfo.cs │ ├── Interop │ │ ├── IRegistry.cs │ │ ├── IRegistryKey.cs │ │ ├── LocalDbInstanceApi.cs │ │ ├── LocalDbInstanceInfo.cs │ │ ├── LocalDbVersionInfo.cs │ │ ├── NativeMethods.cs │ │ ├── SafeLibraryHandle.cs │ │ ├── WindowsRegistry.cs │ │ └── WindowsRegistryKey.cs │ ├── MartinCostello.SqlLocalDb.csproj │ ├── PublicAPI │ │ ├── PublicAPI.Shipped.txt │ │ └── PublicAPI.Unshipped.txt │ ├── SR.Designer.cs │ ├── SR.en-GB.resx │ ├── SR.resx │ ├── SRHelper.cs │ ├── SqlLocalDbApi.cs │ ├── SqlLocalDbErrors.cs │ ├── SqlLocalDbException.cs │ ├── SqlLocalDbInstanceInfo.cs │ ├── SqlLocalDbInstanceManager.cs │ ├── SqlLocalDbOptions.cs │ ├── SqlLocalDbServiceCollectionExtensions.cs │ ├── SqlLocalDbVersionInfo.cs │ ├── StopInstanceOptions.cs │ └── TemporarySqlLocalDbInstance.cs └── TestApp │ ├── MartinCostello.SqlLocalDb.TestApp.csproj │ ├── Program.cs │ ├── Strings.Designer.cs │ └── Strings.resx ├── stylecop.json └── tests └── SqlLocalDb.Tests ├── AssemblyTests.cs ├── EventIdsTests.cs ├── Examples.cs ├── ISqlLocalDbApiExtensionsTests.cs ├── ISqlLocalDbInstanceInfoExtensionsTests.cs ├── ISqlLocalDbInstanceManagerExtensionsTests.cs ├── Interop ├── WindowsRegistryKeyTests.cs └── WindowsRegistryTests.cs ├── MartinCostello.SqlLocalDb.Tests.csproj ├── NotInParallelTests.cs ├── NotWindowsFactAttribute.cs ├── RunAsAdminFactAttribute.cs ├── SqlLocalDbApiTests.cs ├── SqlLocalDbExceptionTests.cs ├── SqlLocalDbInstanceInfoTests.cs ├── SqlLocalDbInstanceManagerTests.cs ├── SqlLocalDbOptionsTests.cs ├── SqlLocalDbServiceCollectionExtensionsTests.cs ├── SqlLocalDbVersionInfoTests.cs ├── WindowsCIOnlyFactAttribute.cs └── WindowsOnlyFactAttribute.cs /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.sh eol=lf 3 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @martincostello 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/ISSUE_TEMPLATE/10_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/20_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/ISSUE_TEMPLATE/20_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/30_question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/ISSUE_TEMPLATE/30_question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actionlint-matcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/actionlint-matcher.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/update-dotnet-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/update-dotnet-sdk.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/bump-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/bump-version.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/ossf-scorecard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/ossf-scorecard.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/zizmor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.github/zizmor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/.vsconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/NuGet.config -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SqlLocalDb.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/SqlLocalDb.ruleset -------------------------------------------------------------------------------- /SqlLocalDb.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/SqlLocalDb.slnx -------------------------------------------------------------------------------- /exclusion.dic: -------------------------------------------------------------------------------- 1 | callback 2 | Unshare 3 | -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/global.json -------------------------------------------------------------------------------- /package-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/package-icon.png -------------------------------------------------------------------------------- /package-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/package-readme.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/readme.md -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/TodoApp.Tests/TodoApp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp.Tests/TodoApp.Tests.csproj -------------------------------------------------------------------------------- /samples/TodoApp.Tests/TodoRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp.Tests/TodoRepositoryTests.cs -------------------------------------------------------------------------------- /samples/TodoApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/ITodoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/ITodoRepository.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/TodoContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/TodoContext.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/TodoInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/TodoInitializer.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/TodoItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/TodoItem.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/TodoMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/TodoMigration.cs -------------------------------------------------------------------------------- /samples/TodoApp/Data/TodoRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Data/TodoRepository.cs -------------------------------------------------------------------------------- /samples/TodoApp/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /samples/TodoApp/Models/TodoItemModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Models/TodoItemModel.cs -------------------------------------------------------------------------------- /samples/TodoApp/Models/TodoListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Models/TodoListViewModel.cs -------------------------------------------------------------------------------- /samples/TodoApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Program.cs -------------------------------------------------------------------------------- /samples/TodoApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/TodoApp/Services/ITodoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Services/ITodoService.cs -------------------------------------------------------------------------------- /samples/TodoApp/Services/TodoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Services/TodoService.cs -------------------------------------------------------------------------------- /samples/TodoApp/TodoApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/TodoApp.csproj -------------------------------------------------------------------------------- /samples/TodoApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/Home/_AddItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/Home/_AddItem.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/Home/_ViewItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/Home/_ViewItem.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /samples/TodoApp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/appsettings.Development.json -------------------------------------------------------------------------------- /samples/TodoApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/appsettings.json -------------------------------------------------------------------------------- /samples/TodoApp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/wwwroot/css/site.css -------------------------------------------------------------------------------- /samples/TodoApp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /samples/TodoApp/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/samples/TodoApp/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/SqlLocalDb/ArgumentNullExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ArgumentNullExceptionExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/CallerArgumentExpressionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/CallerArgumentExpressionAttribute.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/EventIds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/EventIds.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ILoggerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ILoggerExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbApi.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbApiAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbApiAdapter.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbApiExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbApiExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbInstanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbInstanceInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbInstanceInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbInstanceInfoExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbInstanceManager.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbInstanceManagerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbInstanceManagerExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/ISqlLocalDbVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/ISqlLocalDbVersionInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/IRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/IRegistry.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/IRegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/IRegistryKey.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/LocalDbInstanceApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/LocalDbInstanceApi.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/LocalDbInstanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/LocalDbInstanceInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/LocalDbVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/LocalDbVersionInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/NativeMethods.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/SafeLibraryHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/SafeLibraryHandle.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/WindowsRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/WindowsRegistry.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/Interop/WindowsRegistryKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/Interop/WindowsRegistryKey.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/MartinCostello.SqlLocalDb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/MartinCostello.SqlLocalDb.csproj -------------------------------------------------------------------------------- /src/SqlLocalDb/PublicAPI/PublicAPI.Shipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/PublicAPI/PublicAPI.Shipped.txt -------------------------------------------------------------------------------- /src/SqlLocalDb/PublicAPI/PublicAPI.Unshipped.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/PublicAPI/PublicAPI.Unshipped.txt -------------------------------------------------------------------------------- /src/SqlLocalDb/SR.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SR.Designer.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SR.en-GB.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SR.en-GB.resx -------------------------------------------------------------------------------- /src/SqlLocalDb/SR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SR.resx -------------------------------------------------------------------------------- /src/SqlLocalDb/SRHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SRHelper.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbApi.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbErrors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbErrors.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbException.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbInstanceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbInstanceInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbInstanceManager.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbOptions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/SqlLocalDbVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/SqlLocalDbVersionInfo.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/StopInstanceOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/StopInstanceOptions.cs -------------------------------------------------------------------------------- /src/SqlLocalDb/TemporarySqlLocalDbInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/SqlLocalDb/TemporarySqlLocalDbInstance.cs -------------------------------------------------------------------------------- /src/TestApp/MartinCostello.SqlLocalDb.TestApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/TestApp/MartinCostello.SqlLocalDb.TestApp.csproj -------------------------------------------------------------------------------- /src/TestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/TestApp/Program.cs -------------------------------------------------------------------------------- /src/TestApp/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/TestApp/Strings.Designer.cs -------------------------------------------------------------------------------- /src/TestApp/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/src/TestApp/Strings.resx -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/stylecop.json -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/AssemblyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/AssemblyTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/EventIdsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/EventIdsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/Examples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/Examples.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/ISqlLocalDbApiExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/ISqlLocalDbApiExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/ISqlLocalDbInstanceInfoExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/ISqlLocalDbInstanceInfoExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/ISqlLocalDbInstanceManagerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/ISqlLocalDbInstanceManagerExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/Interop/WindowsRegistryKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/Interop/WindowsRegistryKeyTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/Interop/WindowsRegistryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/Interop/WindowsRegistryTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/MartinCostello.SqlLocalDb.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/MartinCostello.SqlLocalDb.Tests.csproj -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/NotInParallelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/NotInParallelTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/NotWindowsFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/NotWindowsFactAttribute.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/RunAsAdminFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/RunAsAdminFactAttribute.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbApiTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbExceptionTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbInstanceInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbInstanceInfoTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbInstanceManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbInstanceManagerTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbOptionsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/SqlLocalDbVersionInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/SqlLocalDbVersionInfoTests.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/WindowsCIOnlyFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/WindowsCIOnlyFactAttribute.cs -------------------------------------------------------------------------------- /tests/SqlLocalDb.Tests/WindowsOnlyFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martincostello/sqllocaldb/HEAD/tests/SqlLocalDb.Tests/WindowsOnlyFactAttribute.cs --------------------------------------------------------------------------------