├── .gitattributes ├── .gitignore ├── .hgignore ├── .nuget └── packages.config ├── CADtest-CS ├── AutoNetLoad2015.scr ├── AutoNetLoadCoreConsole2015.scr ├── BaseTests.cs ├── CADtest-CS 2007-11.csproj ├── CADtest-CS 2012.csproj ├── CADtest-CS 2013-14.csproj ├── CADtest-CS 2015-16.csproj ├── CADtest-CS.csproj ├── CADtest-CS.csproj.user ├── CADtestApp.cs ├── CADtestRunner.cs ├── Drawings │ └── DrawingTest.dwg ├── Helpers │ ├── BlockDefinition.cs │ ├── DbEntity.cs │ └── WorkingDatabaseSwitcher.cs ├── Properties │ └── AssemblyInfo.cs ├── SampleTests.cs ├── SampleTestsData.cs ├── app.config └── packages.config ├── CADtest-VB ├── AutoNetLoad2015.scr ├── AutoNetLoadCoreConsole2015.scr ├── CADtest-VB 2007-11.vbproj ├── CADtest-VB 2012.vbproj ├── CADtest-VB 2013-14.vbproj ├── CADtest-VB 2015-16.vbproj ├── CADtest-VB.vbproj ├── CADtest-VB.vbproj.user ├── CADtestApp.vb ├── CADtestRunner.vb ├── Helpers │ ├── BlockDefinition.vb │ └── DbEntity.vb ├── My Project │ ├── Application.Designer.vb │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Resources.Designer.vb │ ├── Resources.resx │ ├── Settings.Designer.vb │ └── Settings.settings ├── SampleTests.vb ├── app.config └── packages.config ├── CADtest.sln ├── License.txt ├── ReadMe.md └── ResharperCADtestTemplates.DotSettings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/.hgignore -------------------------------------------------------------------------------- /.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/.nuget/packages.config -------------------------------------------------------------------------------- /CADtest-CS/AutoNetLoad2015.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/AutoNetLoad2015.scr -------------------------------------------------------------------------------- /CADtest-CS/AutoNetLoadCoreConsole2015.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/AutoNetLoadCoreConsole2015.scr -------------------------------------------------------------------------------- /CADtest-CS/BaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/BaseTests.cs -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS 2007-11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS 2007-11.csproj -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS 2012.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS 2012.csproj -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS 2013-14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS 2013-14.csproj -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS 2015-16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS 2015-16.csproj -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS.csproj -------------------------------------------------------------------------------- /CADtest-CS/CADtest-CS.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtest-CS.csproj.user -------------------------------------------------------------------------------- /CADtest-CS/CADtestApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtestApp.cs -------------------------------------------------------------------------------- /CADtest-CS/CADtestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/CADtestRunner.cs -------------------------------------------------------------------------------- /CADtest-CS/Drawings/DrawingTest.dwg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/Drawings/DrawingTest.dwg -------------------------------------------------------------------------------- /CADtest-CS/Helpers/BlockDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/Helpers/BlockDefinition.cs -------------------------------------------------------------------------------- /CADtest-CS/Helpers/DbEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/Helpers/DbEntity.cs -------------------------------------------------------------------------------- /CADtest-CS/Helpers/WorkingDatabaseSwitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/Helpers/WorkingDatabaseSwitcher.cs -------------------------------------------------------------------------------- /CADtest-CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CADtest-CS/SampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/SampleTests.cs -------------------------------------------------------------------------------- /CADtest-CS/SampleTestsData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/SampleTestsData.cs -------------------------------------------------------------------------------- /CADtest-CS/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/app.config -------------------------------------------------------------------------------- /CADtest-CS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-CS/packages.config -------------------------------------------------------------------------------- /CADtest-VB/AutoNetLoad2015.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/AutoNetLoad2015.scr -------------------------------------------------------------------------------- /CADtest-VB/AutoNetLoadCoreConsole2015.scr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/AutoNetLoadCoreConsole2015.scr -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB 2007-11.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB 2007-11.vbproj -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB 2012.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB 2012.vbproj -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB 2013-14.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB 2013-14.vbproj -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB 2015-16.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB 2015-16.vbproj -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB.vbproj -------------------------------------------------------------------------------- /CADtest-VB/CADtest-VB.vbproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtest-VB.vbproj.user -------------------------------------------------------------------------------- /CADtest-VB/CADtestApp.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtestApp.vb -------------------------------------------------------------------------------- /CADtest-VB/CADtestRunner.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/CADtestRunner.vb -------------------------------------------------------------------------------- /CADtest-VB/Helpers/BlockDefinition.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/Helpers/BlockDefinition.vb -------------------------------------------------------------------------------- /CADtest-VB/Helpers/DbEntity.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/Helpers/DbEntity.vb -------------------------------------------------------------------------------- /CADtest-VB/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Application.Designer.vb -------------------------------------------------------------------------------- /CADtest-VB/My Project/Application.myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Application.myapp -------------------------------------------------------------------------------- /CADtest-VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /CADtest-VB/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Resources.Designer.vb -------------------------------------------------------------------------------- /CADtest-VB/My Project/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Resources.resx -------------------------------------------------------------------------------- /CADtest-VB/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Settings.Designer.vb -------------------------------------------------------------------------------- /CADtest-VB/My Project/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/My Project/Settings.settings -------------------------------------------------------------------------------- /CADtest-VB/SampleTests.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/SampleTests.vb -------------------------------------------------------------------------------- /CADtest-VB/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/app.config -------------------------------------------------------------------------------- /CADtest-VB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest-VB/packages.config -------------------------------------------------------------------------------- /CADtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/CADtest.sln -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/License.txt -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/ReadMe.md -------------------------------------------------------------------------------- /ResharperCADtestTemplates.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CADbloke/CADtest/HEAD/ResharperCADtestTemplates.DotSettings --------------------------------------------------------------------------------