Skip to content

Commit

Permalink
Release v2.0.7.0
Browse files Browse the repository at this point in the history
----
- Fixed problem with AboutBox popup error when the configured external CS-Script deployment is not found
  • Loading branch information
oleg-shilo committed Jan 17, 2025
1 parent 561bacd commit f022aab
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 10 deletions.
9 changes: 8 additions & 1 deletion src/CSScriptNpp/CSScriptNpp/CSScriptHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1097,7 +1097,14 @@ static public void OpenAsVSProjectFor(string script)

static public string ScriptEngineVersion()
{
return FileVersionInfo.GetVersionInfo(Runtime.cscs_asm).FileVersion.ToString();
try
{
return FileVersionInfo.GetVersionInfo(Runtime.cscs_asm).FileVersion.ToString();
}
catch
{
return "N/A";
}
}

static void DownloadBinary(string url, string destinationPath, Action<long, long> onProgress = null, string proxyUser = null, string proxyPw = null)
Expand Down
4 changes: 2 additions & 2 deletions src/CSScriptNpp/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// Build Number
// Revision
//
[assembly: AssemblyVersion("2.0.6.0")]
[assembly: AssemblyFileVersion("2.0.6.0")]
[assembly: AssemblyVersion("2.0.7.0")]
[assembly: AssemblyFileVersion("2.0.7.0")]
9 changes: 2 additions & 7 deletions src/CSScriptNpp/Resources/WhatsNew.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
Release v2.0.6.0
Release v2.0.7.0
----
- Integration with the external .NET Tools CS-Script and Syntaxer is now the only integration option.
This change is to ensure the plugin is always integrated with the latest internally compatible CS-Script tools.
- You can always integrate the plugin with the latest CS-Script tools by running the `Detect and Integrate` command from plugin's Config Dialog.
- If you do not have CS-Script tools installed you can single-click deploy them form the 'Update' tab of the Confog dialog.
- The .NET Tools manager is made the default deployment option for CS-Script and Syntaxer
- Embedded CS-Script engine is no longer distributed with the plugin.
- Fixed problem with AboutBox popup error when the configured external CS-Script deployment is not found

0 comments on commit f022aab

Please sign in to comment.