├── .gitattributes ├── .gitignore ├── AutoCAD-Plugin-Template ├── AutoCAD-Plugin.sln ├── ExamplePlugin │ ├── ExamplePlugin.csproj │ ├── PluginExtension.cs │ ├── Properties │ │ └── launchSettings.json │ ├── myCommands.Designer.cs │ ├── myCommands.cs │ └── myCommands.resx ├── ExamplePluginVB │ ├── ExamplePluginVB.vbproj │ ├── My Project │ │ ├── Application.myapp │ │ └── launchSettings.json │ ├── PluginExtension.vb │ ├── myCommands.Designer.vb │ ├── myCommands.resx │ └── myCommands.vb ├── Icons │ └── __TemplateIcon.ico └── PluginVsix │ ├── PluginVsix.csproj │ ├── ProjectTemplates │ ├── AutoCAD 2025 Plugin CS.zip │ └── AutoCAD 2025 Plugin VB.zip │ ├── Properties │ └── AssemblyInfo.cs │ ├── __TemplateIcon.ico │ └── source.extension.vsixmanifest ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/AutoCAD-Plugin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/AutoCAD-Plugin.sln -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/ExamplePlugin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/ExamplePlugin.csproj -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/PluginExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/PluginExtension.cs -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/Properties/launchSettings.json -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/myCommands.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/myCommands.Designer.cs -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/myCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/myCommands.cs -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePlugin/myCommands.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePlugin/myCommands.resx -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/ExamplePluginVB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/ExamplePluginVB.vbproj -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/My Project/Application.myapp -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/My Project/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/My Project/launchSettings.json -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/PluginExtension.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/PluginExtension.vb -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.Designer.vb -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.resx -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/ExamplePluginVB/myCommands.vb -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/Icons/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/Icons/__TemplateIcon.ico -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/PluginVsix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/PluginVsix.csproj -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/ProjectTemplates/AutoCAD 2025 Plugin CS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/ProjectTemplates/AutoCAD 2025 Plugin CS.zip -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/ProjectTemplates/AutoCAD 2025 Plugin VB.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/ProjectTemplates/AutoCAD 2025 Plugin VB.zip -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/__TemplateIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/__TemplateIcon.ico -------------------------------------------------------------------------------- /AutoCAD-Plugin-Template/PluginVsix/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/AutoCAD-Plugin-Template/PluginVsix/source.extension.vsixmanifest -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADN-DevTech/AutoCAD-Net-Wizards/HEAD/README.md --------------------------------------------------------------------------------