Skip to content

Commit 6abd5ee

Browse files
committed
Release (Linux) v4.8.11.0
- CLI: Issue #349: Build-server is not used on Linux
1 parent 913079f commit 6abd5ee

File tree

8 files changed

+26
-36
lines changed

8 files changed

+26
-36
lines changed

help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
C# Script execution engine (.NET Core). Version 4.8.10.0.
1+
C# Script execution engine (.NET Core). Version 4.8.11.0.
22
Copyright (C) 2004-2023 Oleg Shilo.
33

44

src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1515
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
17-
<Version>4.8.10.0</Version>
17+
<Version>4.8.11.0</Version>
1818
<Authors>Oleg Shilo</Authors>
1919
<Description>CS-Script engine Class Library for .NET 5 (and higher)</Description>
2020
<Copyright>(C) 2018-2023 Oleg Shilo</Copyright>
@@ -30,16 +30,14 @@
3030

3131
### CLI
3232

33-
- Added CLI help for `-new:cmd` command.
34-
- Added CLI listing custom commands for `-cmd`.
35-
- All dependencies are updated to the latest version
33+
- Added using build-server on Linux. Now Win and Linux build-drver support is identical.
3634

3735
### CSScriptLib
3836

39-
- All dependencies are updated to the latest version</PackageReleaseNotes>
37+
- &lt;no changes&gt;</PackageReleaseNotes>
4038
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
41-
<AssemblyVersion>4.8.10.0</AssemblyVersion>
42-
<FileVersion>4.8.10.0</FileVersion>
39+
<AssemblyVersion>4.8.11.0</AssemblyVersion>
40+
<FileVersion>4.8.11.0</FileVersion>
4341
<PackageLicenseExpression>MIT</PackageLicenseExpression>
4442
<PackageIcon>css_logo.png</PackageIcon>
4543
</PropertyGroup>

src/cscs/CodeDom/CSharpCompiler.engines.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,9 @@ CompilerResults CompileAssemblyFromFileBatch_with_Csc(CompilerParameters options
256256

257257
// running build server on Linux is problematic as if it is started from here it will be
258258
// killed when the parent process (this) exits
259-
bool compile_on_server = Runtime.IsWin && buidOnServer;
259+
// bool compile_on_server = Runtime.IsWin && buidOnServer;
260+
// But after working on #349 this behaver is no longer observed at least on WSL.
261+
bool compile_on_server = buidOnServer;
260262

261263
string cmd = "";
262264
string std_err = "";

src/cscs/cscs.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyName>cscs</AssemblyName>
77
<RootNamespace>CSScripting</RootNamespace>
88
<StartupObject />
9-
<Version>4.8.10.0</Version>
9+
<Version>4.8.11.0</Version>
1010
<Authors>Oleg Shilo</Authors>
1111
<Product>CS-Script</Product>
1212
<Copyright>(C) 2004-2023 Oleg Shilo</Copyright>
@@ -17,21 +17,19 @@
1717
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>
1919
<PackageTags>C# script dynamic</PackageTags>
20-
<AssemblyVersion>4.8.10.0</AssemblyVersion>
21-
<FileVersion>4.8.10.0</FileVersion>
20+
<AssemblyVersion>4.8.11.0</AssemblyVersion>
21+
<FileVersion>4.8.11.0</FileVersion>
2222
<PackageReleaseNotes>---
2323

2424
## Changes
2525

2626
### CLI
2727

28-
- Added CLI help for `-new:cmd` command.
29-
- Added CLI listing custom commands for `-cmd`.
30-
- All dependencies are updated to the latest version
28+
- Added using build-server on Linux. Now Win and Linux build-drver support is identical.
3129

3230
### CSScriptLib
3331

34-
- All dependencies are updated to the latest version</PackageReleaseNotes>
32+
- &lt;no changes&gt;</PackageReleaseNotes>
3533
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3634
<PackageIcon>css_logo.png</PackageIcon>
3735
<ApplicationIcon>css_logo.ico</ApplicationIcon>

src/css/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("4.8.10.0")]
35-
[assembly: AssemblyFileVersion("4.8.10.0")]
34+
[assembly: AssemblyVersion("4.8.11.0")]
35+
[assembly: AssemblyFileVersion("4.8.11.0")]

src/csws/csws.csproj

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<UseWindowsForms>true</UseWindowsForms>
99
<RootNamespace>CSScripting</RootNamespace>
1010
<StartupObject />
11-
<Version>4.8.10.0</Version>
11+
<Version>4.8.11.0</Version>
1212
<Authors>Oleg Shilo</Authors>
1313
<Product>CS-Script</Product>
1414
<Copyright>(C) 2004-2022 Oleg Shilo</Copyright>
@@ -19,21 +19,19 @@
1919
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
2121
<PackageTags>C# script dynamic</PackageTags>
22-
<AssemblyVersion>4.8.10.0</AssemblyVersion>
23-
<FileVersion>4.8.10.0</FileVersion>
22+
<AssemblyVersion>4.8.11.0</AssemblyVersion>
23+
<FileVersion>4.8.11.0</FileVersion>
2424
<PackageReleaseNotes>---
2525

2626
## Changes
2727

2828
### CLI
2929

30-
- Added CLI help for `-new:cmd` command.
31-
- Added CLI listing custom commands for `-cmd`.
32-
- All dependencies are updated to the latest version
30+
- Added using build-server on Linux. Now Win and Linux build-drver support is identical.
3331

3432
### CSScriptLib
3533

36-
- All dependencies are updated to the latest version</PackageReleaseNotes>
34+
- &lt;no changes&gt;</PackageReleaseNotes>
3735
<PackageLicenseExpression>MIT</PackageLicenseExpression>
3836
<ApplicationIcon>css_logo.ico</ApplicationIcon>
3937
<PackageIcon>..\logo\css_logo.png</PackageIcon>

src/out/ci/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
cd /home/user/lnx-build
2-
sudo chmod 775 cs-script_4.8-10/DEBIAN/p*
3-
dpkg-deb --build cs-script_4.8-10
2+
sudo chmod 775 cs-script_4.8-11/DEBIAN/p*
3+
dpkg-deb --build cs-script_4.8-11

src/release_notes.md

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
1-
# Release v4.8.10.0
1+
# Release v4.8.11.0
22

33
---
44

55
## Changes
66

77
### CLI
88

9-
- Added CLI help for `-new:cmd` command.
10-
- Added CLI listing custom commands for `-cmd`.
11-
- All dependencies are updated to the latest version
12-
- Added `SetEnvironmentVariable("EntryScript",...)` on opening script in VS
13-
- Updated -mkshim command script to allow relative path
14-
9+
- Added using build-server on Linux. Now Win and Linux build-drver support is identical.
1510

1611
### CSScriptLib
1712

18-
- All dependencies are updated to the latest version
19-
- CSScriptLib: Issue #353: NET8: "Microsoft.CodeAnalysis.CSharp" has been changed to "Microsoft.CodeAnalysis.CSharp.Workspaces."
13+
- <no changes>

0 commit comments

Comments
 (0)