├── .config └── tsaoptions.json ├── .gitattributes ├── .gitignore ├── .nuget └── packages.config ├── .vscode └── settings.json ├── .vsts-ci.yml ├── .vsts-compliance.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── VSIXBootstrapper.sln ├── azure-pipelines.yml ├── inc ├── Common.Cpp.props ├── Common.Cpp.targets └── Common.props ├── nuget.config ├── pkg └── VSIXBootstrapper │ ├── VSIXBootstrapper.signproj │ ├── VsixBootstrapper.nuspec │ └── build │ └── VSIXBootstrapper.props ├── src ├── VSIXBootstrapper.Shared │ ├── CoInitializer.h │ ├── CommandLine.h │ ├── Exceptions.h │ ├── Process.h │ ├── RegistryKey.h │ ├── Resources.h │ ├── VSIXBootstrapper.Shared.vcxitems │ ├── VSIXBootstrapper.Shared.vcxitems.filters │ └── VSIXBootstrapper.h └── VSIXBootstrapper │ ├── Program.cpp │ ├── Resource.h │ ├── VSIXBootstrapper.rc │ ├── VSIXBootstrapper.vcxproj │ ├── VSIXBootstrapper.vcxproj.filters │ ├── packages.config │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── test └── VSIXBootstrapper.Test │ ├── CoInitializerTests.cpp │ ├── CommandLineTests.cpp │ ├── ExceptionsTests.cpp │ ├── ProcessTests.cpp │ ├── RegistryKeyTests.cpp │ ├── ResourcesTests.cpp │ ├── VSIXBootstrapper.Test.vcxproj │ ├── VSIXBootstrapper.Test.vcxproj.filters │ ├── VSIXBootstrapperTests.cpp │ ├── packages.config │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── version.json /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vsts-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.vsts-ci.yml -------------------------------------------------------------------------------- /.vsts-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/.vsts-compliance.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VSIXBootstrapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/VSIXBootstrapper.sln -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /inc/Common.Cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/inc/Common.Cpp.props -------------------------------------------------------------------------------- /inc/Common.Cpp.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/inc/Common.Cpp.targets -------------------------------------------------------------------------------- /inc/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/inc/Common.props -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/nuget.config -------------------------------------------------------------------------------- /pkg/VSIXBootstrapper/VSIXBootstrapper.signproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/pkg/VSIXBootstrapper/VSIXBootstrapper.signproj -------------------------------------------------------------------------------- /pkg/VSIXBootstrapper/VsixBootstrapper.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/pkg/VSIXBootstrapper/VsixBootstrapper.nuspec -------------------------------------------------------------------------------- /pkg/VSIXBootstrapper/build/VSIXBootstrapper.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/pkg/VSIXBootstrapper/build/VSIXBootstrapper.props -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/CoInitializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/CoInitializer.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/CommandLine.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/Exceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/Exceptions.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/Process.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/RegistryKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/RegistryKey.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/Resources.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/Resources.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/VSIXBootstrapper.Shared.vcxitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/VSIXBootstrapper.Shared.vcxitems -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/VSIXBootstrapper.Shared.vcxitems.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/VSIXBootstrapper.Shared.vcxitems.filters -------------------------------------------------------------------------------- /src/VSIXBootstrapper.Shared/VSIXBootstrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper.Shared/VSIXBootstrapper.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper/Program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/Program.cpp -------------------------------------------------------------------------------- /src/VSIXBootstrapper/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/Resource.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper/VSIXBootstrapper.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/VSIXBootstrapper.rc -------------------------------------------------------------------------------- /src/VSIXBootstrapper/VSIXBootstrapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj -------------------------------------------------------------------------------- /src/VSIXBootstrapper/VSIXBootstrapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/VSIXBootstrapper.vcxproj.filters -------------------------------------------------------------------------------- /src/VSIXBootstrapper/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/packages.config -------------------------------------------------------------------------------- /src/VSIXBootstrapper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/stdafx.cpp -------------------------------------------------------------------------------- /src/VSIXBootstrapper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/stdafx.h -------------------------------------------------------------------------------- /src/VSIXBootstrapper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/src/VSIXBootstrapper/targetver.h -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/CoInitializerTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/CoInitializerTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/CommandLineTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/CommandLineTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/ExceptionsTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/ExceptionsTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/ProcessTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/ProcessTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/RegistryKeyTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/RegistryKeyTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/ResourcesTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/ResourcesTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/VSIXBootstrapper.Test.vcxproj.filters -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/VSIXBootstrapperTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/VSIXBootstrapperTests.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/packages.config -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/stdafx.cpp -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/stdafx.h -------------------------------------------------------------------------------- /test/VSIXBootstrapper.Test/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/test/VSIXBootstrapper.Test/targetver.h -------------------------------------------------------------------------------- /version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vsixbootstrapper/HEAD/version.json --------------------------------------------------------------------------------