├── .gitattributes ├── .gitignore ├── HelloWorldSsmsExtension.sln ├── HelloWorldSsmsExtension ├── HelloWorldCommand.cs ├── HelloWorldCommandPackage.cs ├── HelloWorldCommandPackage.vsct ├── HelloWorldSsmsExtension.csproj ├── Key.snk ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── HelloWorldCommand.png │ └── HelloWorldCommandPackage.ico ├── VSPackage.resx ├── index.html ├── packages.config ├── source.extension.vsixmanifest └── stylesheet.css ├── LICENSE.md └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /HelloWorldSsmsExtension.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension.sln -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/HelloWorldCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/HelloWorldCommand.cs -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/HelloWorldCommandPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/HelloWorldCommandPackage.cs -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/HelloWorldCommandPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/HelloWorldCommandPackage.vsct -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/HelloWorldSsmsExtension.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/HelloWorldSsmsExtension.csproj -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/Key.snk -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/Resources/HelloWorldCommand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/Resources/HelloWorldCommand.png -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/Resources/HelloWorldCommandPackage.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/Resources/HelloWorldCommandPackage.ico -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/VSPackage.resx -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/index.html -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/packages.config -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/source.extension.vsixmanifest -------------------------------------------------------------------------------- /HelloWorldSsmsExtension/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/HelloWorldSsmsExtension/stylesheet.css -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Timovski/HelloWorldSsmsExtension/HEAD/README.md --------------------------------------------------------------------------------