├── .gitignore ├── .travis.yml ├── EDSEditor.sln ├── EDSEditorGUI ├── .gitignore ├── App.config ├── DeviceInfoView.Designer.cs ├── DeviceInfoView.cs ├── DeviceInfoView.resx ├── DeviceODView.Designer.cs ├── DeviceODView.cs ├── DeviceODView.resx ├── DevicePDOView2.Designer.cs ├── DevicePDOView2.cs ├── DevicePDOView2.resx ├── DeviceView.Designer.cs ├── DeviceView.cs ├── DeviceView.resx ├── EDSEditorGUI.csproj ├── EDSEditorGUI.csproj.user ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Index_8287_16x.ico ├── InsertObjects.Designer.cs ├── InsertObjects.cs ├── InsertObjects.resx ├── ListViewEx.cs ├── Microsoft.mshtml.dll ├── ModuleInfo.Designer.cs ├── ModuleInfo.cs ├── ModuleInfo.resx ├── MyTabUserControl.cs ├── MyTabUserControl.resx ├── NewIndex.Designer.cs ├── NewIndex.cs ├── NewIndex.resx ├── NewItem.Designer.cs ├── NewItem.cs ├── NewItem.resx ├── Preferences.Designer.cs ├── Preferences.cs ├── Preferences.resx ├── Profiles │ ├── DS301_profile.xpd │ ├── DS301_profile_old.xml │ └── DSP302-NMTMaster.xml ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReportView.Designer.cs ├── ReportView.cs ├── ReportView.resx ├── Resources │ ├── 305_Close_16x16_72.png │ ├── Close_6519.png │ ├── Compile_191.png │ ├── DriverTemplate_32x.png │ ├── EventLog_5735.png │ ├── ExporttoScript_9881.png │ ├── GenerateAll.png │ ├── GenericVSEditor_9905.png │ ├── Index_8287_16x.png │ ├── InsertColumn_5626.png │ ├── ListBox_686.png │ ├── NewFile_6276.png │ ├── Open_6529.png │ ├── PrintPreviewControl_698.png │ ├── PrintSetup_11011.png │ ├── Print_11009.png │ ├── Remove_16xLG.png │ ├── Save.png │ ├── Save_6530.png │ ├── action_add_16xLG.png │ ├── move_to_bottom.png │ ├── move_to_top.png │ └── notebook_16xLG.png ├── TableLayoutDB.cs ├── Warnings.Designer.cs ├── Warnings.cs ├── Warnings.resx ├── app.manifest ├── packages.config └── style.css ├── EDSSharp ├── App.config ├── EDSSharp.csproj ├── EDSSharp.csproj.user ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── Images ├── ODDetails.png ├── ODDetailsEdit.png ├── ODList.png └── newod.png ├── Index_8287_16x.ico ├── License-GPLv3.txt ├── Makefile ├── README.md ├── Tests ├── EDSParserTests.cs ├── ExporterTests.cs ├── ImportExportTest.cs ├── PDOHelperTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Tests.csproj ├── XDDImportExportTest.cs └── packages.config ├── libEDSsharp ├── Bridge.cs ├── CanOpenNodeExporter.cs ├── CanOpenNodeExporter_V4.cs ├── CanOpenXDD.cs ├── CanOpenXDD_1_1.cs ├── CanOpenXML.cs ├── CanOpenXSD_1_1.cs ├── DocumentationGen.cs ├── ExporterFactory.cs ├── IExporter.cs ├── NetworkPDOreport.cs ├── PDOHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── StringUnescape.cs ├── Warnings.cs ├── docs │ └── libEDSsharp.xml ├── eds.cs ├── extensions.cs └── libEDSsharp.csproj ├── pic1.jpg ├── pic2.jpg ├── pic3.jpg ├── pic4.jpg └── setup.nsi /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/.travis.yml -------------------------------------------------------------------------------- /EDSEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditor.sln -------------------------------------------------------------------------------- /EDSEditorGUI/.gitignore: -------------------------------------------------------------------------------- 1 | version.txt -------------------------------------------------------------------------------- /EDSEditorGUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/App.config -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceInfoView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceInfoView.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceInfoView.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceInfoView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceInfoView.resx -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceODView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceODView.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceODView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceODView.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceODView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceODView.resx -------------------------------------------------------------------------------- /EDSEditorGUI/DevicePDOView2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DevicePDOView2.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DevicePDOView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DevicePDOView2.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DevicePDOView2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DevicePDOView2.resx -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceView.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceView.cs -------------------------------------------------------------------------------- /EDSEditorGUI/DeviceView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/DeviceView.resx -------------------------------------------------------------------------------- /EDSEditorGUI/EDSEditorGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/EDSEditorGUI.csproj -------------------------------------------------------------------------------- /EDSEditorGUI/EDSEditorGUI.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/EDSEditorGUI.csproj.user -------------------------------------------------------------------------------- /EDSEditorGUI/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Form1.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Form1.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Form1.resx -------------------------------------------------------------------------------- /EDSEditorGUI/Index_8287_16x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Index_8287_16x.ico -------------------------------------------------------------------------------- /EDSEditorGUI/InsertObjects.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/InsertObjects.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/InsertObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/InsertObjects.cs -------------------------------------------------------------------------------- /EDSEditorGUI/InsertObjects.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/InsertObjects.resx -------------------------------------------------------------------------------- /EDSEditorGUI/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ListViewEx.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Microsoft.mshtml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Microsoft.mshtml.dll -------------------------------------------------------------------------------- /EDSEditorGUI/ModuleInfo.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ModuleInfo.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/ModuleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ModuleInfo.cs -------------------------------------------------------------------------------- /EDSEditorGUI/ModuleInfo.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ModuleInfo.resx -------------------------------------------------------------------------------- /EDSEditorGUI/MyTabUserControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/MyTabUserControl.cs -------------------------------------------------------------------------------- /EDSEditorGUI/MyTabUserControl.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/MyTabUserControl.resx -------------------------------------------------------------------------------- /EDSEditorGUI/NewIndex.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewIndex.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/NewIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewIndex.cs -------------------------------------------------------------------------------- /EDSEditorGUI/NewIndex.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewIndex.resx -------------------------------------------------------------------------------- /EDSEditorGUI/NewItem.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewItem.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/NewItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewItem.cs -------------------------------------------------------------------------------- /EDSEditorGUI/NewItem.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/NewItem.resx -------------------------------------------------------------------------------- /EDSEditorGUI/Preferences.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Preferences.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Preferences.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Preferences.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Preferences.resx -------------------------------------------------------------------------------- /EDSEditorGUI/Profiles/DS301_profile.xpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Profiles/DS301_profile.xpd -------------------------------------------------------------------------------- /EDSEditorGUI/Profiles/DS301_profile_old.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Profiles/DS301_profile_old.xml -------------------------------------------------------------------------------- /EDSEditorGUI/Profiles/DSP302-NMTMaster.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Profiles/DSP302-NMTMaster.xml -------------------------------------------------------------------------------- /EDSEditorGUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Program.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /EDSEditorGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /EDSEditorGUI/ReportView.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ReportView.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/ReportView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ReportView.cs -------------------------------------------------------------------------------- /EDSEditorGUI/ReportView.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/ReportView.resx -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/305_Close_16x16_72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/305_Close_16x16_72.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Close_6519.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Close_6519.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Compile_191.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Compile_191.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/DriverTemplate_32x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/DriverTemplate_32x.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/EventLog_5735.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/EventLog_5735.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/ExporttoScript_9881.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/ExporttoScript_9881.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/GenerateAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/GenerateAll.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/GenericVSEditor_9905.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/GenericVSEditor_9905.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Index_8287_16x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Index_8287_16x.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/InsertColumn_5626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/InsertColumn_5626.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/ListBox_686.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/ListBox_686.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/NewFile_6276.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/NewFile_6276.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Open_6529.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Open_6529.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/PrintPreviewControl_698.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/PrintPreviewControl_698.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/PrintSetup_11011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/PrintSetup_11011.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Print_11009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Print_11009.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Remove_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Remove_16xLG.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Save.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/Save_6530.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/Save_6530.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/action_add_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/action_add_16xLG.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/move_to_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/move_to_bottom.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/move_to_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/move_to_top.png -------------------------------------------------------------------------------- /EDSEditorGUI/Resources/notebook_16xLG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Resources/notebook_16xLG.png -------------------------------------------------------------------------------- /EDSEditorGUI/TableLayoutDB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/TableLayoutDB.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Warnings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Warnings.Designer.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Warnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Warnings.cs -------------------------------------------------------------------------------- /EDSEditorGUI/Warnings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/Warnings.resx -------------------------------------------------------------------------------- /EDSEditorGUI/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/app.manifest -------------------------------------------------------------------------------- /EDSEditorGUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/packages.config -------------------------------------------------------------------------------- /EDSEditorGUI/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSEditorGUI/style.css -------------------------------------------------------------------------------- /EDSSharp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSSharp/App.config -------------------------------------------------------------------------------- /EDSSharp/EDSSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSSharp/EDSSharp.csproj -------------------------------------------------------------------------------- /EDSSharp/EDSSharp.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSSharp/EDSSharp.csproj.user -------------------------------------------------------------------------------- /EDSSharp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSSharp/Program.cs -------------------------------------------------------------------------------- /EDSSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/EDSSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Images/ODDetails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Images/ODDetails.png -------------------------------------------------------------------------------- /Images/ODDetailsEdit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Images/ODDetailsEdit.png -------------------------------------------------------------------------------- /Images/ODList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Images/ODList.png -------------------------------------------------------------------------------- /Images/newod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Images/newod.png -------------------------------------------------------------------------------- /Index_8287_16x.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Index_8287_16x.ico -------------------------------------------------------------------------------- /License-GPLv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/License-GPLv3.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/README.md -------------------------------------------------------------------------------- /Tests/EDSParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/EDSParserTests.cs -------------------------------------------------------------------------------- /Tests/ExporterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/ExporterTests.cs -------------------------------------------------------------------------------- /Tests/ImportExportTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/ImportExportTest.cs -------------------------------------------------------------------------------- /Tests/PDOHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/PDOHelperTests.cs -------------------------------------------------------------------------------- /Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Tests/Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/Tests.csproj -------------------------------------------------------------------------------- /Tests/XDDImportExportTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/XDDImportExportTest.cs -------------------------------------------------------------------------------- /Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/Tests/packages.config -------------------------------------------------------------------------------- /libEDSsharp/Bridge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/Bridge.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenNodeExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenNodeExporter.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenNodeExporter_V4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenNodeExporter_V4.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenXDD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenXDD.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenXDD_1_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenXDD_1_1.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenXML.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenXML.cs -------------------------------------------------------------------------------- /libEDSsharp/CanOpenXSD_1_1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/CanOpenXSD_1_1.cs -------------------------------------------------------------------------------- /libEDSsharp/DocumentationGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/DocumentationGen.cs -------------------------------------------------------------------------------- /libEDSsharp/ExporterFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/ExporterFactory.cs -------------------------------------------------------------------------------- /libEDSsharp/IExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/IExporter.cs -------------------------------------------------------------------------------- /libEDSsharp/NetworkPDOreport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/NetworkPDOreport.cs -------------------------------------------------------------------------------- /libEDSsharp/PDOHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/PDOHelper.cs -------------------------------------------------------------------------------- /libEDSsharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /libEDSsharp/StringUnescape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/StringUnescape.cs -------------------------------------------------------------------------------- /libEDSsharp/Warnings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/Warnings.cs -------------------------------------------------------------------------------- /libEDSsharp/docs/libEDSsharp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/docs/libEDSsharp.xml -------------------------------------------------------------------------------- /libEDSsharp/eds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/eds.cs -------------------------------------------------------------------------------- /libEDSsharp/extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/extensions.cs -------------------------------------------------------------------------------- /libEDSsharp/libEDSsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/libEDSsharp/libEDSsharp.csproj -------------------------------------------------------------------------------- /pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/pic1.jpg -------------------------------------------------------------------------------- /pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/pic2.jpg -------------------------------------------------------------------------------- /pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/pic3.jpg -------------------------------------------------------------------------------- /pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/pic4.jpg -------------------------------------------------------------------------------- /setup.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robincornelius/libedssharp/HEAD/setup.nsi --------------------------------------------------------------------------------