File tree 2 files changed +6
-6
lines changed
templates/automationsolution/$SCRIPTNAME$_1
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<PackageType >template</PackageType >
5
- <PackageVersion >1.0.10 </PackageVersion >
5
+ <PackageVersion >1.0.11 </PackageVersion >
6
6
<PackageId >Skyline.DataMiner.VisualStudioTemplates</PackageId >
7
7
<Title >DataMiner DotNet Templates</Title >
8
8
<Authors >SkylineCommunications</Authors >
Original file line number Diff line number Diff line change @@ -23,23 +23,23 @@ public void Run(IEngine engine)
23
23
}
24
24
catch ( ScriptAbortException )
25
25
{
26
- // catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
26
+ // Catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
27
27
throw ; // Comment if it should be treated as a normal exit of the script.
28
28
}
29
29
catch ( ScriptForceAbortException )
30
30
{
31
- // catch forced abort exceptions, caused via external maintenance messages
31
+ // Catch forced abort exceptions, caused via external maintenance messages.
32
32
throw ;
33
33
}
34
34
catch ( ScriptTimeoutException )
35
35
{
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.
37
37
throw ;
38
38
}
39
39
catch ( InteractiveUserDetachedException )
40
40
{
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.
43
43
throw ;
44
44
}
45
45
catch ( Exception e )
You can’t perform that action at this time.
0 commit comments