Skip to content

Commit aaa2afd

Browse files
committed
Small tweak + updating version
1 parent c82c060 commit aaa2afd

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

working/templatepack.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<PackageType>template</PackageType>
5-
<PackageVersion>1.0.10</PackageVersion>
5+
<PackageVersion>1.0.11</PackageVersion>
66
<PackageId>Skyline.DataMiner.VisualStudioTemplates</PackageId>
77
<Title>DataMiner DotNet Templates</Title>
88
<Authors>SkylineCommunications</Authors>

working/templates/automationsolution/$SCRIPTNAME$_1/$SCRIPTNAME$_1.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,23 @@ public void Run(IEngine engine)
2323
}
2424
catch (ScriptAbortException)
2525
{
26-
// catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
26+
// Catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
2727
throw; // Comment if it should be treated as a normal exit of the script.
2828
}
2929
catch (ScriptForceAbortException)
3030
{
31-
// catch forced abort exceptions, caused via external maintenance messages
31+
// Catch forced abort exceptions, caused via external maintenance messages.
3232
throw;
3333
}
3434
catch (ScriptTimeoutException)
3535
{
36-
// catch timeout exceptions for when a script has been running for too long
36+
// Catch timeout exceptions for when a script has been running for too long.
3737
throw;
3838
}
3939
catch (InteractiveUserDetachedException)
4040
{
41-
// catch a user detaching from the interactive script by closing the window
42-
// only applicable for interactive scripts, can be removed for non-interactive scripts.
41+
// Catch a user detaching from the interactive script by closing the window.
42+
// Only applicable for interactive scripts, can be removed for non-interactive scripts.
4343
throw;
4444
}
4545
catch (Exception e)

0 commit comments

Comments
 (0)