├── .gitattributes ├── .gitignore ├── .travis.yml ├── App.config ├── App.xaml ├── App.xaml.cs ├── Converter ├── EnableTBoolTypeConverter.cs ├── EnumDescriptionTypeConverter - Copy.cs └── ObjectVisibilityConverter.cs ├── CreateKnxProd.csproj ├── CreateKnxProd.sln ├── DialogService.cs ├── ETSPathHelper.cs ├── Extensions └── Extensions.cs ├── IDialogService.cs ├── LICENSE ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindowViewModel.cs ├── Model ├── ComObjectRefRef_t.cs ├── ComObjectRef_t.cs ├── IGetByteSize.cs ├── ParameterRefRef_t.cs ├── ParameterRef_t.cs ├── ParameterTypeType.cs ├── ParameterType_t.cs ├── ParameterType_tTypeFloat.cs ├── ParameterType_tTypeNumber.cs ├── ParameterType_tTypeRestriction.cs ├── ParameterType_tTypeText.cs ├── Parameter_t.cs └── Xml.Project.cs ├── Properties ├── AssemblyInfo.cs ├── Ressources.Designer.cs ├── Ressources.de.resx ├── Ressources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── RelayCommand.cs ├── Signing ├── ApplicationProgramHasher.cs ├── CatalogIdPatcher.cs ├── HardwareSigner.cs └── XmlSigning.cs ├── azure-pipelines.yml ├── knx_project.xsd └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: csharp 2 | solution: CreateKnxProd.sln 3 | -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/App.config -------------------------------------------------------------------------------- /App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/App.xaml -------------------------------------------------------------------------------- /App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/App.xaml.cs -------------------------------------------------------------------------------- /Converter/EnableTBoolTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Converter/EnableTBoolTypeConverter.cs -------------------------------------------------------------------------------- /Converter/EnumDescriptionTypeConverter - Copy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Converter/EnumDescriptionTypeConverter - Copy.cs -------------------------------------------------------------------------------- /Converter/ObjectVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Converter/ObjectVisibilityConverter.cs -------------------------------------------------------------------------------- /CreateKnxProd.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/CreateKnxProd.csproj -------------------------------------------------------------------------------- /CreateKnxProd.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/CreateKnxProd.sln -------------------------------------------------------------------------------- /DialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/DialogService.cs -------------------------------------------------------------------------------- /ETSPathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/ETSPathHelper.cs -------------------------------------------------------------------------------- /Extensions/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Extensions/Extensions.cs -------------------------------------------------------------------------------- /IDialogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/IDialogService.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/LICENSE -------------------------------------------------------------------------------- /MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/MainWindow.xaml -------------------------------------------------------------------------------- /MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/MainWindowViewModel.cs -------------------------------------------------------------------------------- /Model/ComObjectRefRef_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ComObjectRefRef_t.cs -------------------------------------------------------------------------------- /Model/ComObjectRef_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ComObjectRef_t.cs -------------------------------------------------------------------------------- /Model/IGetByteSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/IGetByteSize.cs -------------------------------------------------------------------------------- /Model/ParameterRefRef_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterRefRef_t.cs -------------------------------------------------------------------------------- /Model/ParameterRef_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterRef_t.cs -------------------------------------------------------------------------------- /Model/ParameterTypeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterTypeType.cs -------------------------------------------------------------------------------- /Model/ParameterType_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterType_t.cs -------------------------------------------------------------------------------- /Model/ParameterType_tTypeFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterType_tTypeFloat.cs -------------------------------------------------------------------------------- /Model/ParameterType_tTypeNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterType_tTypeNumber.cs -------------------------------------------------------------------------------- /Model/ParameterType_tTypeRestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterType_tTypeRestriction.cs -------------------------------------------------------------------------------- /Model/ParameterType_tTypeText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/ParameterType_tTypeText.cs -------------------------------------------------------------------------------- /Model/Parameter_t.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/Parameter_t.cs -------------------------------------------------------------------------------- /Model/Xml.Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Model/Xml.Project.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/Ressources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/Ressources.Designer.cs -------------------------------------------------------------------------------- /Properties/Ressources.de.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/Ressources.de.resx -------------------------------------------------------------------------------- /Properties/Ressources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/Ressources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/README.md -------------------------------------------------------------------------------- /RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/RelayCommand.cs -------------------------------------------------------------------------------- /Signing/ApplicationProgramHasher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Signing/ApplicationProgramHasher.cs -------------------------------------------------------------------------------- /Signing/CatalogIdPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Signing/CatalogIdPatcher.cs -------------------------------------------------------------------------------- /Signing/HardwareSigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Signing/HardwareSigner.cs -------------------------------------------------------------------------------- /Signing/XmlSigning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/Signing/XmlSigning.cs -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /knx_project.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/knx_project.xsd -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thelsing/CreateKnxProd/HEAD/packages.config --------------------------------------------------------------------------------