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.9 </PackageVersion >
5
+ <PackageVersion >1.0.10 </PackageVersion >
6
6
<PackageId >Skyline.DataMiner.VisualStudioTemplates.Internal</PackageId >
7
7
<Title >DataMiner DotNet Templates</Title >
8
8
<Authors >SkylineCommunications</Authors >
Original file line number Diff line number Diff line change @@ -74,23 +74,23 @@ public void Run(IEngine engine)
74
74
}
75
75
catch ( ScriptAbortException )
76
76
{
77
- // catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
77
+ // Catch normal abort exceptions (engine.ExitFail or engine.ExitSuccess)
78
78
throw ; // Comment if it should be treated as a normal exit of the script.
79
79
}
80
80
catch ( ScriptForceAbortException )
81
81
{
82
- // catch forced abort exceptions, caused via external maintenance messages
82
+ // Catch forced abort exceptions, caused via external maintenance messages.
83
83
throw ;
84
84
}
85
85
catch ( ScriptTimeoutException )
86
86
{
87
- // catch timeout exceptions for when a script has been running for too long
87
+ // Catch timeout exceptions for when a script has been running for too long.
88
88
throw ;
89
89
}
90
90
catch ( InteractiveUserDetachedException )
91
91
{
92
- // catch a user detaching from the interactive script by closing the window
93
- // only applicable for interactive scripts, can be removed for non-interactive scripts.
92
+ // Catch a user detaching from the interactive script by closing the window.
93
+ // Only applicable for interactive scripts, can be removed for non-interactive scripts.
94
94
throw ;
95
95
}
96
96
catch ( Exception e )
You can’t perform that action at this time.
0 commit comments