├── .gitignore ├── ApplicationSingleInstanceManager.cs ├── ApplicationStartup.cs ├── CognexCleanup.csproj ├── DLLs └── EUTECTclasses.dll ├── FormsHoster.xaml ├── FormsHoster.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md └── app.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/.gitignore -------------------------------------------------------------------------------- /ApplicationSingleInstanceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/ApplicationSingleInstanceManager.cs -------------------------------------------------------------------------------- /ApplicationStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/ApplicationStartup.cs -------------------------------------------------------------------------------- /CognexCleanup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/CognexCleanup.csproj -------------------------------------------------------------------------------- /DLLs/EUTECTclasses.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/DLLs/EUTECTclasses.dll -------------------------------------------------------------------------------- /FormsHoster.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/FormsHoster.xaml -------------------------------------------------------------------------------- /FormsHoster.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/FormsHoster.xaml.cs -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/README.md -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amse2000/CognexCleanup/HEAD/app.config --------------------------------------------------------------------------------