diff --git a/help.txt b/help.txt index d6d1d55c..94cd0333 100644 --- a/help.txt +++ b/help.txt @@ -1,4 +1,4 @@ -C# Script execution engine (.NET Core). Version 4.8.14.1. +C# Script execution engine (.NET Core). Version 4.8.15.0. Copyright (C) 2004-2023 Oleg Shilo. @@ -314,7 +314,7 @@ Copyright (C) 2004-2023 Oleg Shilo. -kill - a complete equivalent of -servers:stop -netfx - Comile and execute the script on the latest .NET Framework compiler (csc.exe) found on the system. + Compile and execute the script on the latest .NET Framework compiler (csc.exe) found on the system. The script will be automatically executed as an external process thus the value of the -rx switchwill be ignored. -tc @@ -801,8 +801,8 @@ This variable is particularly useful as it allows finding the compiled assembly code. Even when the script loaded in-memory (InMemoryAssembly setting) but not from the original file. (e.g. var location = Environment.GetEnvironmentVariable("location:" + Assembly.GetExecutingAssembly().GetHashCode()); -Note that by default setting of 'location:' is disabled. You can enable it by calling -'CSScript.EnableScriptLocationReflection = true'. +Note that by default setting of 'location:' is disabled. You can enable it by setting +'CSS_SCRIPTLOCATIONREFLECTION' environment variable to non empty string. The following is the optional set of environment variables that the script engine uses to improve the user experience: diff --git a/src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj b/src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj index 575cd6b7..729c808a 100644 --- a/src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj +++ b/src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj @@ -14,7 +14,7 @@ true snupkg true - 4.8.14.0 + 4.8.15.0 Oleg Shilo CS-Script engine Class Library for .NET 5 (and higher) (C) 2018-2023 Oleg Shilo @@ -30,15 +30,14 @@ ### CLI -- <no changes> +- Issue #366: Precompiler functionality broken ### CSScriptLib -- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3 -- CSScriptLib.dll is signed now. +- <no changes> true - 4.8.14.0 - 4.8.14.0 + 4.8.15.0 + 4.8.15.0 MIT css_logo.png True diff --git a/src/cscs/cscs.csproj b/src/cscs/cscs.csproj index a2ff597b..f3e99e57 100644 --- a/src/cscs/cscs.csproj +++ b/src/cscs/cscs.csproj @@ -6,7 +6,7 @@ cscs CSScripting - 4.8.14.0 + 4.8.15.0 Oleg Shilo CS-Script (C) 2004-2023 Oleg Shilo @@ -17,20 +17,19 @@ https://github.com/oleg-shilo/cs-script git C# script dynamic - 4.8.14.0 - 4.8.14.0 + 4.8.15.0 + 4.8.15.0 --- ## Changes ### CLI -- <no changes> +- Issue #366: Precompiler functionality broken ### CSScriptLib -- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3 -- CSScriptLib.dll is signed now. +- <no changes> MIT css_logo.png css_logo.ico diff --git a/src/css/Properties/AssemblyInfo.cs b/src/css/Properties/AssemblyInfo.cs index b26697de..adba3eb1 100644 --- a/src/css/Properties/AssemblyInfo.cs +++ b/src/css/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("4.8.14.0")] -[assembly: AssemblyFileVersion("4.8.14.0")] +[assembly: AssemblyVersion("4.8.15.0")] +[assembly: AssemblyFileVersion("4.8.15.0")] diff --git a/src/csws/csws.csproj b/src/csws/csws.csproj index 72a48cd7..931b5dd6 100644 --- a/src/csws/csws.csproj +++ b/src/csws/csws.csproj @@ -8,7 +8,7 @@ true CSScripting - 4.8.14.0 + 4.8.15.0 Oleg Shilo CS-Script (C) 2004-2022 Oleg Shilo @@ -19,20 +19,19 @@ https://github.com/oleg-shilo/cs-script git C# script dynamic - 4.8.14.0 - 4.8.14.0 + 4.8.15.0 + 4.8.15.0 --- ## Changes ### CLI -- <no changes> +- Issue #366: Precompiler functionality broken ### CSScriptLib -- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3 -- CSScriptLib.dll is signed now. +- <no changes> MIT css_logo.ico ..\logo\css_logo.png diff --git a/src/out/ci/build.sh b/src/out/ci/build.sh index 7f2b111e..e6000dd0 100644 --- a/src/out/ci/build.sh +++ b/src/out/ci/build.sh @@ -1,3 +1,3 @@ cd /home/user/lnx-build -sudo chmod 775 cs-script_4.8-14/DEBIAN/p* -dpkg-deb --build cs-script_4.8-14 \ No newline at end of file +sudo chmod 775 cs-script_4.8-15/DEBIAN/p* +dpkg-deb --build cs-script_4.8-15 \ No newline at end of file diff --git a/src/release_notes.md b/src/release_notes.md index 5a87fec6..34609f69 100644 --- a/src/release_notes.md +++ b/src/release_notes.md @@ -1,4 +1,4 @@ -# Release v4.8.14.0 +# Release v4.8.15.0 --- @@ -6,10 +6,8 @@ ### CLI -- +- Issue #366: Precompiler functionality broken ### CSScriptLib -- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3 -- CSScriptLib.dll is signed now. - +- \ No newline at end of file