New Columns for SPC
AssemblyVersion
This commit is contained in:
parent
1c0bca3539
commit
8768aa72ce
@ -45,6 +45,10 @@ public class Description : IDescription, Shared.Properties.IDescription
|
|||||||
public string RVThickness { get; set; }
|
public string RVThickness { get; set; }
|
||||||
public string StdDev { get; set; }
|
public string StdDev { get; set; }
|
||||||
public string Thickness { get; set; }
|
public string Thickness { get; set; }
|
||||||
|
//
|
||||||
|
public string CriticalPointsAverage { get; set; }
|
||||||
|
public string ThicknessSmile { get; set; }
|
||||||
|
public string CriticalPointsStdDev { get; set; }
|
||||||
|
|
||||||
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
string IDescription.GetEventDescription() => "File Has been read and parsed";
|
||||||
|
|
||||||
@ -106,7 +110,10 @@ public class Description : IDescription, Shared.Properties.IDescription
|
|||||||
nameof(MeanThickness),
|
nameof(MeanThickness),
|
||||||
nameof(RVThickness),
|
nameof(RVThickness),
|
||||||
nameof(StdDev),
|
nameof(StdDev),
|
||||||
nameof(Thickness)
|
nameof(Thickness),
|
||||||
|
nameof(CriticalPointsAverage),
|
||||||
|
nameof(ThicknessSmile),
|
||||||
|
nameof(CriticalPointsStdDev),
|
||||||
};
|
};
|
||||||
return results;
|
return results;
|
||||||
}
|
}
|
||||||
@ -209,7 +216,11 @@ public class Description : IDescription, Shared.Properties.IDescription
|
|||||||
MeanThickness = processData.MeanThickness,
|
MeanThickness = processData.MeanThickness,
|
||||||
RVThickness = processData.RVThickness,
|
RVThickness = processData.RVThickness,
|
||||||
StdDev = processData.StdDev,
|
StdDev = processData.StdDev,
|
||||||
Thickness = detail.Thickness
|
Thickness = detail.Thickness,
|
||||||
|
//
|
||||||
|
CriticalPointsAverage = string.Empty,
|
||||||
|
ThicknessSmile = string.Empty,
|
||||||
|
CriticalPointsStdDev = string.Empty,
|
||||||
};
|
};
|
||||||
results.Add(description);
|
results.Add(description);
|
||||||
}
|
}
|
||||||
@ -261,7 +272,11 @@ public class Description : IDescription, Shared.Properties.IDescription
|
|||||||
MeanThickness = nameof(MeanThickness),
|
MeanThickness = nameof(MeanThickness),
|
||||||
RVThickness = nameof(RVThickness),
|
RVThickness = nameof(RVThickness),
|
||||||
StdDev = nameof(StdDev),
|
StdDev = nameof(StdDev),
|
||||||
Thickness = nameof(Thickness)
|
Thickness = nameof(Thickness),
|
||||||
|
//
|
||||||
|
CriticalPointsAverage = nameof(CriticalPointsAverage),
|
||||||
|
ThicknessSmile = nameof(ThicknessSmile),
|
||||||
|
CriticalPointsStdDev = nameof(CriticalPointsStdDev),
|
||||||
};
|
};
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
|||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("2.47.5.0")]
|
[assembly: AssemblyVersion("2.49.0.0")]
|
||||||
[assembly: AssemblyFileVersion("2.47.5.0")]
|
[assembly: AssemblyFileVersion("2.49.0.0")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user