├── .gitignore ├── LICENSE ├── README.md ├── data ├── SingleResponsibility.xml └── SingleResponsibilityBackup.xml ├── doc ├── ClassDiagram.graphml └── PLCopen │ ├── tc6_xml_v201.xsd │ ├── tc6_xml_v201_technical_doc.pdf │ └── tc6_xml_v201_xsd.pdf └── src ├── PlcOpen.sln └── PlcOpen ├── Model └── tc6_xml_v201.cs ├── PlcOpen.csproj └── Properties └── AssemblyInfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/README.md -------------------------------------------------------------------------------- /data/SingleResponsibility.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/data/SingleResponsibility.xml -------------------------------------------------------------------------------- /data/SingleResponsibilityBackup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/data/SingleResponsibilityBackup.xml -------------------------------------------------------------------------------- /doc/ClassDiagram.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/doc/ClassDiagram.graphml -------------------------------------------------------------------------------- /doc/PLCopen/tc6_xml_v201.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/doc/PLCopen/tc6_xml_v201.xsd -------------------------------------------------------------------------------- /doc/PLCopen/tc6_xml_v201_technical_doc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/doc/PLCopen/tc6_xml_v201_technical_doc.pdf -------------------------------------------------------------------------------- /doc/PLCopen/tc6_xml_v201_xsd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/doc/PLCopen/tc6_xml_v201_xsd.pdf -------------------------------------------------------------------------------- /src/PlcOpen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/src/PlcOpen.sln -------------------------------------------------------------------------------- /src/PlcOpen/Model/tc6_xml_v201.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/src/PlcOpen/Model/tc6_xml_v201.cs -------------------------------------------------------------------------------- /src/PlcOpen/PlcOpen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/src/PlcOpen/PlcOpen.csproj -------------------------------------------------------------------------------- /src/PlcOpen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoDoerIng/PlcOpen/HEAD/src/PlcOpen/Properties/AssemblyInfo.cs --------------------------------------------------------------------------------