├── .github ├── screenshot1.png ├── screenshot2.png ├── screenshot3.png └── screenshot4.png ├── .gitignore ├── README.md └── src ├── Command1.cs ├── Command1Package.cs ├── Command1Package.vsct ├── GPLv3.txt ├── LICENSE ├── Resources ├── Command1.png ├── Command1Package.ico ├── __TemplateIcon.png └── of-logo.svg ├── VSIXopenFrameworks.csproj ├── VSIXopenFrameworks.sdf ├── VSIXopenFrameworks.sln ├── VSPackage.resx ├── VsSDK.props ├── Wizard ├── Addon.cs ├── Extensions.cs ├── Folder.cs ├── FormAddons.Designer.cs ├── FormAddons.cs ├── FormAddons.resx ├── FormOFRoot.Designer.cs ├── FormOFRoot.cs ├── FormOFRoot.resx ├── OFUpdateWizard.cs ├── OFWizard.cs ├── Properties │ └── AssemblyInfo.cs ├── Wizard.csproj └── keyStore_visualStudioWizard2017.pfx ├── __TemplateIcon.png ├── app.config ├── openFrameworksTemplate ├── Properties │ └── AssemblyInfo.cs ├── __TemplateIcon.png ├── emptyExample.vcxproj ├── emptyExample.vcxproj.filters ├── icon.rc ├── openFrameworks.vstemplate ├── openFrameworksTemplate.csproj ├── packages.config └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── packages.config └── source.extension.vsixmanifest /.github/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/.github/screenshot1.png -------------------------------------------------------------------------------- /.github/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/.github/screenshot2.png -------------------------------------------------------------------------------- /.github/screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/.github/screenshot3.png -------------------------------------------------------------------------------- /.github/screenshot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/.github/screenshot4.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/README.md -------------------------------------------------------------------------------- /src/Command1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Command1.cs -------------------------------------------------------------------------------- /src/Command1Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Command1Package.cs -------------------------------------------------------------------------------- /src/Command1Package.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Command1Package.vsct -------------------------------------------------------------------------------- /src/GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/GPLv3.txt -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/Resources/Command1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Resources/Command1.png -------------------------------------------------------------------------------- /src/Resources/Command1Package.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Resources/Command1Package.ico -------------------------------------------------------------------------------- /src/Resources/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Resources/__TemplateIcon.png -------------------------------------------------------------------------------- /src/Resources/of-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Resources/of-logo.svg -------------------------------------------------------------------------------- /src/VSIXopenFrameworks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/VSIXopenFrameworks.csproj -------------------------------------------------------------------------------- /src/VSIXopenFrameworks.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/VSIXopenFrameworks.sdf -------------------------------------------------------------------------------- /src/VSIXopenFrameworks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/VSIXopenFrameworks.sln -------------------------------------------------------------------------------- /src/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/VSPackage.resx -------------------------------------------------------------------------------- /src/VsSDK.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/VsSDK.props -------------------------------------------------------------------------------- /src/Wizard/Addon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/Addon.cs -------------------------------------------------------------------------------- /src/Wizard/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/Extensions.cs -------------------------------------------------------------------------------- /src/Wizard/Folder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/Folder.cs -------------------------------------------------------------------------------- /src/Wizard/FormAddons.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormAddons.Designer.cs -------------------------------------------------------------------------------- /src/Wizard/FormAddons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormAddons.cs -------------------------------------------------------------------------------- /src/Wizard/FormAddons.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormAddons.resx -------------------------------------------------------------------------------- /src/Wizard/FormOFRoot.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormOFRoot.Designer.cs -------------------------------------------------------------------------------- /src/Wizard/FormOFRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormOFRoot.cs -------------------------------------------------------------------------------- /src/Wizard/FormOFRoot.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/FormOFRoot.resx -------------------------------------------------------------------------------- /src/Wizard/OFUpdateWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/OFUpdateWizard.cs -------------------------------------------------------------------------------- /src/Wizard/OFWizard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/OFWizard.cs -------------------------------------------------------------------------------- /src/Wizard/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Wizard/Wizard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/Wizard.csproj -------------------------------------------------------------------------------- /src/Wizard/keyStore_visualStudioWizard2017.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/Wizard/keyStore_visualStudioWizard2017.pfx -------------------------------------------------------------------------------- /src/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/__TemplateIcon.png -------------------------------------------------------------------------------- /src/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/app.config -------------------------------------------------------------------------------- /src/openFrameworksTemplate/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/openFrameworksTemplate/__TemplateIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/__TemplateIcon.png -------------------------------------------------------------------------------- /src/openFrameworksTemplate/emptyExample.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/emptyExample.vcxproj -------------------------------------------------------------------------------- /src/openFrameworksTemplate/emptyExample.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/emptyExample.vcxproj.filters -------------------------------------------------------------------------------- /src/openFrameworksTemplate/icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/icon.rc -------------------------------------------------------------------------------- /src/openFrameworksTemplate/openFrameworks.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/openFrameworks.vstemplate -------------------------------------------------------------------------------- /src/openFrameworksTemplate/openFrameworksTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/openFrameworksTemplate.csproj -------------------------------------------------------------------------------- /src/openFrameworksTemplate/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/packages.config -------------------------------------------------------------------------------- /src/openFrameworksTemplate/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/src/main.cpp -------------------------------------------------------------------------------- /src/openFrameworksTemplate/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/src/ofApp.cpp -------------------------------------------------------------------------------- /src/openFrameworksTemplate/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/openFrameworksTemplate/src/ofApp.h -------------------------------------------------------------------------------- /src/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/packages.config -------------------------------------------------------------------------------- /src/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openframeworks/visualstudioPlugin/HEAD/src/source.extension.vsixmanifest --------------------------------------------------------------------------------