├── .gitattributes ├── .gitignore ├── AlertClient.lnk ├── AlertClient ├── AlertClient.csproj ├── App.config ├── Controls │ ├── Grouper.cs │ ├── HeaderPanel.Designer.cs │ ├── HeaderPanel.cs │ ├── HeaderPanel.resx │ └── NumericTextBox.cs ├── Forms │ ├── AboutForm.cs │ ├── AboutForm.designer.cs │ ├── AboutForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── Helpers │ ├── EventProcessor.cs │ ├── EventProcessorFactory.cs │ ├── EventProcessorFactoryConfiguration.cs │ ├── PropertyComparer.cs │ └── SortableBindingList.cs ├── Icons │ ├── AzureLogo.ico │ ├── Tool.ico │ └── WindowsAzureLogo.ico ├── Images │ ├── AzureLogo.png │ ├── SmallDocument.png │ ├── SmallWorld.png │ ├── Warning.png │ └── WhiteLogo.png ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── DeviceActorService.Interfaces ├── DeviceActorService.Interfaces.csproj ├── IDeviceActor.cs ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DeviceActorService ├── ActorEventSource.cs ├── App.config ├── ApplicationInsights.config ├── DeviceActor.cs ├── DeviceActorService.cs ├── DeviceActorService.csproj ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── Service References │ └── Application Insights │ │ └── ConnectedService.json └── packages.config ├── DeviceManagementWebService ├── App.config ├── App_Start │ └── BrowserJsonFormatter.cs ├── Controllers │ └── DeviceController.cs ├── DeviceManagementWebService.cs ├── DeviceManagementWebService.csproj ├── IOwinAppBuilder.cs ├── OwinCommunicationListener.cs ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceEventSource.cs ├── Startup.cs └── packages.config ├── DeviceSimulator.lnk ├── DeviceSimulator ├── App.config ├── Controls │ ├── Grouper.cs │ ├── HeaderPanel.Designer.cs │ ├── HeaderPanel.cs │ ├── HeaderPanel.resx │ ├── NumericTextBox.cs │ ├── TrackBar.cs │ ├── TrackBar.resx │ └── TrackBarDesigner.cs ├── DeviceSimulator.csproj ├── Forms │ ├── AboutForm.cs │ ├── AboutForm.designer.cs │ ├── AboutForm.resx │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ └── MainForm.resx ├── Helpers │ ├── CustomColorHelper.cs │ └── CustomStyleHelper.cs ├── Icons │ ├── AzureLogo.ico │ ├── Tool.ico │ └── WindowsAzureLogo.ico ├── Images │ ├── AzureLogo.png │ ├── SmallDocument.png │ ├── SmallWorld.png │ ├── Warning.png │ └── WhiteLogo.png ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── Entities ├── Alert.cs ├── Device.cs ├── Payload.cs ├── PayloadEntities.csproj ├── Properties │ └── AssemblyInfo.cs ├── app.config └── packages.config ├── EventProcessorHostService ├── App.config ├── EventProcessor.cs ├── EventProcessorFactory.cs ├── EventProcessorHostListener.cs ├── EventProcessorHostService.cs ├── EventProcessorHostService.csproj ├── PackageRoot │ ├── Config │ │ └── Settings.xml │ └── ServiceManifest.xml ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceEventSource.cs └── packages.config ├── Images ├── AlertClient.png ├── DeviceSimulator.png └── VerticalArchitectureDesign.png ├── IoTDemo.sln ├── IoTDemo ├── ApplicationPackageRoot │ └── ApplicationManifest.xml ├── ApplicationParameters │ ├── Cloud.xml │ └── Local.xml ├── IoTDemo.sfproj ├── PublishProfiles │ ├── Cloud.xml │ └── Local.xml └── Scripts │ └── Deploy-FabricApplication.ps1 ├── README.md └── _config.yml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/.gitignore -------------------------------------------------------------------------------- /AlertClient.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient.lnk -------------------------------------------------------------------------------- /AlertClient/AlertClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/AlertClient.csproj -------------------------------------------------------------------------------- /AlertClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/App.config -------------------------------------------------------------------------------- /AlertClient/Controls/Grouper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Controls/Grouper.cs -------------------------------------------------------------------------------- /AlertClient/Controls/HeaderPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Controls/HeaderPanel.Designer.cs -------------------------------------------------------------------------------- /AlertClient/Controls/HeaderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Controls/HeaderPanel.cs -------------------------------------------------------------------------------- /AlertClient/Controls/HeaderPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Controls/HeaderPanel.resx -------------------------------------------------------------------------------- /AlertClient/Controls/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Controls/NumericTextBox.cs -------------------------------------------------------------------------------- /AlertClient/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/AboutForm.cs -------------------------------------------------------------------------------- /AlertClient/Forms/AboutForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/AboutForm.designer.cs -------------------------------------------------------------------------------- /AlertClient/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/AboutForm.resx -------------------------------------------------------------------------------- /AlertClient/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /AlertClient/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/MainForm.cs -------------------------------------------------------------------------------- /AlertClient/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Forms/MainForm.resx -------------------------------------------------------------------------------- /AlertClient/Helpers/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Helpers/EventProcessor.cs -------------------------------------------------------------------------------- /AlertClient/Helpers/EventProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Helpers/EventProcessorFactory.cs -------------------------------------------------------------------------------- /AlertClient/Helpers/EventProcessorFactoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Helpers/EventProcessorFactoryConfiguration.cs -------------------------------------------------------------------------------- /AlertClient/Helpers/PropertyComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Helpers/PropertyComparer.cs -------------------------------------------------------------------------------- /AlertClient/Helpers/SortableBindingList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Helpers/SortableBindingList.cs -------------------------------------------------------------------------------- /AlertClient/Icons/AzureLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Icons/AzureLogo.ico -------------------------------------------------------------------------------- /AlertClient/Icons/Tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Icons/Tool.ico -------------------------------------------------------------------------------- /AlertClient/Icons/WindowsAzureLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Icons/WindowsAzureLogo.ico -------------------------------------------------------------------------------- /AlertClient/Images/AzureLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Images/AzureLogo.png -------------------------------------------------------------------------------- /AlertClient/Images/SmallDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Images/SmallDocument.png -------------------------------------------------------------------------------- /AlertClient/Images/SmallWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Images/SmallWorld.png -------------------------------------------------------------------------------- /AlertClient/Images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Images/Warning.png -------------------------------------------------------------------------------- /AlertClient/Images/WhiteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Images/WhiteLogo.png -------------------------------------------------------------------------------- /AlertClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Program.cs -------------------------------------------------------------------------------- /AlertClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /AlertClient/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /AlertClient/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Properties/Resources.resx -------------------------------------------------------------------------------- /AlertClient/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /AlertClient/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/Properties/Settings.settings -------------------------------------------------------------------------------- /AlertClient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/AlertClient/packages.config -------------------------------------------------------------------------------- /DeviceActorService.Interfaces/DeviceActorService.Interfaces.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService.Interfaces/DeviceActorService.Interfaces.csproj -------------------------------------------------------------------------------- /DeviceActorService.Interfaces/IDeviceActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService.Interfaces/IDeviceActor.cs -------------------------------------------------------------------------------- /DeviceActorService.Interfaces/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService.Interfaces/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceActorService.Interfaces/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService.Interfaces/packages.config -------------------------------------------------------------------------------- /DeviceActorService/ActorEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/ActorEventSource.cs -------------------------------------------------------------------------------- /DeviceActorService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/App.config -------------------------------------------------------------------------------- /DeviceActorService/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/ApplicationInsights.config -------------------------------------------------------------------------------- /DeviceActorService/DeviceActor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/DeviceActor.cs -------------------------------------------------------------------------------- /DeviceActorService/DeviceActorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/DeviceActorService.cs -------------------------------------------------------------------------------- /DeviceActorService/DeviceActorService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/DeviceActorService.csproj -------------------------------------------------------------------------------- /DeviceActorService/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /DeviceActorService/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /DeviceActorService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/Program.cs -------------------------------------------------------------------------------- /DeviceActorService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceActorService/Service References/Application Insights/ConnectedService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/Service References/Application Insights/ConnectedService.json -------------------------------------------------------------------------------- /DeviceActorService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceActorService/packages.config -------------------------------------------------------------------------------- /DeviceManagementWebService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/App.config -------------------------------------------------------------------------------- /DeviceManagementWebService/App_Start/BrowserJsonFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/App_Start/BrowserJsonFormatter.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/Controllers/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/Controllers/DeviceController.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/DeviceManagementWebService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/DeviceManagementWebService.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/DeviceManagementWebService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/DeviceManagementWebService.csproj -------------------------------------------------------------------------------- /DeviceManagementWebService/IOwinAppBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/IOwinAppBuilder.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/OwinCommunicationListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/OwinCommunicationListener.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /DeviceManagementWebService/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /DeviceManagementWebService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/Program.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/ServiceEventSource.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/Startup.cs -------------------------------------------------------------------------------- /DeviceManagementWebService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceManagementWebService/packages.config -------------------------------------------------------------------------------- /DeviceSimulator.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator.lnk -------------------------------------------------------------------------------- /DeviceSimulator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/App.config -------------------------------------------------------------------------------- /DeviceSimulator/Controls/Grouper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/Grouper.cs -------------------------------------------------------------------------------- /DeviceSimulator/Controls/HeaderPanel.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/HeaderPanel.Designer.cs -------------------------------------------------------------------------------- /DeviceSimulator/Controls/HeaderPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/HeaderPanel.cs -------------------------------------------------------------------------------- /DeviceSimulator/Controls/HeaderPanel.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/HeaderPanel.resx -------------------------------------------------------------------------------- /DeviceSimulator/Controls/NumericTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/NumericTextBox.cs -------------------------------------------------------------------------------- /DeviceSimulator/Controls/TrackBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/TrackBar.cs -------------------------------------------------------------------------------- /DeviceSimulator/Controls/TrackBar.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/TrackBar.resx -------------------------------------------------------------------------------- /DeviceSimulator/Controls/TrackBarDesigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Controls/TrackBarDesigner.cs -------------------------------------------------------------------------------- /DeviceSimulator/DeviceSimulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/DeviceSimulator.csproj -------------------------------------------------------------------------------- /DeviceSimulator/Forms/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/AboutForm.cs -------------------------------------------------------------------------------- /DeviceSimulator/Forms/AboutForm.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/AboutForm.designer.cs -------------------------------------------------------------------------------- /DeviceSimulator/Forms/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/AboutForm.resx -------------------------------------------------------------------------------- /DeviceSimulator/Forms/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/MainForm.Designer.cs -------------------------------------------------------------------------------- /DeviceSimulator/Forms/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/MainForm.cs -------------------------------------------------------------------------------- /DeviceSimulator/Forms/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Forms/MainForm.resx -------------------------------------------------------------------------------- /DeviceSimulator/Helpers/CustomColorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Helpers/CustomColorHelper.cs -------------------------------------------------------------------------------- /DeviceSimulator/Helpers/CustomStyleHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Helpers/CustomStyleHelper.cs -------------------------------------------------------------------------------- /DeviceSimulator/Icons/AzureLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Icons/AzureLogo.ico -------------------------------------------------------------------------------- /DeviceSimulator/Icons/Tool.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Icons/Tool.ico -------------------------------------------------------------------------------- /DeviceSimulator/Icons/WindowsAzureLogo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Icons/WindowsAzureLogo.ico -------------------------------------------------------------------------------- /DeviceSimulator/Images/AzureLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Images/AzureLogo.png -------------------------------------------------------------------------------- /DeviceSimulator/Images/SmallDocument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Images/SmallDocument.png -------------------------------------------------------------------------------- /DeviceSimulator/Images/SmallWorld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Images/SmallWorld.png -------------------------------------------------------------------------------- /DeviceSimulator/Images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Images/Warning.png -------------------------------------------------------------------------------- /DeviceSimulator/Images/WhiteLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Images/WhiteLogo.png -------------------------------------------------------------------------------- /DeviceSimulator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Program.cs -------------------------------------------------------------------------------- /DeviceSimulator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DeviceSimulator/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DeviceSimulator/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Properties/Resources.resx -------------------------------------------------------------------------------- /DeviceSimulator/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DeviceSimulator/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/Properties/Settings.settings -------------------------------------------------------------------------------- /DeviceSimulator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/DeviceSimulator/packages.config -------------------------------------------------------------------------------- /Entities/Alert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/Alert.cs -------------------------------------------------------------------------------- /Entities/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/Device.cs -------------------------------------------------------------------------------- /Entities/Payload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/Payload.cs -------------------------------------------------------------------------------- /Entities/PayloadEntities.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/PayloadEntities.csproj -------------------------------------------------------------------------------- /Entities/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Entities/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/app.config -------------------------------------------------------------------------------- /Entities/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Entities/packages.config -------------------------------------------------------------------------------- /EventProcessorHostService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/App.config -------------------------------------------------------------------------------- /EventProcessorHostService/EventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/EventProcessor.cs -------------------------------------------------------------------------------- /EventProcessorHostService/EventProcessorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/EventProcessorFactory.cs -------------------------------------------------------------------------------- /EventProcessorHostService/EventProcessorHostListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/EventProcessorHostListener.cs -------------------------------------------------------------------------------- /EventProcessorHostService/EventProcessorHostService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/EventProcessorHostService.cs -------------------------------------------------------------------------------- /EventProcessorHostService/EventProcessorHostService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/EventProcessorHostService.csproj -------------------------------------------------------------------------------- /EventProcessorHostService/PackageRoot/Config/Settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/PackageRoot/Config/Settings.xml -------------------------------------------------------------------------------- /EventProcessorHostService/PackageRoot/ServiceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/PackageRoot/ServiceManifest.xml -------------------------------------------------------------------------------- /EventProcessorHostService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/Program.cs -------------------------------------------------------------------------------- /EventProcessorHostService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EventProcessorHostService/ServiceEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/ServiceEventSource.cs -------------------------------------------------------------------------------- /EventProcessorHostService/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/EventProcessorHostService/packages.config -------------------------------------------------------------------------------- /Images/AlertClient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Images/AlertClient.png -------------------------------------------------------------------------------- /Images/DeviceSimulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Images/DeviceSimulator.png -------------------------------------------------------------------------------- /Images/VerticalArchitectureDesign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/Images/VerticalArchitectureDesign.png -------------------------------------------------------------------------------- /IoTDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo.sln -------------------------------------------------------------------------------- /IoTDemo/ApplicationPackageRoot/ApplicationManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/ApplicationPackageRoot/ApplicationManifest.xml -------------------------------------------------------------------------------- /IoTDemo/ApplicationParameters/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/ApplicationParameters/Cloud.xml -------------------------------------------------------------------------------- /IoTDemo/ApplicationParameters/Local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/ApplicationParameters/Local.xml -------------------------------------------------------------------------------- /IoTDemo/IoTDemo.sfproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/IoTDemo.sfproj -------------------------------------------------------------------------------- /IoTDemo/PublishProfiles/Cloud.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/PublishProfiles/Cloud.xml -------------------------------------------------------------------------------- /IoTDemo/PublishProfiles/Local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/PublishProfiles/Local.xml -------------------------------------------------------------------------------- /IoTDemo/Scripts/Deploy-FabricApplication.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/IoTDemo/Scripts/Deploy-FabricApplication.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolosalvatori/servicefabriceventhubdemo/HEAD/_config.yml --------------------------------------------------------------------------------