diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-03 15:38:24 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2022-07-03 15:38:24 +0300 |
| commit | 9bd99dc8d08c90949d155302e481eed511a77171 (patch) | |
| tree | 76fbb5486c3ab980d945806749e8485d9b1942d9 /Software/Visual_Studio | |
| parent | 4c26c930a5eac214a34126c57f09f0738a0924f6 (diff) | |
| download | Tango-9bd99dc8d08c90949d155302e481eed511a77171.tar.gz Tango-9bd99dc8d08c90949d155302e481eed511a77171.zip | |
Dispenser Analyser
Diffstat (limited to 'Software/Visual_Studio')
3 files changed, 5 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analyzers/FlowAnalyser.cs b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analyzers/FlowAnalyser.cs index b452decc7..e6de49c3b 100644 --- a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analyzers/FlowAnalyser.cs +++ b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analyzers/FlowAnalyser.cs @@ -250,7 +250,7 @@ namespace Tango.DispenserAnalyzer.UI.Analyzers var res = range / dividerMaxError * 100; if(res <= (double)Settings.GetValueByName(AnalyzerSettingsEnum.MaxError)) Result = AnalyzerResultValue.Passed; - else + else if(range <= 26) { Result = AnalyzerResultValue.Failed; var entryindeviations = deviationsValArr.FirstOrDefault(x => x.Key == range); @@ -261,6 +261,8 @@ namespace Tango.DispenserAnalyzer.UI.Analyzers Result = AnalyzerResultValue.Passed; } } + else + Result = AnalyzerResultValue.Failed; return max_key; } diff --git a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Properties/AssemblyInfo.cs b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Properties/AssemblyInfo.cs index 58206ce7c..a4ce8abde 100644 --- a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Properties/AssemblyInfo.cs +++ b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Properties/AssemblyInfo.cs @@ -51,7 +51,7 @@ using System.Windows; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("5.1.1.0")] +[assembly: AssemblyVersion("5.1.1.1")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: NeutralResourcesLanguage("en-AS")] diff --git a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Tango.DispenserAnalyzer.UI.csproj b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Tango.DispenserAnalyzer.UI.csproj index 11eb3f263..cbcd737c9 100644 --- a/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Tango.DispenserAnalyzer.UI.csproj +++ b/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Tango.DispenserAnalyzer.UI.csproj @@ -29,7 +29,7 @@ <ProductName>Dispenser Analyser</ProductName> <PublisherName>Twine</PublisherName> <OpenBrowserOnPublish>false</OpenBrowserOnPublish> - <ApplicationRevision>3</ApplicationRevision> + <ApplicationRevision>4</ApplicationRevision> <ApplicationVersion>5.1.1.%2a</ApplicationVersion> <UseApplicationTrust>true</UseApplicationTrust> <CreateDesktopShortcut>true</CreateDesktopShortcut> |
