├── .gitattributes ├── .gitignore ├── License ├── Readme.md ├── VSCELicInstallers ├── VSCELicInstallers.sln └── VSCELicense_WixSharpInstaller │ ├── App.config │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── VSCELicense_WixSharpInstaller.csproj │ └── packages.config ├── VSCELicense.psd1 └── VSCELicense.psm1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/.gitignore -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/License -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/Readme.md -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicInstallers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicInstallers.sln -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicense_WixSharpInstaller/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicense_WixSharpInstaller/App.config -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicense_WixSharpInstaller/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicense_WixSharpInstaller/Program.cs -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicense_WixSharpInstaller/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicense_WixSharpInstaller/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicense_WixSharpInstaller/VSCELicense_WixSharpInstaller.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicense_WixSharpInstaller/VSCELicense_WixSharpInstaller.csproj -------------------------------------------------------------------------------- /VSCELicInstallers/VSCELicense_WixSharpInstaller/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicInstallers/VSCELicense_WixSharpInstaller/packages.config -------------------------------------------------------------------------------- /VSCELicense.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicense.psd1 -------------------------------------------------------------------------------- /VSCELicense.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1Dimitri/VSCELicense/HEAD/VSCELicense.psm1 --------------------------------------------------------------------------------