Skip to content

Commit ff00fde

Browse files
committed
Release v1.4.4
Bumping compatible versions of dependency packages
1 parent fc7658d commit ff00fde

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

cs-script.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
# https://www.sublimetext.com/docs/1/api-reference
1717

18-
version = '1.4.3' # build 0
18+
version = '1.4.4' # build 0
1919
os.environ["PACKAGE_VERSION"] = version
2020

2121
from .imports.utils import * # should be imported after environ["PACKAGE_VERSION"] is set
@@ -1306,6 +1306,7 @@ def on_process_output_line(line):
13061306
output_view_append(out_panel, line)
13071307

13081308
try:
1309+
print("exec: dotnet " + Runtime.cscs_path +" "+ script)
13091310
execute(['dotnet', Runtime.cscs_path, script], on_process_output_line, on_process_start)
13101311
except:
13111312
print("Error Encountered while running script")

deployment.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
*************** CS-Script ******************
2-
.NET: v9.0.100
3-
CS-Script: v4.8.20.0
4-
Syntaxer: v3.1.3.0
2+
.NET: v10.0.100
3+
CS-Script: v4.12.0.0
4+
Syntaxer: v3.2.5.0
55
---
6-
CS-Script (script engine): C:\ProgramData\chocolatey\lib\cs-script\tools\cscs.dll
7-
Syntaxer (C# syntax server): C:\ProgramData\chocolatey\lib\cs-syntaxer\tools\syntaxer.dll
6+
CS-Script (script engine): C:\Users\oleg\.dotnet\tools\.store\cs-script.cli\4.12.0\cs-script.cli\4.12.0\tools\net10.0\any\cscs.dll
7+
Syntaxer (C# syntax server): C:\Users\oleg\.dotnet\tools\.store\cs-syntaxer\3.2.5\cs-syntaxer\3.2.5\tools\net10.0\any\syntaxer.dll
88
---
99

1010
Environment requirements and setup instructions:

imports/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ class Runtime():
117117
syntaxer_path = None
118118
min_compatible_css_version = '4.4.2.0'
119119
min_compatible_dotnet_version = '6.*'
120-
max_compatible_dotnet_version = '9.*'
120+
max_compatible_dotnet_version = '10.*'
121121
syntaxer_port = None
122122
pluginVersion = None
123123
new_deployment = False
@@ -444,7 +444,7 @@ def check_environment(force_show_doc):
444444
elif dotnet_major_ver < dotnet_major_min_ver or dotnet_major_ver > dotnet_major_max_ver:
445445
print('min_compatible_dotnet_version: '+Runtime.min_compatible_dotnet_version)
446446
print('max_compatible_dotnet_version: '+Runtime.max_compatible_dotnet_version)
447-
error = "Installed .NET version is incompatible.\n"
447+
error = "Installed .NET version might be incompatible.\n"
448448

449449
if current_css_version == None:
450450
error = (error if error else '') + "CS-Script is not found.\n"

0 commit comments

Comments
 (0)