├── .gitattributes ├── .gitignore ├── Build └── Scripts │ ├── BuildBeta.bat │ ├── BuildNightly.bat │ ├── MasterBuild.buildproj │ ├── Targets │ ├── Inline │ │ └── GitHistory.targets │ ├── MSBuild Community Tasks │ │ ├── ICSharpCode.SharpZipLib.dll │ │ ├── MSBuild.Community.Tasks.Targets │ │ └── MSBuild.Community.Tasks.dll │ └── MSBuild Extension Pack │ │ ├── Interop.COMAdmin.dll │ │ ├── Interop.IWshRuntimeLibrary.dll │ │ ├── MSBuild.ExtensionPack.BizTalk.dll │ │ ├── MSBuild.ExtensionPack.Iis7.dll │ │ ├── MSBuild.ExtensionPack.JSharp.dll │ │ ├── MSBuild.ExtensionPack.Sql2005.dll │ │ ├── MSBuild.ExtensionPack.Sql2008.dll │ │ ├── MSBuild.ExtensionPack.StyleCop.dll │ │ ├── MSBuild.ExtensionPack.Sync.dll │ │ ├── MSBuild.ExtensionPack.Tfs.dll │ │ ├── MSBuild.ExtensionPack.dll │ │ └── MSBuild.ExtensionPack.tasks │ ├── UpdateDependencies.bat │ ├── openXDA.buildproj │ └── openXDA.version ├── LICENSE ├── README.md ├── SECURITY.md └── Source ├── 12 - PQDigest.sql ├── Applications └── openXDA │ ├── WixFolderGen │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── WixFolderGen.csproj │ ├── openXDA │ ├── =2.0.2 │ ├── App.config │ ├── AppDebug.config │ ├── AppModel.cs │ ├── Controllers │ │ ├── AuthenticationService │ │ │ └── AuthenticationController.cs │ │ ├── Config │ │ │ ├── EmailTemplateController.cs │ │ │ └── QueryController.cs │ │ ├── DataPusher │ │ │ └── DataPusherController.cs │ │ ├── ModelController.cs │ │ ├── SPCTools │ │ │ ├── AssetGroupController.cs │ │ │ └── Controllers.cs │ │ ├── SystemCenter │ │ │ └── SystemCenterController.cs │ │ ├── WebAPI │ │ │ ├── AlarmValueController.cs │ │ │ ├── ControllerHelpers.cs │ │ │ ├── EmailController.cs │ │ │ ├── Grafana.cs │ │ │ ├── LSCVSController.cs │ │ │ ├── TrenDAPController.cs │ │ │ └── WebAPI.cs │ │ ├── Widgets │ │ │ ├── EventTagViewController.cs │ │ │ ├── EventWidgetViewController.cs │ │ │ ├── MeterController.cs │ │ │ ├── OpenSEEController.cs │ │ │ ├── PQIController.cs │ │ │ ├── StandardMagDurCurveController.cs │ │ │ └── TrendController.cs │ │ └── Workbench │ │ │ └── DataFileController.cs │ ├── DatabaseConnectionFactory.cs │ ├── DebugHost.Designer.cs │ ├── DebugHost.cs │ ├── DebugHost.resx │ ├── Logging │ │ ├── FileSkippedExceptionFilter.cs │ │ ├── RollingFileTraceListener.cs │ │ ├── ServiceHelperAppender.cs │ │ └── SimpleLogger.cs │ ├── PostBuildSetup.bat │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceConnection.cs │ ├── ServiceHost.Designer.cs │ ├── ServiceHost.cs │ ├── ServiceHost.resx │ ├── ServiceHub.cs │ ├── Web.config │ ├── WebHosting │ │ ├── HostAuthenticationMiddleware.cs │ │ ├── UseWhenExtensions.cs │ │ ├── XDAActionSelector.cs │ │ ├── XDAControllerActivator.cs │ │ ├── XDAControllerSelector.cs │ │ ├── XDARazorEngine.cs │ │ └── XDAWebHost.cs │ ├── XDA.ico │ ├── openXDA.csproj │ ├── packages.config │ └── wwwroot │ │ ├── Content │ │ ├── BigTable.css │ │ ├── OpenSEE.css │ │ ├── OpenSTE.css │ │ ├── Popup.css │ │ ├── Site.css │ │ ├── _jsglyph.sass │ │ ├── _themes.sass │ │ ├── _themes_mdl_styles.sass │ │ ├── bootstrap-datepicker3.css │ │ ├── bootstrap-datepicker3.min.css │ │ ├── bootstrap-datetimepicker.css │ │ ├── bootstrap-sidebar.css │ │ ├── bootstrap-theme-cerulean.css │ │ ├── bootstrap-theme-cosmo.css │ │ ├── bootstrap-theme-cyborg.css │ │ ├── bootstrap-theme-readable.css │ │ ├── bootstrap-theme-sandstone.css │ │ ├── bootstrap-theme-slate.css │ │ ├── bootstrap-theme-united.css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── daterangepicker.css │ │ ├── fileinput.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ ├── jsglyph.eot │ │ │ ├── jsglyph.svg │ │ │ ├── jsglyph.ttf │ │ │ └── jsglyph.woff │ │ ├── fullscreenselect │ │ │ ├── bootstrap-fullscreen-select.css │ │ │ └── bootstrap-fullscreen-select.css.map │ │ ├── images │ │ │ ├── loading-sm.gif │ │ │ ├── loading.gif │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_333333_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery.jspanel.css │ │ ├── jquery.jspanel.min.css │ │ ├── jquery.jspanel.sass │ │ ├── jquery.multiselect.css │ │ ├── jquery.multiselect.filter.css │ │ ├── primeui.min.css │ │ └── themes │ │ │ └── redmond │ │ │ ├── images │ │ │ ├── animated-overlay.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ ├── jquery-ui.css │ │ │ ├── jquery-ui.min.css │ │ │ └── theme.css │ │ ├── Docs │ │ └── openXDAsettings.pdf │ │ ├── Images │ │ ├── 2-Line - 500.png │ │ ├── Analytics Coming Soon.png │ │ ├── EPRILogo.png │ │ ├── GPA-Logo---30-pix(on-white).png │ │ ├── GPA-Logo.png │ │ ├── Icons │ │ │ ├── Thumbs.db │ │ │ ├── apple-touch-icon-114x114.png │ │ │ ├── apple-touch-icon-120x120.png │ │ │ ├── apple-touch-icon-144x144.png │ │ │ ├── apple-touch-icon-152x152.png │ │ │ ├── apple-touch-icon-57x57.png │ │ │ ├── apple-touch-icon-60x60.png │ │ │ ├── apple-touch-icon-72x72.png │ │ │ ├── apple-touch-icon-76x76.png │ │ │ ├── favicon-128.png │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-196x196.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon-96x96.png │ │ │ ├── favicon.ico │ │ │ ├── mstile-144x144.png │ │ │ ├── mstile-150x150.png │ │ │ ├── mstile-310x150.png │ │ │ ├── mstile-310x310.png │ │ │ ├── mstile-70x70.png │ │ │ └── openXDA.png │ │ ├── Impact Coming Soon.png │ │ ├── PQProducts.png │ │ ├── SPCTools.png │ │ ├── Tiles │ │ │ ├── LSCVS.png │ │ │ ├── NotificationPages.png │ │ │ ├── PQBrowser.png │ │ │ ├── PQDashboard.png │ │ │ ├── PQDigest.png │ │ │ ├── SPCTools.png │ │ │ ├── SystemCenter.png │ │ │ ├── TrenDAP.png │ │ │ ├── VoltageRegReport.png │ │ │ ├── dD_Assets.png │ │ │ ├── dD_Config.png │ │ │ ├── dD_Export.png │ │ │ ├── dD_Reports.png │ │ │ ├── dD_Workbench.png │ │ │ ├── miMD.png │ │ │ └── openMIC.png │ │ ├── XDA.ico │ │ ├── dD Analytics old.png │ │ ├── dD Analytics.png │ │ ├── dD Assetolds.png │ │ ├── dD Assets.png │ │ ├── dD Config old.png │ │ ├── dD Config.png │ │ ├── dD Export.png │ │ ├── dD Impact.png │ │ ├── dD Reports.png │ │ ├── dD Tools.png │ │ ├── dD Workbench old.png │ │ ├── dD Workbench.png │ │ ├── dDSPCtools.png │ │ ├── dDSplashBackground.png │ │ ├── gpa-smalllock.png │ │ ├── openMIC.png │ │ ├── openMICBanner.png │ │ ├── openSEE - Waveform Viewer Header.png │ │ ├── openSEELogo.png │ │ ├── openSEET.png │ │ ├── openSTE.png │ │ ├── openXDA.png │ │ └── sync.png │ │ ├── Layout.cshtml │ │ ├── Logout.cshtml │ │ ├── README.md │ │ ├── RestoreEventEmail.cshtml │ │ ├── SPCTools │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── Index.cshtml │ │ ├── Scripts │ │ │ ├── Bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ ├── D3 │ │ │ │ └── d3.js │ │ │ └── TSX │ │ │ │ ├── AlarmGroup │ │ │ │ └── AlarmGroup.tsx │ │ │ │ ├── ChannelOverview │ │ │ │ └── ChannelOverview.tsx │ │ │ │ ├── CommonComponents │ │ │ │ ├── FunctionHelp.tsx │ │ │ │ ├── Graph.tsx │ │ │ │ └── Requirments.tsx │ │ │ │ ├── MeterOverview │ │ │ │ └── MeterOverview.tsx │ │ │ │ ├── NavBar.tsx │ │ │ │ ├── SPCTools.tsx │ │ │ │ ├── Wizard │ │ │ │ ├── AlarmTrendingCard.tsx │ │ │ │ ├── DynamicTimeRange.tsx │ │ │ │ ├── DynamicWizzardSlice.tsx │ │ │ │ ├── EPRINote.tsx │ │ │ │ ├── GeneralSettings.tsx │ │ │ │ ├── SelectStatisticsData.tsx │ │ │ │ ├── SetPointCreator.tsx │ │ │ │ ├── WizardHome.tsx │ │ │ │ └── WizardTest.tsx │ │ │ │ ├── global.d.ts │ │ │ │ └── store │ │ │ │ ├── AlarmDayGroupSlice.ts │ │ │ │ ├── AlarmDaySlice.ts │ │ │ │ ├── AlarmTypeSlice.ts │ │ │ │ ├── ChannelAlarmGroupSlice.ts │ │ │ │ ├── ChannelOverviewSlice.ts │ │ │ │ ├── MeasurmentTypeSlice.ts │ │ │ │ ├── MeterAlarmGroupSlice.ts │ │ │ │ ├── MeterSlice.ts │ │ │ │ ├── SeriesTypeSlice.ts │ │ │ │ ├── SetpointParseSlice.ts │ │ │ │ ├── SeveritySlice.ts │ │ │ │ ├── WizardAffectedChannelSlice.ts │ │ │ │ ├── WizardPhaseOptionSlice.ts │ │ │ │ ├── WizardVoltageOptionSlice.ts │ │ │ │ └── store.ts │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── webpack.config.js │ │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── index.cshtml │ ├── openXDAConsole │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ServiceClient.Designer.cs │ ├── ServiceClient.cs │ ├── ServiceClient.resx │ ├── XDA-console.ico │ └── openXDAConsole.csproj │ ├── openXDAManager │ ├── About openXDA.rtf │ ├── AboutWindow.xaml │ ├── AboutWindow.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ViewModel.cs │ ├── XDA-SplashScreen.png │ ├── app.manifest │ ├── openXDA-Manager-Splash-Bar.png │ ├── openXDAManager.csproj │ └── openXDAManager.ico │ └── openXDASetup │ ├── DOCKERFILE │ ├── INSTALL_LICENSE.rtf │ ├── LICENSE.txt │ ├── LogFileViewer.exe │ ├── README.txt │ ├── RestoreBitmap.ps1 │ ├── VersionBitmap.ps1 │ ├── WebFeatures.wxi │ ├── WebFeaturesXDAAlarm.wxi │ ├── WebFiles.wxi │ ├── WebFilesXDAAlarm.wxi │ ├── WebFolders.wxi │ ├── WebFoldersXDAAlarm.wxi │ ├── openXDASetup.wixproj │ ├── openXDASetup.wxs │ ├── openXDASetupBanner.bmp │ ├── openXDASetupDialog.bmp │ ├── packages.config │ └── startDocker.ps1 ├── Data ├── 01 - openXDA.sql ├── 02 - DashSprocs.sql ├── 03 - EnableEventDataSqlClr.sql ├── 04 - EnableHistorianSqlClr.sql ├── 05 - DefaultSettings.sql ├── 06 - DefaultChannelTypes.sql ├── 07 - DefaultTrendingAlarms.sql ├── 08 - DefaultContours.sql ├── 09 - SystemCenter.sql ├── 10 - MiMD.sql ├── 11 - SEBrowser.sql ├── Dockerfile └── startDocker.ps1 ├── Dependencies ├── DotNetZip │ ├── Ionic.Zlib.dll │ └── Ionic.Zlib.xml ├── FLEE │ ├── Ciloci.Flee.dll │ └── Ciloci.Flee.xml ├── GSF │ ├── AjaxMin.dll │ ├── Antlr3.Runtime.dll │ ├── Azure.Core.dll │ ├── Azure.Core.xml │ ├── ExpressionEvaluator.dll │ ├── GSF.COMTRADE.dll │ ├── GSF.COMTRADE.xml │ ├── GSF.Communication.dll │ ├── GSF.Communication.xml │ ├── GSF.Core.dll │ ├── GSF.Core.xml │ ├── GSF.EMAX.dll │ ├── GSF.EMAX.xml │ ├── GSF.Geo.dll │ ├── GSF.InstallerActions.CA.dll │ ├── GSF.PQDIF.dll │ ├── GSF.PQDIF.xml │ ├── GSF.PhasorProtocols.dll │ ├── GSF.PhasorProtocols.xml │ ├── GSF.SELEventParser.XML │ ├── GSF.SELEventParser.dll │ ├── GSF.Security.dll │ ├── GSF.Security.xml │ ├── GSF.ServiceProcess.dll │ ├── GSF.ServiceProcess.xml │ ├── GSF.TimeSeries.dll │ ├── GSF.TimeSeries.xml │ ├── GSF.Web.dll │ ├── GSF.Web.xml │ ├── GSF.Windows.XML │ ├── GSF.Windows.dll │ ├── GrafanaAdapters.dll │ ├── Microsoft.AspNet.SignalR.Core.dll │ ├── Microsoft.AspNet.SignalR.Core.xml │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ ├── Microsoft.AspNetCore.Cryptography.Internal.xml │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.dll │ ├── Microsoft.AspNetCore.DataProtection.Abstractions.xml │ ├── Microsoft.AspNetCore.DataProtection.dll │ ├── Microsoft.AspNetCore.DataProtection.xml │ ├── Microsoft.Extensions.Caching.Abstractions.dll │ ├── Microsoft.Extensions.Caching.Abstractions.xml │ ├── Microsoft.Extensions.Caching.Memory.dll │ ├── Microsoft.Extensions.Caching.Memory.xml │ ├── Microsoft.Extensions.Configuration.Abstractions.dll │ ├── Microsoft.Extensions.Configuration.Abstractions.xml │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.xml │ ├── Microsoft.Extensions.DependencyInjection.dll │ ├── Microsoft.Extensions.DependencyInjection.xml │ ├── Microsoft.Extensions.FileProviders.Abstractions.dll │ ├── Microsoft.Extensions.FileProviders.Abstractions.xml │ ├── Microsoft.Extensions.Hosting.Abstractions.dll │ ├── Microsoft.Extensions.Hosting.Abstractions.xml │ ├── Microsoft.Extensions.Logging.Abstractions.dll │ ├── Microsoft.Extensions.Logging.Abstractions.xml │ ├── Microsoft.Extensions.Logging.dll │ ├── Microsoft.Extensions.Logging.xml │ ├── Microsoft.Extensions.Options.dll │ ├── Microsoft.Extensions.Options.xml │ ├── Microsoft.Graph.Core.dll │ ├── Microsoft.Graph.Core.xml │ ├── Microsoft.Graph.dll │ ├── Microsoft.Graph.xml │ ├── Microsoft.Identity.Client.Broker.dll │ ├── Microsoft.Identity.Client.Desktop.dll │ ├── Microsoft.Identity.Client.NativeInterop.dll │ ├── Microsoft.Identity.Client.dll │ ├── Microsoft.Identity.Client.xml │ ├── Microsoft.Identity.Web.TokenCache.dll │ ├── Microsoft.Identity.Web.TokenCache.xml │ ├── Microsoft.IdentityModel.Abstractions.dll │ ├── Microsoft.IdentityModel.Abstractions.xml │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ ├── Microsoft.IdentityModel.JsonWebTokens.xml │ ├── Microsoft.IdentityModel.Logging.dll │ ├── Microsoft.IdentityModel.Logging.xml │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.xml │ ├── Microsoft.IdentityModel.Protocols.dll │ ├── Microsoft.IdentityModel.Protocols.xml │ ├── Microsoft.IdentityModel.Tokens.dll │ ├── Microsoft.IdentityModel.Tokens.xml │ ├── Microsoft.Owin.Cors.dll │ ├── Microsoft.Owin.Cors.xml │ ├── Microsoft.Owin.Diagnostics.dll │ ├── Microsoft.Owin.Diagnostics.xml │ ├── Microsoft.Owin.Host.HttpListener.dll │ ├── Microsoft.Owin.Host.HttpListener.xml │ ├── Microsoft.Owin.Hosting.dll │ ├── Microsoft.Owin.Hosting.xml │ ├── Microsoft.Owin.Security.dll │ ├── Microsoft.Owin.Security.xml │ ├── Microsoft.Owin.dll │ ├── Microsoft.Owin.xml │ ├── Microsoft.Web.WebView2.Core.dll │ ├── Microsoft.Web.WebView2.WinForms.dll │ ├── Microsoft.Web.WebView2.Wpf.dll │ ├── Microsoft.Win32.Registry.dll │ ├── Microsoft.Win32.Registry.xml │ ├── NUglify.dll │ ├── Newtonsoft.Json.dll │ ├── Newtonsoft.Json.xml │ ├── OSIsoft.AFSDK.dll │ ├── Owin.dll │ ├── RazorEngine.dll │ ├── RazorEngine.xml │ ├── System.Data.SQLite.dll │ ├── System.Diagnostics.DiagnosticSource.dll │ ├── System.Diagnostics.DiagnosticSource.xml │ ├── System.Drawing.Common.dll │ ├── System.IdentityModel.Tokens.Jwt.dll │ ├── System.IdentityModel.Tokens.Jwt.xml │ ├── System.Memory.Data.dll │ ├── System.Memory.Data.xml │ ├── System.Net.Http.Formatting.dll │ ├── System.Net.Http.Formatting.xml │ ├── System.Net.Http.Json.dll │ ├── System.Net.Http.Json.xml │ ├── System.Net.Http.WinHttpHandler.dll │ ├── System.Net.Http.WinHttpHandler.xml │ ├── System.Security.Cryptography.Xml.dll │ ├── System.Security.Cryptography.Xml.xml │ ├── System.Text.Encodings.Web.dll │ ├── System.Text.Encodings.Web.xml │ ├── System.Text.Json.dll │ ├── System.Text.Json.xml │ ├── System.Web.Cors.dll │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.Http.Cors.dll │ ├── System.Web.Http.Cors.xml │ ├── System.Web.Http.Owin.dll │ ├── System.Web.Http.Owin.xml │ ├── System.Web.Http.dll │ ├── System.Web.Http.xml │ ├── System.Web.Mvc.dll │ ├── System.Web.Mvc.xml │ ├── System.Web.Razor.dll │ ├── System.Web.Razor.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ ├── System.Web.WebPages.xml │ ├── TagDefinitions.xml │ ├── ValidateAssemblyBindings.exe │ └── ValidateAssemblyBindings.exe.config ├── eDNA │ ├── EZDnaServApi.dll │ ├── EZDnaServApi64.dll │ ├── EzDNAApiNet.dll │ ├── EzDNAApiNet64.dll │ ├── EzDNAApiNetSecure.dll │ ├── EzDNAApiNetSecure64.dll │ ├── EzDNAServApiNet.dll │ ├── EzDNAServApiNet64.dll │ ├── EzDnaApi.dll │ └── EzDnaApi64.dll └── openHistorian │ ├── EnableHistorianSqlClr.sql │ ├── GSF.Core.SqlClr.dll │ ├── GSF.SortedTreeStore.SqlClr.dll │ ├── GSF.SortedTreeStore.dll │ ├── crypto.dll │ ├── openHistorian.Core.SqlClr.dll │ ├── openHistorian.Core.dll │ └── openHistorian.SqlClr.dll ├── Documentation ├── Device Definitions Examples & Templates │ ├── DeviceDefinitionsExample-DFR.xml │ ├── DeviceDefinitionsExample-PQ.xml │ ├── openXDA Configuration Template - DFR.xlsx │ └── openXDA Configuration Template - PQ.xlsx ├── Load system configuration and test data.pdf ├── Readme files │ ├── 2016 GT FDA Advanced Automation - FLE.PDF │ ├── 2016 GT FDA Advanced Automation Paper - FLE.PDF │ ├── PQ Tool Suite.PNG │ └── XDA-Overview.png ├── openXDA Installation Manual 2016 06 30.pdf ├── openXDA Service Configuration Guide.md └── wiki │ ├── archive │ ├── 2014georgiatechfdapresasdausingoss-140722085705-phpapp02.pdf │ ├── openFLE.md │ ├── openFLE_Logo.png │ └── openFLE_Overview_Landscape.pdf │ ├── contributors │ └── felmendorf.md │ ├── files │ ├── XDA-Overview.png │ ├── openXDA_Release_1.3.md │ └── openXDA_Setup_and_Configuration_v1.3.docx │ ├── openXDA.md │ └── openXDA_Logo.png ├── LICENSE.txt ├── Libraries ├── DebugServiceMonitor │ ├── DebugServiceMonitor.cs │ ├── DebugServiceMonitor.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── FaultAlgorithms │ ├── Conductor.cs │ ├── Cycle.cs │ ├── CycleData.cs │ ├── CycleDataSet.cs │ ├── Device.cs │ ├── DisturbanceFile.cs │ ├── FaultAlgorithms.csproj │ ├── FaultAlgorithmsSet.cs │ ├── FaultLocationAlgorithms.cs │ ├── FaultLocationDataSet.cs │ ├── FaultResultsWriterBase.cs │ ├── FaultTriggerAlgorithms.cs │ ├── FaultTypeAlgorithms.cs │ ├── IFaultResultsWriter.cs │ ├── Line.cs │ ├── MeasurementData.cs │ ├── MeasurementDataSet.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RelayPerformance.cs │ └── XmlFaultResultsWriter.cs ├── FaultData │ ├── Configuration │ │ └── MeterSettingsSheet.cs │ ├── DataAnalysis │ │ ├── CycleDataGroup.cs │ │ ├── DataGroup.cs │ │ ├── DataSeries.cs │ │ ├── Disturbance.cs │ │ ├── Fault.cs │ │ ├── FaultGroup.cs │ │ ├── ReportedDisturbance.cs │ │ ├── Transform.cs │ │ ├── VICycleDataGroup.cs │ │ ├── VIDataGroup.cs │ │ └── VoltageDisturbanceAnalyzer.cs │ ├── DataOperations │ │ ├── BreakerRestrikeOperation.cs │ │ ├── BreakerTimingOperation.cs │ │ ├── ConfigurationOperation.cs │ │ ├── DFRLineFiles │ │ │ ├── BreakerConfiguration.cs │ │ │ ├── LineConfiguration.cs │ │ │ └── LineFileLoader.cs │ │ ├── DailyStatisticOperation.cs │ │ ├── DataOperationBase.cs │ │ ├── DataPusherOperation.cs │ │ ├── DataRescueOperation.cs │ │ ├── DisturbanceSeverityOperation.cs │ │ ├── DoubleEndedFaultOperation.cs │ │ ├── EventOperation.cs │ │ ├── FaultLocationOperation.cs │ │ ├── GTC │ │ │ └── MeterDataQualityOverride.cs │ │ ├── IDataOperation.cs │ │ ├── LSCVSDataOperation.cs │ │ ├── LightningDataOperation.cs │ │ ├── PQube │ │ │ └── PQubeClassificationOverride.cs │ │ ├── RelayEnergization.cs │ │ ├── StatisticOperation.cs │ │ └── TVA │ │ │ ├── EPRICapBankAnalytics.cs │ │ │ ├── RealTimeLightningDataOperation.cs │ │ │ ├── RealTimeLightningDataProvider.cs │ │ │ ├── SmartFawg.sql │ │ │ └── StructureQueryOperation.cs │ ├── DataReaders │ │ ├── COMTRADEReader.cs │ │ ├── CyclicHistogramReader.cs │ │ ├── DataReaderFactory.cs │ │ ├── EMAXReader.cs │ │ ├── IDataReader.cs │ │ ├── IGridPQDIFReader.cs │ │ ├── NullDataReader.cs │ │ ├── PQDIFReader.cs │ │ ├── PQube │ │ │ └── PQubeReader.cs │ │ ├── PQubeTrendingDataCSVReader.cs │ │ ├── SELEVEReader.cs │ │ └── SELLDPReader.cs │ ├── DataResources │ │ ├── BreakerDataResource.cs │ │ ├── CycleDataResource.cs │ │ ├── DataGroupsResource.cs │ │ ├── DataResourceBase.cs │ │ ├── EventClassificationResource.cs │ │ ├── FastRMSDataResource.cs │ │ ├── FaultDataResource.cs │ │ ├── IDataResource.cs │ │ ├── InterruptionDataResource.cs │ │ ├── LightningDataResource.cs │ │ ├── OSIPI │ │ │ ├── OSIPIDataResource.cs │ │ │ └── PIConnection.cs │ │ ├── SCADADataResource.cs │ │ ├── SagDataResource.cs │ │ ├── SnapshotDataResource.cs │ │ ├── SwellDataResource.cs │ │ ├── SystemEventResource.cs │ │ ├── TransientDataResource.cs │ │ ├── TrendingDataSummaryResource.cs │ │ ├── TrendingGroupsResource.cs │ │ └── eDNA │ │ │ └── EDNADataResource.cs │ ├── DataSets │ │ ├── AnalysisDataSet.cs │ │ ├── CyclicHistogramDataSet.cs │ │ ├── GTC │ │ │ └── BreakerRestrikeDataSet.cs │ │ ├── IDataSet.cs │ │ ├── INFDataSet.cs │ │ └── MeterDataSet.cs │ ├── DataWriters │ │ ├── CSVWriter.cs │ │ ├── ChartGenerator.cs │ │ ├── Emails │ │ │ ├── ConfigurationLoader.cs │ │ │ ├── DataSourceResponse.cs │ │ │ ├── DisturbanceEmailTemplate.xslt │ │ │ ├── EmailService.cs │ │ │ ├── ScheduledDataSource.cs │ │ │ ├── ScheduledDataSourceDefinition.cs │ │ │ ├── ScheduledDataSourceFactory.cs │ │ │ ├── ScheduledEmailService.cs │ │ │ ├── TemplateProcessor.cs │ │ │ ├── TriggeredDataSource.cs │ │ │ ├── TriggeredDataSourceDefinition.cs │ │ │ ├── TriggeredDataSourceFactory.cs │ │ │ └── TriggeredEmailService.cs │ │ ├── FaultTypeGenerator.cs │ │ ├── LightningGenerator.cs │ │ ├── PQIGenerator.cs │ │ ├── StructureLocationGenerator.cs │ │ └── XMLWriter.cs │ ├── FaultData.csproj │ ├── PluginFactory.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TimeZoneConverter.cs │ └── packages.config ├── FileWatcherMonitor │ ├── FileWatcherMonitor.cs │ ├── FileWatcherMonitor.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── OpenXDA.NotificationDataSources │ ├── AzureDataSource.cs │ ├── FaultTraceTool │ │ ├── FTTDataSource.cs │ │ ├── FTTImageGenerator.cs │ │ ├── FTTOptions.cs │ │ └── FTTRecord.cs │ ├── HIDSDataSource.cs │ ├── PQIDataSource.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SQLDataSource.cs │ ├── openXDA.NotificationDataSources.csproj │ └── packages.config ├── PQDS │ ├── DataSeries.cs │ ├── MetaDataTag.cs │ ├── PQDS.csproj │ ├── PQDSFile.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── PQMark.DataAggregator │ ├── DataAggregationEngine.cs │ ├── PQMark.DataAggregator.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── SPCTools │ ├── DataController.cs │ ├── ExpressionOperations.cs │ ├── Matrix.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SPCTools.csproj │ ├── Scalar.cs │ ├── SettingsHelper.cs │ ├── Slice.cs │ ├── TokenController.cs │ ├── WizardController.cs │ └── packages.config ├── SqlServerTedWriter │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SqlServerTedWriter.cs │ └── SqlServerTedWriter.csproj ├── XDAServiceMonitor │ ├── IServiceMonitor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ServiceMonitorBase.cs ├── openHistorian.XDALink.SqlClr │ ├── EnableHistorianXDALink.sql │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── XDAFunctions.cs │ └── openHistorian.XDALink.SqlClr.csproj ├── openHistorian.XDALink │ ├── Historian.cs │ ├── ImportedMeasurement.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TrendingDataPoint.cs │ └── openHistorian.XDALink.csproj ├── openXDA.APIAuthentication │ ├── APIQuery.cs │ ├── IAPICredentialRetriever.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── XDAAPI.cs │ ├── XDAAPIHelper.cs │ └── openXDA.APIAuthentication.csproj ├── openXDA.APIMiddleware │ ├── APIAccessKey.cs │ ├── APIAuthenticationMiddleware.cs │ ├── APIConsoleController.cs │ ├── APIPingController.cs │ ├── IAPIConsoleHost.cs │ ├── ImpersonationSecurityProvider.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RequestVerificationHeaderTokenController.cs │ ├── openXDA.APIMiddleware.csproj │ └── packages.config ├── openXDA.Adapters │ ├── ControllerConfig.cs │ ├── DataQualitySummaryController.cs │ ├── HIDSController.cs │ ├── JSONApiController.cs │ ├── NodeController.cs │ ├── OpenSTEController.cs │ ├── PQMarkController.cs │ ├── PQTrendingWebReportController.cs │ ├── PeriodicDataDisplayController.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReportController.cs │ ├── SpectralDataDisplayController.cs │ ├── StepChangeWebReportController.cs │ ├── TrendingDataDisplayController.cs │ ├── XDAapi.md │ ├── openXDA.Adapters.csproj │ └── packages.config ├── openXDA.ArcGIS │ ├── LightningDataProvider.cs │ ├── LightningMapServer.cs │ ├── LightningStrike.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── openXDA.ArcGIS.csproj │ └── packages.config ├── openXDA.CapSwitchAnalysis │ ├── Analyzer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── openXDA.CapSwitchAnalysis.csproj ├── openXDA.Configuration │ ├── BreakerSection.cs │ ├── COMTRADESection.cs │ ├── DataAnalysisSection.cs │ ├── DataPusherSection.cs │ ├── EMAXSection.cs │ ├── EPRICapBankAnalyticSection.cs │ ├── Edition │ │ ├── EditionChecker.cs │ │ └── HttpEditionFilterAttribute.cs │ ├── EmailSection.cs │ ├── EventEmailSection.cs │ ├── FaultLocationSection.cs │ ├── FileEnumeratorSection.cs │ ├── FileProcessorSection.cs │ ├── FilePrunerSection.cs │ ├── FileWatcherSection.cs │ ├── GrafanaSection.cs │ ├── LSCVSSection.cs │ ├── OSIPISection.cs │ ├── PQDIFSection.cs │ ├── PQISection.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SCADASection.cs │ ├── SSAMSSection.cs │ ├── Subscription.cs │ ├── SystemSection.cs │ ├── TaskProcessorSection.cs │ ├── TrendingDataSection.cs │ └── openXDA.Configuration.csproj ├── openXDA.DataPusher │ ├── ConfigurationLoader.cs │ ├── DataPusherEngine.cs │ ├── DataPusherRequester.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── WebAPIHub.cs │ ├── openXDA.DataPusher.csproj │ └── packages.config ├── openXDA.HIDS │ ├── APIExtensions │ │ └── APIExtensions.cs │ ├── CyclicHistogramOperation.cs │ ├── DailySummaryOperation.cs │ ├── DataQualityOperation.cs │ ├── HIDSAlarmOperation.cs │ ├── HIDSSettings.cs │ ├── PointAggregationResource.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QualityFlags.cs │ ├── TrendingDataSummaryOperation.cs │ ├── openXDA.HIDS.csproj │ └── packages.config ├── openXDA.MATLAB │ ├── MATLABAnalysisFunctionFactory.cs │ ├── MATLABAnalysisOperation.cs │ ├── MATLABAnalytic.cs │ ├── MATLABAnalyticTag.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── openXDA.MATLAB.csproj │ └── packages.config ├── openXDA.Model │ ├── ActiveAlarm.cs │ ├── Alarms │ │ ├── AlarmGroups │ │ │ ├── ActiveAlarm.cs │ │ │ ├── Alarm.cs │ │ │ ├── AlarmDay.cs │ │ │ ├── AlarmDayGroup.cs │ │ │ ├── AlarmDayGroupAlarmDay.cs │ │ │ ├── AlarmFactor.cs │ │ │ ├── AlarmGroup.cs │ │ │ ├── AlarmLog.cs │ │ │ ├── AlarmSeverity.cs │ │ │ ├── AlarmType.cs │ │ │ └── AlarmValue.cs │ │ ├── AlarmRangeLimit.cs │ │ ├── ChannelAlarmSummary.cs │ │ ├── ChannelDataQualitySummary.cs │ │ ├── ChannelsWithNormalLimits.cs │ │ ├── DataQualityRangeLimit.cs │ │ ├── DefaultAlarmRangeLimit.cs │ │ ├── DefaultDataQualityRangeLimit.cs │ │ ├── HourOfWeekLimit.cs │ │ ├── MeterAlarmSummary.cs │ │ ├── MeterDataQualitySummary.cs │ │ └── MetersWithNormalLimits.cs │ ├── ApplicationCategories │ │ ├── ApplicationCategory.cs │ │ └── PQApplications.cs │ ├── CapBankAnalytic │ │ ├── CBAnalyticResult.cs │ │ ├── CBBankHealth.cs │ │ ├── CBCapBankResult.cs │ │ ├── CBDataError.cs │ │ ├── CBOperation.cs │ │ ├── CBReportEventTable.cs │ │ ├── CBRestrikeResult.cs │ │ ├── CBRestrikeType.cs │ │ ├── CBStatus.cs │ │ ├── CBSwitchHealthAnalytic.cs │ │ └── CBSwitchingCondition.cs │ ├── Channels │ │ ├── BreakerChannel.cs │ │ ├── Channel.cs │ │ ├── ChannelAlarmGroup.cs │ │ ├── ChannelData.cs │ │ ├── ChannelGroup.cs │ │ ├── ChannelGroupType.cs │ │ ├── ChannelNormal.cs │ │ ├── ChannelOverview.cs │ │ ├── DataPoint.cs │ │ ├── MeasurementCharacteristic.cs │ │ ├── MeasurementType.cs │ │ ├── OutputChannel.cs │ │ ├── Phase.cs │ │ ├── Series.cs │ │ └── SeriesType.cs │ ├── DBCleanup.cs │ ├── DERAnalytic │ │ └── DERAnalyticResult.cs │ ├── Dashboard │ │ └── ContourClasses.cs │ ├── DataPush │ │ ├── AssetsToDataPush.cs │ │ ├── FilesToDataPush.cs │ │ └── MetersToDataPush.cs │ ├── EAS │ │ ├── CSAResult.cs │ │ ├── ICFEvent.cs │ │ └── ICFResult.cs │ ├── Emails │ │ ├── ActiveScheduledSubscription.cs │ │ ├── ActiveSubscription.cs │ │ ├── CellCarrier.cs │ │ ├── EmailCategory.cs │ │ ├── EmailDataSource.cs │ │ ├── EmailDataSourceSettingBase.cs │ │ ├── EmailTemplateUser.cs │ │ ├── EmailType.cs │ │ ├── EmailTypeBase.cs │ │ ├── EventNote.cs │ │ ├── IScheduledDataSource.cs │ │ ├── ITriggeredDataSource.cs │ │ ├── ScheduledEmailDataSourceEmailType.cs │ │ ├── ScheduledEmailDataSourceSetting.cs │ │ ├── ScheduledEmailType.cs │ │ ├── SentEmail.cs │ │ ├── SubscribeEmails.cs │ │ ├── SubscribeScheduledEmails.cs │ │ ├── TriggeredEmailDataSourceEmailType.cs │ │ ├── TriggeredEmailDataSourceSetting.cs │ │ ├── UserAccountCarrier.cs │ │ └── UserEmailTemplate.cs │ ├── Events │ │ ├── BreakerRestrike.cs │ │ ├── CycleData.cs │ │ ├── CycleDataSOEPointView.cs │ │ ├── Disturbances │ │ │ ├── Disturbance.cs │ │ │ ├── DisturbanceSeverity.cs │ │ │ ├── EventWorstDisturbance.cs │ │ │ ├── VoltageCurve.cs │ │ │ ├── VoltageCurvePoint.cs │ │ │ ├── VoltageEnvelope.cs │ │ │ └── VoltageEnvelopeCurve.cs │ │ ├── Event.cs │ │ ├── EventData.cs │ │ ├── EventEventTag.cs │ │ ├── EventInfo.cs │ │ ├── EventStat.cs │ │ ├── EventTag.cs │ │ ├── EventType.cs │ │ ├── EventTypeAssetType.cs │ │ ├── Faults │ │ │ ├── DoubleEndedFaultDistance.cs │ │ │ ├── Fault.cs │ │ │ ├── FaultCauseMetrics.cs │ │ │ ├── FaultCurve.cs │ │ │ ├── FaultDetectionLogic.cs │ │ │ ├── FaultGroup.cs │ │ │ ├── FaultLocationAlgorithm.cs │ │ │ ├── FaultNote.cs │ │ │ ├── FaultSegment.cs │ │ │ ├── MeterDependentAssetDesignation.cs │ │ │ └── SegmentType.cs │ │ └── RelayPerformance.cs │ ├── ExceptionHandler.cs │ ├── ExternalDBs │ │ └── PQView │ │ │ └── Site.cs │ ├── FileGroupLocalToRemote.cs │ ├── Files │ │ ├── AnalysisTask.cs │ │ ├── DataFile.cs │ │ ├── FileBlob.cs │ │ ├── FileGroup.cs │ │ ├── FileGroupField.cs │ │ └── FileGroupFieldValue.cs │ ├── IsExternalInit.cs │ ├── LSCVS │ │ ├── LSCVSEvent.cs │ │ ├── LSCVSRecord.cs │ │ ├── LSCVSSummary.cs │ │ └── LSCVSSummaryEvent.cs │ ├── LSCVSAccount.cs │ ├── LazyContext.cs │ ├── Links │ │ ├── AssetConnection.cs │ │ ├── AssetConnectionType.cs │ │ ├── AssetGroupAssetGroup.cs │ │ ├── AssetSpare.cs │ │ ├── CustomerAsset.cs │ │ ├── EventFaultEmail.cs │ │ ├── EventSentEmail.cs │ │ ├── LineAssetGroup.cs │ │ ├── LineSegmentConnections.cs │ │ ├── MeterAssetGroup.cs │ │ ├── MeterFacility.cs │ │ ├── MeterLine.cs │ │ ├── MeterLocationLine.cs │ │ ├── PQViewSite.cs │ │ ├── SCADAPoint.cs │ │ ├── UserAccountAssetGroup.cs │ │ ├── UserAccountEmailType.cs │ │ └── UserAccountScheduledEmailType.cs │ ├── MATLAB │ │ ├── MATLABAnalytic.cs │ │ ├── MATLABAnalyticAssetType.cs │ │ └── MATLABAnalyticEventType.cs │ ├── Meters │ │ ├── AssetGroup.cs │ │ ├── Location.cs │ │ ├── MaintenanceWindow.cs │ │ ├── Meter.cs │ │ ├── MeterAlarmGroup.cs │ │ └── MeterConfiguration.cs │ ├── Nodes │ │ ├── HostRegistration.cs │ │ ├── HostSetting.cs │ │ ├── Node.cs │ │ ├── NodeSetting.cs │ │ └── NodeType.cs │ ├── Note.cs │ ├── Notes │ │ ├── NoteApplication.cs │ │ ├── NoteTag.cs │ │ └── NoteType.cs │ ├── PQMarkAggregate.cs │ ├── PQMarkCompany.cs │ ├── PQMarkCompanyMeter.cs │ ├── PQMarkRestrictedAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RemoteXDAInstance.cs │ ├── Reports │ │ └── Report.cs │ ├── SEBrowser │ │ ├── D3DataSeries.cs │ │ ├── DetailedSeries.cs │ │ ├── TrendChannel.cs │ │ ├── Widget.cs │ │ ├── WidgetCategory.cs │ │ └── WidgetWidgetCategory.cs │ ├── Security │ │ ├── ApplicationNode.cs │ │ ├── ApplicationSustainedUser.cs │ │ └── ConfirmableUserAccount.cs │ ├── Settings │ │ ├── BreakerReportsSettings.cs │ │ ├── DataPusherSettings.cs │ │ ├── GlobalSettings.cs │ │ ├── PQMarkAggregationSettings.cs │ │ ├── PQReportsSettings.cs │ │ └── Setting.cs │ ├── SiteSummary.cs │ ├── SnapshotHarmonics.cs │ ├── System │ │ ├── AuditLog.cs │ │ ├── ConfigurationLoader.cs │ │ ├── DataOperation.cs │ │ ├── DataOperationFailure.cs │ │ ├── DataReader.cs │ │ ├── User.cs │ │ └── WebControllerExtension.cs │ ├── SystemCenter │ │ ├── ADRole.cs │ │ ├── AdditionalField.cs │ │ ├── AdditionalFieldValue.cs │ │ ├── ChannelTemplateFile.cs │ │ ├── Customer.cs │ │ ├── CustomerAccess.cs │ │ ├── DetailedAsset.cs │ │ ├── DetailedLocation.cs │ │ ├── DetailedMeter.cs │ │ ├── ExtDBTables.cs │ │ ├── ExternalDBField.cs │ │ ├── ExternalDatabase.cs │ │ ├── ExternalOpenXDAField.cs │ │ ├── LocationDrawing.cs │ │ ├── MeterHealthStatistics │ │ │ ├── MiMDDailyStatistic.cs │ │ │ ├── OpenMICDailyStatistic.cs │ │ │ └── OpenXDADailyStatistic.cs │ │ ├── RemoteXDAAsset.cs │ │ ├── RemoteXDAMeter.cs │ │ ├── Setting.cs │ │ ├── TableOperationExtensions.cs │ │ ├── UserAccount │ │ │ ├── AdditionalUserField.cs │ │ │ └── AdditionalUserFieldValue.cs │ │ ├── ValueList.cs │ │ └── ValueListGroup.cs │ ├── TransmissionElements │ │ ├── Asset.cs │ │ ├── AssetTypeAssetConnection.cs │ │ ├── AssetTypes.cs │ │ ├── AssetView.cs │ │ ├── Breaker.cs │ │ ├── BreakerOperation.cs │ │ ├── BreakerOperationType.cs │ │ ├── Bus.cs │ │ ├── CapBank.cs │ │ ├── CapBankRelay.cs │ │ ├── Customer.cs │ │ ├── DER.cs │ │ ├── Generation.cs │ │ ├── Line.cs │ │ ├── LineSegment.cs │ │ ├── LineView.cs │ │ ├── SourceImpedance.cs │ │ ├── StandardMagDurCurve.cs │ │ ├── StationAux.cs │ │ ├── StationBattery.cs │ │ ├── Structure.cs │ │ └── Transformer.cs │ ├── Trending │ │ ├── DailyTrendingSummary.cs │ │ ├── HourlyTrendingSummary.cs │ │ └── TrendingData.cs │ ├── WorkbenchFilter.cs │ ├── WorkbenchVoltageCurveView.cs │ ├── openXDA.Model.csproj │ └── packages.config ├── openXDA.NetCore │ ├── FaultAlgorithms │ │ ├── Conductor.cs │ │ ├── Cycle.cs │ │ ├── CycleData.cs │ │ ├── CycleDataSet.cs │ │ ├── MeasurementData.cs │ │ └── MeasurementDataSet.cs │ ├── FaultData │ │ └── DataAnalysis │ │ │ ├── CycleDataGroup.cs │ │ │ ├── DataGroup.cs │ │ │ ├── DataPoint.cs │ │ │ ├── DataSeries.cs │ │ │ ├── ReportedDisturbance.cs │ │ │ ├── Transform.cs │ │ │ ├── VICycleDataGroup.cs │ │ │ └── VIDataGroup.cs │ ├── Model │ │ ├── Channels │ │ │ ├── Channel.cs │ │ │ ├── ChannelData.cs │ │ │ ├── MeasurementCharacteristic.cs │ │ │ ├── MeasurementType.cs │ │ │ ├── Phase.cs │ │ │ ├── Series.cs │ │ │ └── SeriesType.cs │ │ ├── Events │ │ │ ├── Disturbances │ │ │ │ └── Disturbance.cs │ │ │ └── Event.cs │ │ ├── ExceptionHandler.cs │ │ ├── Files │ │ │ ├── DataFile.cs │ │ │ ├── FileBlob.cs │ │ │ ├── FileGroup.cs │ │ │ ├── FileGroupField.cs │ │ │ └── FileGroupFieldValue.cs │ │ ├── LazyContext.cs │ │ ├── Links │ │ │ ├── AssetConnection.cs │ │ │ ├── AssetConnectionType.cs │ │ │ ├── AssetLocation.cs │ │ │ ├── LineSegmentConnections.cs │ │ │ └── MeterAsset.cs │ │ ├── Meter │ │ │ ├── Location.cs │ │ │ └── Meter.cs │ │ └── TransmissionElements │ │ │ ├── Asset.cs │ │ │ ├── AssetTypes.cs │ │ │ ├── Line.cs │ │ │ ├── LineSegment.cs │ │ │ └── SourceImpedance.cs │ ├── OpenXDA.NetCore.csproj │ └── OpenXDA.NetCore.sln ├── openXDA.Nodes │ ├── Balancer.cs │ ├── ConfigurationLoader.cs │ ├── Host.cs │ ├── ICLIRegistry.cs │ ├── INode.cs │ ├── NodeBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Types │ │ ├── Analysis │ │ │ ├── AnalysisNode.cs │ │ │ ├── AnalysisTask.cs │ │ │ ├── AnalysisTaskProcessor.cs │ │ │ └── AnalysisTaskPublisher.cs │ │ ├── Authentication │ │ │ └── AuthenticationProviderNode.cs │ │ ├── DataPusher │ │ │ └── DataPusherNode.cs │ │ ├── DatabaseMaintenance │ │ │ └── DataBaseMaintenanceNode.cs │ │ ├── EPRICapBankAnalysis │ │ │ └── EPRICapBankAnalysisNode.cs │ │ ├── Email │ │ │ ├── EventEmailNode.cs │ │ │ ├── EventEmailProcessor.cs │ │ │ └── ScheduledEmailNode.cs │ │ ├── FileProcessing │ │ │ ├── FileGroupInfo.cs │ │ │ ├── FileProcessingTask.cs │ │ │ ├── FileProcessorIndex.cs │ │ │ ├── FileProcessorNode.cs │ │ │ └── FileSkippedException.cs │ │ ├── FilePruning │ │ │ └── FilePrunerNode.cs │ │ ├── Grafana │ │ │ ├── GrafanaAuthProxyController.cs │ │ │ ├── GrafanaHostingNode.cs │ │ │ ├── GrafanaQueryHelper.cs │ │ │ └── custom.ini │ │ └── SSAMS │ │ │ └── SSAMSNode.cs │ ├── openXDA.Nodes.csproj │ └── packages.config ├── openXDA.PQI │ ├── Address.cs │ ├── AuditCurve.cs │ ├── Company.cs │ ├── Equipment.cs │ ├── Facility.cs │ ├── FacilityAudit.cs │ ├── FacilityInfo.cs │ ├── HttpClientExtensions.cs │ ├── HttpClientProvider.cs │ ├── PQIEquipment.cs │ ├── PQIModel.cs │ ├── PQIWSClient.cs │ ├── PQIWSQueryHelper.cs │ ├── PingClient.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestCurve.cs │ ├── TestCurvePoint.cs │ ├── openXDA.PQI.csproj │ └── packages.config ├── openXDA.Reports │ ├── AllBreakersReport.cs │ ├── EmailWriter.cs │ ├── IndividualBreakerReport.cs │ ├── PQReport.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── ReportsEngine.cs │ ├── openXDA.Reports.csproj │ └── packages.config ├── openXDA.SqlClr │ ├── CurveFit.cs │ ├── EnableXDAFunctions.sql │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── WaveFit.cs │ ├── XDAFunctions.cs │ └── openXDA.SqlClr.csproj └── openXDA.XMLConfigLoader │ ├── Loader.cs │ ├── LoaderStatus.cs │ ├── Producer.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── openXDA.XMLConfig.csproj │ └── packages.config ├── Tools ├── DeviceDefinitionsMigrator │ ├── App.config │ ├── DeviceDefinitionsGenerator.sql │ ├── DeviceDefinitionsMigrator.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ldconfig-v1.bat │ ├── ldconfig.bat │ ├── ldconfig.ps1 │ └── packages.config ├── FaultTraceToolInterop │ ├── App.config │ ├── FaultTraceToolInterop.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── PQWaveformDataParser │ ├── About.rtf │ ├── AboutWindow.Designer.cs │ ├── AboutWindow.cs │ ├── AboutWindow.resx │ ├── App.config │ ├── FileViewer.Designer.cs │ ├── FileViewer.cs │ ├── FileViewer.resx │ ├── PQWaveformDataParser.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WDP.ico │ └── logo_120.png ├── SqlClrAssemblyEncoder │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SqlClrAssemblyEncoder.csproj ├── SqlClrAssemblyGen │ ├── App.config │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SqlClrAssemblyGen.csproj ├── XDABatchDataTransferTool │ ├── App.config │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Settings.cs │ ├── XDABatchDataTransferTool.csproj │ ├── XDABatchDataTransferTool.ico │ └── packages.config └── XDAUpgradeValidation │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── XDAUpgradeValidation.csproj │ └── app.config ├── nuget.config ├── openXDA Configuration Guide.docx ├── openXDA.sln └── openXDAsettings.pdf /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Scripts/BuildBeta.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/BuildBeta.bat -------------------------------------------------------------------------------- /Build/Scripts/BuildNightly.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/BuildNightly.bat -------------------------------------------------------------------------------- /Build/Scripts/MasterBuild.buildproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/MasterBuild.buildproj -------------------------------------------------------------------------------- /Build/Scripts/Targets/Inline/GitHistory.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/Targets/Inline/GitHistory.targets -------------------------------------------------------------------------------- /Build/Scripts/UpdateDependencies.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/UpdateDependencies.bat -------------------------------------------------------------------------------- /Build/Scripts/openXDA.buildproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Build/Scripts/openXDA.buildproj -------------------------------------------------------------------------------- /Build/Scripts/openXDA.version: -------------------------------------------------------------------------------- 1 | 3.0.5.53 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Source/12 - PQDigest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/12 - PQDigest.sql -------------------------------------------------------------------------------- /Source/Applications/openXDA/WixFolderGen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/WixFolderGen/App.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/WixFolderGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/WixFolderGen/Program.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/WixFolderGen/WixFolderGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/WixFolderGen/WixFolderGen.csproj -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/=2.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/=2.0.2 -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/App.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/AppDebug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/AppDebug.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/AppModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/AppModel.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/DebugHost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/DebugHost.Designer.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/DebugHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/DebugHost.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/DebugHost.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/DebugHost.resx -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/Logging/SimpleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/Logging/SimpleLogger.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/PostBuildSetup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/PostBuildSetup.bat -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/Program.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/ServiceConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/ServiceConnection.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/ServiceHost.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/ServiceHost.Designer.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/ServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/ServiceHost.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/ServiceHost.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/ServiceHost.resx -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/ServiceHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/ServiceHub.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/Web.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/WebHosting/XDAWebHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/WebHosting/XDAWebHost.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/XDA.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/XDA.ico -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/openXDA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/openXDA.csproj -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/packages.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Content/OpenSEE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Content/OpenSEE.css -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Content/OpenSTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Content/OpenSTE.css -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Content/Popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Content/Popup.css -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Content/Site.css -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/EPRILogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/EPRILogo.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/GPA-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/GPA-Logo.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/SPCTools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/SPCTools.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/XDA.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/XDA.ico -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/dD Tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/dD Tools.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/openMIC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/openMIC.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/openSEET.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/openSEET.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/openSTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/openSTE.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/openXDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/openXDA.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Images/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Images/sync.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Layout.cshtml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/Logout.cshtml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/README.md -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/SPCTools/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/SPCTools/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/SPCTools/.eslintrc -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDA/wwwroot/index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDA/wwwroot/index.cshtml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAConsole/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAConsole/App.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAConsole/Program.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAConsole/ServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAConsole/ServiceClient.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAConsole/ServiceClient.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAConsole/ServiceClient.resx -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAConsole/XDA-console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAConsole/XDA-console.ico -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/About openXDA.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/About openXDA.rtf -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/AboutWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/AboutWindow.xaml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/AboutWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/AboutWindow.xaml.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/App.xaml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/App.xaml.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/MainWindow.xaml -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/ViewModel.cs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/XDA-SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/XDA-SplashScreen.png -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/app.manifest -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDAManager/openXDAManager.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDAManager/openXDAManager.ico -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/DOCKERFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/DOCKERFILE -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/INSTALL_LICENSE.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/INSTALL_LICENSE.rtf -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/LICENSE.txt -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/LogFileViewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/LogFileViewer.exe -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/README.txt -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/RestoreBitmap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/RestoreBitmap.ps1 -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/VersionBitmap.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/VersionBitmap.ps1 -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/WebFeatures.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/WebFeatures.wxi -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/WebFiles.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/WebFiles.wxi -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/WebFilesXDAAlarm.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/WebFilesXDAAlarm.wxi -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/WebFolders.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/WebFolders.wxi -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/WebFoldersXDAAlarm.wxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/WebFoldersXDAAlarm.wxi -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/openXDASetup.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/openXDASetup.wixproj -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/openXDASetup.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/openXDASetup.wxs -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/openXDASetupBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/openXDASetupBanner.bmp -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/openXDASetupDialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/openXDASetupDialog.bmp -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/packages.config -------------------------------------------------------------------------------- /Source/Applications/openXDA/openXDASetup/startDocker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Applications/openXDA/openXDASetup/startDocker.ps1 -------------------------------------------------------------------------------- /Source/Data/01 - openXDA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/01 - openXDA.sql -------------------------------------------------------------------------------- /Source/Data/02 - DashSprocs.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/02 - DashSprocs.sql -------------------------------------------------------------------------------- /Source/Data/03 - EnableEventDataSqlClr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/03 - EnableEventDataSqlClr.sql -------------------------------------------------------------------------------- /Source/Data/04 - EnableHistorianSqlClr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/04 - EnableHistorianSqlClr.sql -------------------------------------------------------------------------------- /Source/Data/05 - DefaultSettings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/05 - DefaultSettings.sql -------------------------------------------------------------------------------- /Source/Data/06 - DefaultChannelTypes.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/06 - DefaultChannelTypes.sql -------------------------------------------------------------------------------- /Source/Data/07 - DefaultTrendingAlarms.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/07 - DefaultTrendingAlarms.sql -------------------------------------------------------------------------------- /Source/Data/08 - DefaultContours.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/08 - DefaultContours.sql -------------------------------------------------------------------------------- /Source/Data/09 - SystemCenter.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/09 - SystemCenter.sql -------------------------------------------------------------------------------- /Source/Data/10 - MiMD.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/10 - MiMD.sql -------------------------------------------------------------------------------- /Source/Data/11 - SEBrowser.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/11 - SEBrowser.sql -------------------------------------------------------------------------------- /Source/Data/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/Dockerfile -------------------------------------------------------------------------------- /Source/Data/startDocker.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Data/startDocker.ps1 -------------------------------------------------------------------------------- /Source/Dependencies/DotNetZip/Ionic.Zlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/DotNetZip/Ionic.Zlib.dll -------------------------------------------------------------------------------- /Source/Dependencies/DotNetZip/Ionic.Zlib.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/DotNetZip/Ionic.Zlib.xml -------------------------------------------------------------------------------- /Source/Dependencies/FLEE/Ciloci.Flee.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/FLEE/Ciloci.Flee.dll -------------------------------------------------------------------------------- /Source/Dependencies/FLEE/Ciloci.Flee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/FLEE/Ciloci.Flee.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/AjaxMin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/AjaxMin.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Antlr3.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Antlr3.Runtime.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Azure.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Azure.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Azure.Core.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/ExpressionEvaluator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/ExpressionEvaluator.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.COMTRADE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.COMTRADE.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.COMTRADE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.COMTRADE.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Communication.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Communication.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Communication.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Communication.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Core.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.EMAX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.EMAX.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.EMAX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.EMAX.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Geo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Geo.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.InstallerActions.CA.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.InstallerActions.CA.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.PQDIF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.PQDIF.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.PQDIF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.PQDIF.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.PhasorProtocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.PhasorProtocols.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.PhasorProtocols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.PhasorProtocols.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.SELEventParser.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.SELEventParser.XML -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.SELEventParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.SELEventParser.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Security.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Security.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.ServiceProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.ServiceProcess.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.ServiceProcess.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.ServiceProcess.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.TimeSeries.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.TimeSeries.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.TimeSeries.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.TimeSeries.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Web.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Web.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Windows.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Windows.XML -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GSF.Windows.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GSF.Windows.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/GrafanaAdapters.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/GrafanaAdapters.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.AspNet.SignalR.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.AspNet.SignalR.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.AspNet.SignalR.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.AspNet.SignalR.Core.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.AspNetCore.DataProtection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.AspNetCore.DataProtection.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.AspNetCore.DataProtection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.AspNetCore.DataProtection.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Caching.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Caching.Memory.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Caching.Memory.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Caching.Memory.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Logging.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Logging.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Extensions.Options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Extensions.Options.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Graph.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Graph.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Graph.Core.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Graph.Core.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Graph.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Graph.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Graph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Graph.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Client.Broker.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Client.Broker.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Client.Desktop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Client.Desktop.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Client.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Client.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Web.TokenCache.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Web.TokenCache.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Identity.Web.TokenCache.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Identity.Web.TokenCache.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Logging.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Logging.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Protocols.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Protocols.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.IdentityModel.Tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.IdentityModel.Tokens.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Cors.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Cors.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Diagnostics.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Diagnostics.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Diagnostics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Diagnostics.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Host.HttpListener.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Host.HttpListener.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Host.HttpListener.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Host.HttpListener.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Hosting.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Hosting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Hosting.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Security.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Security.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.Security.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.Security.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Owin.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Web.WebView2.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Web.WebView2.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Web.WebView2.WinForms.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Web.WebView2.WinForms.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Web.WebView2.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Web.WebView2.Wpf.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Win32.Registry.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Win32.Registry.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Microsoft.Win32.Registry.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Microsoft.Win32.Registry.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/NUglify.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/NUglify.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/OSIsoft.AFSDK.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/OSIsoft.AFSDK.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/Owin.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/RazorEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/RazorEngine.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/RazorEngine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/RazorEngine.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Data.SQLite.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Data.SQLite.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Diagnostics.DiagnosticSource.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Diagnostics.DiagnosticSource.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Diagnostics.DiagnosticSource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Diagnostics.DiagnosticSource.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Drawing.Common.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.IdentityModel.Tokens.Jwt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.IdentityModel.Tokens.Jwt.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Memory.Data.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Memory.Data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Memory.Data.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.Formatting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.Formatting.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.Formatting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.Formatting.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.Json.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.Json.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.WinHttpHandler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.WinHttpHandler.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Net.Http.WinHttpHandler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Net.Http.WinHttpHandler.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Security.Cryptography.Xml.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Security.Cryptography.Xml.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Security.Cryptography.Xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Security.Cryptography.Xml.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Text.Encodings.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Text.Encodings.Web.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Text.Encodings.Web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Text.Encodings.Web.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Text.Json.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Text.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Text.Json.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Cors.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Helpers.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Helpers.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.Cors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.Cors.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.Cors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.Cors.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.Owin.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.Owin.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.Owin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.Owin.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Http.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Http.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Mvc.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Mvc.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Razor.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.Razor.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.dll -------------------------------------------------------------------------------- /Source/Dependencies/GSF/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/System.Web.WebPages.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/TagDefinitions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/TagDefinitions.xml -------------------------------------------------------------------------------- /Source/Dependencies/GSF/ValidateAssemblyBindings.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/ValidateAssemblyBindings.exe -------------------------------------------------------------------------------- /Source/Dependencies/GSF/ValidateAssemblyBindings.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/GSF/ValidateAssemblyBindings.exe.config -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EZDnaServApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EZDnaServApi.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EZDnaServApi64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EZDnaServApi64.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAApiNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAApiNet.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAApiNet64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAApiNet64.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAApiNetSecure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAApiNetSecure.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAApiNetSecure64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAApiNetSecure64.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAServApiNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAServApiNet.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDNAServApiNet64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDNAServApiNet64.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDnaApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDnaApi.dll -------------------------------------------------------------------------------- /Source/Dependencies/eDNA/EzDnaApi64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/eDNA/EzDnaApi64.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/EnableHistorianSqlClr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/EnableHistorianSqlClr.sql -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/GSF.Core.SqlClr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/GSF.Core.SqlClr.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/GSF.SortedTreeStore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/GSF.SortedTreeStore.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/crypto.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/crypto.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/openHistorian.Core.SqlClr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/openHistorian.Core.SqlClr.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/openHistorian.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/openHistorian.Core.dll -------------------------------------------------------------------------------- /Source/Dependencies/openHistorian/openHistorian.SqlClr.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Dependencies/openHistorian/openHistorian.SqlClr.dll -------------------------------------------------------------------------------- /Source/Documentation/Readme files/PQ Tool Suite.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/Readme files/PQ Tool Suite.PNG -------------------------------------------------------------------------------- /Source/Documentation/Readme files/XDA-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/Readme files/XDA-Overview.png -------------------------------------------------------------------------------- /Source/Documentation/openXDA Installation Manual 2016 06 30.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/openXDA Installation Manual 2016 06 30.pdf -------------------------------------------------------------------------------- /Source/Documentation/openXDA Service Configuration Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/openXDA Service Configuration Guide.md -------------------------------------------------------------------------------- /Source/Documentation/wiki/archive/openFLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/archive/openFLE.md -------------------------------------------------------------------------------- /Source/Documentation/wiki/archive/openFLE_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/archive/openFLE_Logo.png -------------------------------------------------------------------------------- /Source/Documentation/wiki/contributors/felmendorf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/contributors/felmendorf.md -------------------------------------------------------------------------------- /Source/Documentation/wiki/files/XDA-Overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/files/XDA-Overview.png -------------------------------------------------------------------------------- /Source/Documentation/wiki/files/openXDA_Release_1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/files/openXDA_Release_1.3.md -------------------------------------------------------------------------------- /Source/Documentation/wiki/openXDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/openXDA.md -------------------------------------------------------------------------------- /Source/Documentation/wiki/openXDA_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Documentation/wiki/openXDA_Logo.png -------------------------------------------------------------------------------- /Source/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/LICENSE.txt -------------------------------------------------------------------------------- /Source/Libraries/DebugServiceMonitor/DebugServiceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/DebugServiceMonitor/DebugServiceMonitor.cs -------------------------------------------------------------------------------- /Source/Libraries/DebugServiceMonitor/DebugServiceMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/DebugServiceMonitor/DebugServiceMonitor.csproj -------------------------------------------------------------------------------- /Source/Libraries/DebugServiceMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/DebugServiceMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/Conductor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/Conductor.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/Cycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/Cycle.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/CycleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/CycleData.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/CycleDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/CycleDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/Device.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/Device.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/DisturbanceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/DisturbanceFile.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultAlgorithms.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultAlgorithms.csproj -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultAlgorithmsSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultAlgorithmsSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultLocationAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultLocationAlgorithms.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultLocationDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultLocationDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultResultsWriterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultResultsWriterBase.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultTriggerAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultTriggerAlgorithms.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/FaultTypeAlgorithms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/FaultTypeAlgorithms.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/IFaultResultsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/IFaultResultsWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/Line.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/MeasurementData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/MeasurementData.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/MeasurementDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/MeasurementDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/RelayPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/RelayPerformance.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultAlgorithms/XmlFaultResultsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultAlgorithms/XmlFaultResultsWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/Configuration/MeterSettingsSheet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/Configuration/MeterSettingsSheet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/CycleDataGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/CycleDataGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/DataGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/DataGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/DataSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/DataSeries.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/Disturbance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/Disturbance.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/Fault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/Fault.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/FaultGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/FaultGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/ReportedDisturbance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/ReportedDisturbance.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/Transform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/Transform.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/VICycleDataGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/VICycleDataGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataAnalysis/VIDataGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataAnalysis/VIDataGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/DataOperationBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/DataOperationBase.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/EventOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/EventOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/IDataOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/IDataOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/LSCVSDataOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/LSCVSDataOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/RelayEnergization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/RelayEnergization.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/StatisticOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/StatisticOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataOperations/TVA/SmartFawg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataOperations/TVA/SmartFawg.sql -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/COMTRADEReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/COMTRADEReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/CyclicHistogramReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/CyclicHistogramReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/DataReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/DataReaderFactory.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/EMAXReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/EMAXReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/IDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/IDataReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/IGridPQDIFReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/IGridPQDIFReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/NullDataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/NullDataReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/PQDIFReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/PQDIFReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/PQube/PQubeReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/PQube/PQubeReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/SELEVEReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/SELEVEReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataReaders/SELLDPReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataReaders/SELLDPReader.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/BreakerDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/BreakerDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/CycleDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/CycleDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/DataGroupsResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/DataGroupsResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/DataResourceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/DataResourceBase.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/FastRMSDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/FastRMSDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/FaultDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/FaultDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/IDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/IDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/OSIPI/PIConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/OSIPI/PIConnection.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/SCADADataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/SCADADataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/SagDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/SagDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/SwellDataResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/SwellDataResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataResources/SystemEventResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataResources/SystemEventResource.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataSets/AnalysisDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataSets/AnalysisDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataSets/CyclicHistogramDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataSets/CyclicHistogramDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataSets/IDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataSets/IDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataSets/INFDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataSets/INFDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataSets/MeterDataSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataSets/MeterDataSet.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/CSVWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/CSVWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/ChartGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/ChartGenerator.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/Emails/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/Emails/EmailService.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/FaultTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/FaultTypeGenerator.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/LightningGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/LightningGenerator.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/PQIGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/PQIGenerator.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/DataWriters/XMLWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/DataWriters/XMLWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/FaultData.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/FaultData.csproj -------------------------------------------------------------------------------- /Source/Libraries/FaultData/PluginFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/PluginFactory.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/TimeZoneConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/TimeZoneConverter.cs -------------------------------------------------------------------------------- /Source/Libraries/FaultData/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FaultData/packages.config -------------------------------------------------------------------------------- /Source/Libraries/FileWatcherMonitor/FileWatcherMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FileWatcherMonitor/FileWatcherMonitor.cs -------------------------------------------------------------------------------- /Source/Libraries/FileWatcherMonitor/FileWatcherMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FileWatcherMonitor/FileWatcherMonitor.csproj -------------------------------------------------------------------------------- /Source/Libraries/FileWatcherMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/FileWatcherMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/PQDS/DataSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQDS/DataSeries.cs -------------------------------------------------------------------------------- /Source/Libraries/PQDS/MetaDataTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQDS/MetaDataTag.cs -------------------------------------------------------------------------------- /Source/Libraries/PQDS/PQDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQDS/PQDS.csproj -------------------------------------------------------------------------------- /Source/Libraries/PQDS/PQDSFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQDS/PQDSFile.cs -------------------------------------------------------------------------------- /Source/Libraries/PQDS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQDS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/PQMark.DataAggregator/DataAggregationEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQMark.DataAggregator/DataAggregationEngine.cs -------------------------------------------------------------------------------- /Source/Libraries/PQMark.DataAggregator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/PQMark.DataAggregator/packages.config -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/DataController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/DataController.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/ExpressionOperations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/ExpressionOperations.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/Matrix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/Matrix.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/SPCTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/SPCTools.csproj -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/Scalar.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/SettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/SettingsHelper.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/Slice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/Slice.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/TokenController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/TokenController.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/WizardController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/WizardController.cs -------------------------------------------------------------------------------- /Source/Libraries/SPCTools/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SPCTools/packages.config -------------------------------------------------------------------------------- /Source/Libraries/SqlServerTedWriter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SqlServerTedWriter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/SqlServerTedWriter/SqlServerTedWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SqlServerTedWriter/SqlServerTedWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/SqlServerTedWriter/SqlServerTedWriter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/SqlServerTedWriter/SqlServerTedWriter.csproj -------------------------------------------------------------------------------- /Source/Libraries/XDAServiceMonitor/IServiceMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/XDAServiceMonitor/IServiceMonitor.cs -------------------------------------------------------------------------------- /Source/Libraries/XDAServiceMonitor/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/XDAServiceMonitor/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/XDAServiceMonitor/ServiceMonitorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/XDAServiceMonitor/ServiceMonitorBase.cs -------------------------------------------------------------------------------- /Source/Libraries/openHistorian.XDALink.SqlClr/XDAFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openHistorian.XDALink.SqlClr/XDAFunctions.cs -------------------------------------------------------------------------------- /Source/Libraries/openHistorian.XDALink/Historian.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openHistorian.XDALink/Historian.cs -------------------------------------------------------------------------------- /Source/Libraries/openHistorian.XDALink/ImportedMeasurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openHistorian.XDALink/ImportedMeasurement.cs -------------------------------------------------------------------------------- /Source/Libraries/openHistorian.XDALink/TrendingDataPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openHistorian.XDALink/TrendingDataPoint.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIAuthentication/APIQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIAuthentication/APIQuery.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIAuthentication/XDAAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIAuthentication/XDAAPI.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIAuthentication/XDAAPIHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIAuthentication/XDAAPIHelper.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIMiddleware/APIAccessKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIMiddleware/APIAccessKey.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIMiddleware/APIConsoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIMiddleware/APIConsoleController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIMiddleware/APIPingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIMiddleware/APIPingController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIMiddleware/IAPIConsoleHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIMiddleware/IAPIConsoleHost.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.APIMiddleware/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.APIMiddleware/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/ControllerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/ControllerConfig.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/HIDSController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/HIDSController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/JSONApiController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/JSONApiController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/NodeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/NodeController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/OpenSTEController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/OpenSTEController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/PQMarkController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/PQMarkController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/ReportController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/ReportController.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/XDAapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/XDAapi.md -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/openXDA.Adapters.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/openXDA.Adapters.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Adapters/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Adapters/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/LightningDataProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/LightningDataProvider.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/LightningMapServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/LightningMapServer.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/LightningStrike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/LightningStrike.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/openXDA.ArcGIS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/openXDA.ArcGIS.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.ArcGIS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.ArcGIS/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.CapSwitchAnalysis/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.CapSwitchAnalysis/Analyzer.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/BreakerSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/BreakerSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/COMTRADESection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/COMTRADESection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/DataAnalysisSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/DataAnalysisSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/DataPusherSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/DataPusherSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/EMAXSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/EMAXSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/EmailSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/EmailSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/EventEmailSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/EventEmailSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/FaultLocationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/FaultLocationSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/FileEnumeratorSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/FileEnumeratorSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/FileProcessorSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/FileProcessorSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/FilePrunerSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/FilePrunerSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/FileWatcherSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/FileWatcherSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/GrafanaSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/GrafanaSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/LSCVSSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/LSCVSSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/OSIPISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/OSIPISection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/PQDIFSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/PQDIFSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/PQISection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/PQISection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/SCADASection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/SCADASection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/SSAMSSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/SSAMSSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/Subscription.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/SystemSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/SystemSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/TaskProcessorSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/TaskProcessorSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Configuration/TrendingDataSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Configuration/TrendingDataSection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/DataPusherEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/DataPusherEngine.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/DataPusherRequester.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/DataPusherRequester.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/README.md -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/WebAPIHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/WebAPIHub.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/openXDA.DataPusher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/openXDA.DataPusher.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.DataPusher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.DataPusher/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/APIExtensions/APIExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/APIExtensions/APIExtensions.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/CyclicHistogramOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/CyclicHistogramOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/DailySummaryOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/DailySummaryOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/DataQualityOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/DataQualityOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/HIDSAlarmOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/HIDSAlarmOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/HIDSSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/HIDSSettings.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/PointAggregationResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/PointAggregationResource.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/QualityFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/QualityFlags.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/TrendingDataSummaryOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/TrendingDataSummaryOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/openXDA.HIDS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/openXDA.HIDS.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.HIDS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.HIDS/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/MATLABAnalysisOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/MATLABAnalysisOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/MATLABAnalytic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/MATLABAnalytic.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/MATLABAnalyticTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/MATLABAnalyticTag.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/openXDA.MATLAB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/openXDA.MATLAB.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.MATLAB/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.MATLAB/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/ActiveAlarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/ActiveAlarm.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/Alarm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/Alarm.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmDay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmDay.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmLog.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmGroups/AlarmValue.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/AlarmRangeLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/AlarmRangeLimit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/ChannelAlarmSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/ChannelAlarmSummary.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/DataQualityRangeLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/DataQualityRangeLimit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/DefaultAlarmRangeLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/DefaultAlarmRangeLimit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/HourOfWeekLimit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/HourOfWeekLimit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/MeterAlarmSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/MeterAlarmSummary.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Alarms/MetersWithNormalLimits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Alarms/MetersWithNormalLimits.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/CapBankAnalytic/CBDataError.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/CapBankAnalytic/CBDataError.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/CapBankAnalytic/CBOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/CapBankAnalytic/CBOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/CapBankAnalytic/CBStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/CapBankAnalytic/CBStatus.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/BreakerChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/BreakerChannel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/Channel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelAlarmGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelAlarmGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelData.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelGroupType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelGroupType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelNormal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelNormal.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/ChannelOverview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/ChannelOverview.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/DataPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/DataPoint.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/MeasurementType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/MeasurementType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/OutputChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/OutputChannel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/Phase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/Phase.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/Series.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/Series.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Channels/SeriesType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Channels/SeriesType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/DBCleanup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/DBCleanup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Dashboard/ContourClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Dashboard/ContourClasses.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/DataPush/AssetsToDataPush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/DataPush/AssetsToDataPush.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/DataPush/FilesToDataPush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/DataPush/FilesToDataPush.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/DataPush/MetersToDataPush.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/DataPush/MetersToDataPush.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/EAS/CSAResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/EAS/CSAResult.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/EAS/ICFEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/EAS/ICFEvent.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/EAS/ICFResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/EAS/ICFResult.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/ActiveSubscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/ActiveSubscription.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/CellCarrier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/CellCarrier.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EmailCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EmailCategory.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EmailDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EmailDataSource.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EmailTemplateUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EmailTemplateUser.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EmailType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EmailType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EmailTypeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EmailTypeBase.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/EventNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/EventNote.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/IScheduledDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/IScheduledDataSource.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/ITriggeredDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/ITriggeredDataSource.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/ScheduledEmailType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/ScheduledEmailType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/SentEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/SentEmail.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/SubscribeEmails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/SubscribeEmails.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/UserAccountCarrier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/UserAccountCarrier.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Emails/UserEmailTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Emails/UserEmailTemplate.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/BreakerRestrike.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/BreakerRestrike.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/CycleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/CycleData.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Event.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventData.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventEventTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventEventTag.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventStat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventStat.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventTag.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/EventTypeAssetType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/EventTypeAssetType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/Fault.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/Fault.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/FaultCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/FaultCurve.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/FaultGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/FaultGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/FaultNote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/FaultNote.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/FaultSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/FaultSegment.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/Faults/SegmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/Faults/SegmentType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Events/RelayPerformance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Events/RelayPerformance.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/ExceptionHandler.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/ExternalDBs/PQView/Site.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/ExternalDBs/PQView/Site.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/FileGroupLocalToRemote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/FileGroupLocalToRemote.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/AnalysisTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/AnalysisTask.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/DataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/DataFile.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/FileBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/FileBlob.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/FileGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/FileGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/FileGroupField.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/FileGroupField.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Files/FileGroupFieldValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Files/FileGroupFieldValue.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/IsExternalInit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LSCVS/LSCVSEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LSCVS/LSCVSEvent.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LSCVS/LSCVSRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LSCVS/LSCVSRecord.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LSCVS/LSCVSSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LSCVS/LSCVSSummary.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LSCVS/LSCVSSummaryEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LSCVS/LSCVSSummaryEvent.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LSCVSAccount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LSCVSAccount.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/LazyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/LazyContext.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/AssetConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/AssetConnection.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/AssetConnectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/AssetConnectionType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/AssetGroupAssetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/AssetGroupAssetGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/AssetSpare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/AssetSpare.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/CustomerAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/CustomerAsset.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/EventFaultEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/EventFaultEmail.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/EventSentEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/EventSentEmail.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/LineAssetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/LineAssetGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/MeterAssetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/MeterAssetGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/MeterFacility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/MeterFacility.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/MeterLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/MeterLine.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/MeterLocationLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/MeterLocationLine.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/PQViewSite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/PQViewSite.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/SCADAPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/SCADAPoint.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/UserAccountAssetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/UserAccountAssetGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Links/UserAccountEmailType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Links/UserAccountEmailType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/MATLAB/MATLABAnalytic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/MATLAB/MATLABAnalytic.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/AssetGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/AssetGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/Location.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/MaintenanceWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/MaintenanceWindow.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/Meter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/Meter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/MeterAlarmGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/MeterAlarmGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Meters/MeterConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Meters/MeterConfiguration.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Nodes/HostRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Nodes/HostRegistration.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Nodes/HostSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Nodes/HostSetting.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Nodes/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Nodes/Node.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Nodes/NodeSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Nodes/NodeSetting.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Nodes/NodeType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Nodes/NodeType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Note.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Note.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Notes/NoteApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Notes/NoteApplication.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Notes/NoteTag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Notes/NoteTag.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Notes/NoteType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Notes/NoteType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/PQMarkAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/PQMarkAggregate.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/PQMarkCompany.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/PQMarkCompany.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/PQMarkCompanyMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/PQMarkCompanyMeter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/PQMarkRestrictedAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/PQMarkRestrictedAttribute.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/RemoteXDAInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/RemoteXDAInstance.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Reports/Report.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Reports/Report.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SEBrowser/D3DataSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SEBrowser/D3DataSeries.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SEBrowser/DetailedSeries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SEBrowser/DetailedSeries.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SEBrowser/TrendChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SEBrowser/TrendChannel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SEBrowser/Widget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SEBrowser/Widget.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SEBrowser/WidgetCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SEBrowser/WidgetCategory.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Security/ApplicationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Security/ApplicationNode.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Settings/DataPusherSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Settings/DataPusherSettings.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Settings/GlobalSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Settings/GlobalSettings.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Settings/PQReportsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Settings/PQReportsSettings.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Settings/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Settings/Setting.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SiteSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SiteSummary.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SnapshotHarmonics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SnapshotHarmonics.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/AuditLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/AuditLog.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/DataOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/DataOperation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/DataOperationFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/DataOperationFailure.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/DataReader.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/System/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/System/User.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/ADRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/ADRole.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/Customer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/Customer.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/CustomerAccess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/CustomerAccess.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/DetailedAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/DetailedAsset.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/DetailedMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/DetailedMeter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/ExtDBTables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/ExtDBTables.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/RemoteXDAAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/RemoteXDAAsset.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/RemoteXDAMeter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/RemoteXDAMeter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/Setting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/Setting.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/ValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/ValueList.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/SystemCenter/ValueListGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/SystemCenter/ValueListGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/TransmissionElements/Asset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/TransmissionElements/Asset.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/TransmissionElements/Bus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/TransmissionElements/Bus.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/TransmissionElements/DER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/TransmissionElements/DER.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/TransmissionElements/Line.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/TransmissionElements/Line.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/Trending/TrendingData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/Trending/TrendingData.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/WorkbenchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/WorkbenchFilter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/WorkbenchVoltageCurveView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/WorkbenchVoltageCurveView.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/openXDA.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/openXDA.Model.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Model/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Model/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/FaultAlgorithms/Conductor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/FaultAlgorithms/Conductor.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/FaultAlgorithms/Cycle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/FaultAlgorithms/Cycle.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/FaultAlgorithms/CycleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/FaultAlgorithms/CycleData.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Channels/Channel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Channels/Channel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Channels/Phase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Channels/Phase.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Channels/Series.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Channels/Series.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Channels/SeriesType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Channels/SeriesType.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Events/Event.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/ExceptionHandler.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Files/DataFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Files/DataFile.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Files/FileBlob.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Files/FileBlob.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Files/FileGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Files/FileGroup.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/LazyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/LazyContext.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Links/AssetLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Links/AssetLocation.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Links/MeterAsset.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Links/MeterAsset.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Meter/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Meter/Location.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/Model/Meter/Meter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/Model/Meter/Meter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/OpenXDA.NetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/OpenXDA.NetCore.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.NetCore/OpenXDA.NetCore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.NetCore/OpenXDA.NetCore.sln -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Balancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Balancer.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/ConfigurationLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/ConfigurationLoader.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Host.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/ICLIRegistry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/ICLIRegistry.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/INode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/INode.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/NodeBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/NodeBase.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Types/Analysis/AnalysisNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Types/Analysis/AnalysisNode.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Types/Analysis/AnalysisTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Types/Analysis/AnalysisTask.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Types/Email/EventEmailNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Types/Email/EventEmailNode.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Types/Grafana/custom.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Types/Grafana/custom.ini -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/Types/SSAMS/SSAMSNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/Types/SSAMS/SSAMSNode.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/openXDA.Nodes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/openXDA.Nodes.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Nodes/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Nodes/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/Address.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/AuditCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/AuditCurve.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/Company.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/Equipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/Equipment.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/Facility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/Facility.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/FacilityAudit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/FacilityAudit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/FacilityInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/FacilityInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/HttpClientExtensions.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/HttpClientProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/HttpClientProvider.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/PQIEquipment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/PQIEquipment.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/PQIModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/PQIModel.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/PQIWSClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/PQIWSClient.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/PQIWSQueryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/PQIWSQueryHelper.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/PingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/PingClient.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/TestCurve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/TestCurve.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/TestCurvePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/TestCurvePoint.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/openXDA.PQI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/openXDA.PQI.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.PQI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.PQI/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/AllBreakersReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/AllBreakersReport.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/EmailWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/EmailWriter.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/IndividualBreakerReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/IndividualBreakerReport.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/PQReport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/PQReport.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/README.md -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/ReportsEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/ReportsEngine.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/openXDA.Reports.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/openXDA.Reports.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.Reports/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.Reports/packages.config -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/CurveFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/CurveFit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/EnableXDAFunctions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/EnableXDAFunctions.sql -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/WaveFit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/WaveFit.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/XDAFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/XDAFunctions.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.SqlClr/openXDA.SqlClr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.SqlClr/openXDA.SqlClr.csproj -------------------------------------------------------------------------------- /Source/Libraries/openXDA.XMLConfigLoader/Loader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.XMLConfigLoader/Loader.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.XMLConfigLoader/LoaderStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.XMLConfigLoader/LoaderStatus.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.XMLConfigLoader/Producer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.XMLConfigLoader/Producer.cs -------------------------------------------------------------------------------- /Source/Libraries/openXDA.XMLConfigLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Libraries/openXDA.XMLConfigLoader/packages.config -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/DeviceDefinitionsMigrator/App.config -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/DeviceDefinitionsMigrator/Program.cs -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/ldconfig-v1.bat: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy ByPass -File ldconfig.ps1 load_v1 -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/ldconfig.bat: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy ByPass -File ldconfig.ps1 load -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/ldconfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/DeviceDefinitionsMigrator/ldconfig.ps1 -------------------------------------------------------------------------------- /Source/Tools/DeviceDefinitionsMigrator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/DeviceDefinitionsMigrator/packages.config -------------------------------------------------------------------------------- /Source/Tools/FaultTraceToolInterop/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/FaultTraceToolInterop/App.config -------------------------------------------------------------------------------- /Source/Tools/FaultTraceToolInterop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/FaultTraceToolInterop/Program.cs -------------------------------------------------------------------------------- /Source/Tools/FaultTraceToolInterop/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/FaultTraceToolInterop/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tools/FaultTraceToolInterop/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/FaultTraceToolInterop/packages.config -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/About.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/About.rtf -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/AboutWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/AboutWindow.Designer.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/AboutWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/AboutWindow.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/AboutWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/AboutWindow.resx -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/App.config -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/FileViewer.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/FileViewer.Designer.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/FileViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/FileViewer.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/FileViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/FileViewer.resx -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/PQWaveformDataParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/PQWaveformDataParser.csproj -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/Program.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/WDP.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/WDP.ico -------------------------------------------------------------------------------- /Source/Tools/PQWaveformDataParser/logo_120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/PQWaveformDataParser/logo_120.png -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyEncoder/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyEncoder/App.config -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyEncoder/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyEncoder/Program.cs -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyEncoder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyEncoder/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyGen/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyGen/App.config -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyGen/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyGen/Program.cs -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyGen/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyGen/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tools/SqlClrAssemblyGen/SqlClrAssemblyGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/SqlClrAssemblyGen/SqlClrAssemblyGen.csproj -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/App.config -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/MainForm.Designer.cs -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/MainForm.cs -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/MainForm.resx -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/Program.cs -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/Settings.cs -------------------------------------------------------------------------------- /Source/Tools/XDABatchDataTransferTool/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDABatchDataTransferTool/packages.config -------------------------------------------------------------------------------- /Source/Tools/XDAUpgradeValidation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDAUpgradeValidation/Program.cs -------------------------------------------------------------------------------- /Source/Tools/XDAUpgradeValidation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDAUpgradeValidation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Tools/XDAUpgradeValidation/XDAUpgradeValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDAUpgradeValidation/XDAUpgradeValidation.csproj -------------------------------------------------------------------------------- /Source/Tools/XDAUpgradeValidation/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/Tools/XDAUpgradeValidation/app.config -------------------------------------------------------------------------------- /Source/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/nuget.config -------------------------------------------------------------------------------- /Source/openXDA Configuration Guide.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/openXDA Configuration Guide.docx -------------------------------------------------------------------------------- /Source/openXDA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/openXDA.sln -------------------------------------------------------------------------------- /Source/openXDAsettings.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GridProtectionAlliance/openXDA/HEAD/Source/openXDAsettings.pdf --------------------------------------------------------------------------------