Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Build/Scripts/SystemCenter.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.661.69
3.0.662.69
6 changes: 3 additions & 3 deletions Source/Applications/SystemCenter/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyFileVersion("3.0.661.69")]
// [assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyFileVersion("3.0.662.69")]
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyFileVersion("3.0.661.69")]
[assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyFileVersion("3.0.662.69")]
6 changes: 3 additions & 3 deletions Source/Applications/WixFolderGen/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyFileVersion("3.0.661.69")]
// [assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyFileVersion("3.0.662.69")]
Binary file modified Source/Dependencies/GSF/AdoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ArchivistAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/AudioAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/AzureEventHubAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/COMTRADEAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/CsvAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DataQualityMonitoring.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DeviceStatAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Dnp3Adapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/DynamicCalculator.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/EpriExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FileAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/FtpAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ASN1.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.COMTRADE.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Communication.dll
Binary file not shown.
77 changes: 77 additions & 0 deletions Source/Dependencies/GSF/GSF.Core.XML
Original file line number Diff line number Diff line change
Expand Up @@ -19948,6 +19948,33 @@
</para>
</remarks>
</member>
<member name="T:GSF.Diagnostics.KillOnReleaseJob">
<summary>
Represents a job that kills all assigned processes when the job is disposed.
</summary>
</member>
<member name="M:GSF.Diagnostics.KillOnReleaseJob.#ctor">
<summary>
Creates a new job handle and sets JOB_OBJECT_LIMIT_KILL_ON_JOB_CLOSE.
</summary>
</member>
<member name="P:GSF.Diagnostics.KillOnReleaseJob.IsInvalid">
<summary>
Gets a flag that indicates whether the job handle is invalid.
</summary>
</member>
<member name="M:GSF.Diagnostics.KillOnReleaseJob.AssignProcess(System.Diagnostics.Process)">
<summary>
Assigns a process to the job that will be killed when the job is disposed.
</summary>
<param name="process"></param>
</member>
<member name="M:GSF.Diagnostics.KillOnReleaseJob.ReleaseHandle">
<summary>
Releases the job handle, killing all assigned processes.
</summary>
<returns>True if the job handle was successfully released.</returns>
</member>
<member name="T:GSF.Diagnostics.NamespaceDoc">
<summary>
Contains classes used to simplify and standardize performance monitoring for applications.
Expand Down Expand Up @@ -25653,6 +25680,26 @@
Win32 STARTUPINFO structure.
</summary>
</member>
<member name="T:GSF.Interop.WindowsApi.JobObjectInfoType">
<summary>
JOBOBJECTINFOCLASS enumeration.
</summary>
</member>
<member name="T:GSF.Interop.WindowsApi.IO_COUNTERS">
<summary>
Win32 IO_COUNTERS structure.
</summary>
</member>
<member name="T:GSF.Interop.WindowsApi.JOBOBJECT_BASIC_LIMIT_INFORMATION">
<summary>
Win32 JOBOBJECT_BASIC_LIMIT_INFORMATION structure.
</summary>
</member>
<member name="T:GSF.Interop.WindowsApi.JOBOBJECT_EXTENDED_LIMIT_INFORMATION">
<summary>
Win32 JOBOBJECT_EXTENDED_LIMIT_INFORMATION structure.
</summary>
</member>
<member name="T:GSF.Interop.WindowsApi.SERVICE_DESCRIPTION">
<summary>
Win32 SERVICE_DESCRIPTION structure.
Expand Down Expand Up @@ -25980,6 +26027,21 @@
Win32 GetCurrentProcess function.
</summary>
</member>
<member name="M:GSF.Interop.WindowsApi.CreateJobObject(System.IntPtr,System.String)">
<summary>
Win32 CreateJobObject function.
</summary>
</member>
<member name="M:GSF.Interop.WindowsApi.SetInformationJobObject(System.IntPtr,GSF.Interop.WindowsApi.JobObjectInfoType,System.IntPtr,System.UInt32)">
<summary>
Win32 SetInformationJobObject function.
</summary>
</member>
<member name="M:GSF.Interop.WindowsApi.AssignProcessToJobObject(System.IntPtr,System.IntPtr)">
<summary>
Win32 AssignProcessToJobObject function.
</summary>
</member>
<member name="M:GSF.Interop.WindowsApi.CloseHandle(System.IntPtr)">
<summary>
Win32 CloseHandle function.
Expand Down Expand Up @@ -52099,11 +52161,21 @@
169 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV220">
<summary>
220 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV230">
<summary>
230 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV240">
<summary>
240 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV345">
<summary>
345 kV.
Expand All @@ -52114,6 +52186,11 @@
500 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV525">
<summary>
525 kV.
</summary>
</member>
<member name="F:GSF.Units.EE.VoltageLevel.kV765">
<summary>
765 kV.
Expand Down
Binary file modified Source/Dependencies/GSF/GSF.Core.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.EMAX.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Geo.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Historian.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.InstallerActions.CA.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.MMS.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Media.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Net.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PQDIF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PQDS.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.PhasorProtocols.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.SELEventParser.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Security.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceBus.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceModel.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.ServiceProcess.dll
Binary file not shown.
37 changes: 22 additions & 15 deletions Source/Dependencies/GSF/GSF.ServiceProcess.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.Transport.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.TimeSeries.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Web.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GSF.Windows.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/GrafanaAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/Hadoop.Replication.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/HistorianAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ICCPExport.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/InfluxDBAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/KafkaAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MetadataAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ModbusAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MongoAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/MySqlAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/OneSecondFrequencyAverager.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion Source/Dependencies/GSF/PIAdapters.XML

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified Source/Dependencies/GSF/PIAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PhasorProtocolAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PhasorWebUI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.WPF.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.UI.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/PowerCalculations.dll
Binary file not shown.
Binary file not shown.
Binary file modified Source/Dependencies/GSF/TestingAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/ValidateAssemblyBindings.exe
Binary file not shown.
Binary file modified Source/Dependencies/GSF/WavInputAdapter.dll
Binary file not shown.
Binary file modified Source/Dependencies/GSF/eDNAAdapters.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/GSF.Core.SqlClr.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/GSF.SortedTreeStore.SqlClr.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/GSF.SortedTreeStore.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/openHistorian.Core.SqlClr.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/openHistorian.Core.dll
Binary file not shown.
Binary file modified Source/Dependencies/openHistorian/openHistorian.SqlClr.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/FaultData.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.APIAuthentication.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.APIMiddleware.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.Configuration.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.DataPusher.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.Model.dll
Binary file not shown.
Binary file modified Source/Dependencies/openXDA/openXDA.PQI.dll
Binary file not shown.
6 changes: 3 additions & 3 deletions Source/Tests/UserInterface/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyVersion("3.0.661.69")]
[assembly: AssemblyFileVersion("3.0.661.69")]
// [assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyVersion("3.0.662.69")]
[assembly: AssemblyFileVersion("3.0.662.69")]