Skip to content

Commit f022aab

Browse files
committed
Release v2.0.7.0
---- - Fixed problem with AboutBox popup error when the configured external CS-Script deployment is not found
1 parent 561bacd commit f022aab

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

src/CSScriptNpp/CSScriptNpp/CSScriptHelper.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,14 @@ static public void OpenAsVSProjectFor(string script)
10971097

10981098
static public string ScriptEngineVersion()
10991099
{
1100-
return FileVersionInfo.GetVersionInfo(Runtime.cscs_asm).FileVersion.ToString();
1100+
try
1101+
{
1102+
return FileVersionInfo.GetVersionInfo(Runtime.cscs_asm).FileVersion.ToString();
1103+
}
1104+
catch
1105+
{
1106+
return "N/A";
1107+
}
11011108
}
11021109

11031110
static void DownloadBinary(string url, string destinationPath, Action<long, long> onProgress = null, string proxyUser = null, string proxyPw = null)

src/CSScriptNpp/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// Build Number
3333
// Revision
3434
//
35-
[assembly: AssemblyVersion("2.0.6.0")]
36-
[assembly: AssemblyFileVersion("2.0.6.0")]
35+
[assembly: AssemblyVersion("2.0.7.0")]
36+
[assembly: AssemblyFileVersion("2.0.7.0")]
Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
Release v2.0.6.0
1+
Release v2.0.7.0
22
----
3-
- Integration with the external .NET Tools CS-Script and Syntaxer is now the only integration option.
4-
This change is to ensure the plugin is always integrated with the latest internally compatible CS-Script tools.
5-
- You can always integrate the plugin with the latest CS-Script tools by running the `Detect and Integrate` command from plugin's Config Dialog.
6-
- If you do not have CS-Script tools installed you can single-click deploy them form the 'Update' tab of the Confog dialog.
7-
- The .NET Tools manager is made the default deployment option for CS-Script and Syntaxer
8-
- Embedded CS-Script engine is no longer distributed with the plugin.
3+
- Fixed problem with AboutBox popup error when the configured external CS-Script deployment is not found

0 commit comments

Comments
 (0)