Skip to content

Commit

Permalink
# Release v4.8.15.0
Browse files Browse the repository at this point in the history
### CLI

- Issue #366: Precompiler functionality broken

### CSScriptLib

- <no changes>
  • Loading branch information
oleg-shilo committed Apr 11, 2024
1 parent 9666ce4 commit 5110ae4
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 31 deletions.
8 changes: 4 additions & 4 deletions help.txt
Original file line number Diff line number Diff line change
@@ -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.


Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:<asm_hash>' is disabled. You can enable it by calling
'CSScript.EnableScriptLocationReflection = true'.
Note that by default setting of 'location:<asm_hash>' 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:

Expand Down
11 changes: 5 additions & 6 deletions src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>4.8.14.0</Version>
<Version>4.8.15.0</Version>
<Authors>Oleg Shilo</Authors>
<Description>CS-Script engine Class Library for .NET 5 (and higher)</Description>
<Copyright>(C) 2018-2023 Oleg Shilo</Copyright>
Expand All @@ -30,15 +30,14 @@

### CLI

- &lt;no changes&gt;
- Issue #366: Precompiler functionality broken

### CSScriptLib

- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3
- CSScriptLib.dll is signed now.</PackageReleaseNotes>
- &lt;no changes&gt;</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>4.8.14.0</AssemblyVersion>
<FileVersion>4.8.14.0</FileVersion>
<AssemblyVersion>4.8.15.0</AssemblyVersion>
<FileVersion>4.8.15.0</FileVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>css_logo.png</PackageIcon>
<SignAssembly>True</SignAssembly>
Expand Down
11 changes: 5 additions & 6 deletions src/cscs/cscs.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyName>cscs</AssemblyName>
<RootNamespace>CSScripting</RootNamespace>
<StartupObject />
<Version>4.8.14.0</Version>
<Version>4.8.15.0</Version>
<Authors>Oleg Shilo</Authors>
<Product>CS-Script</Product>
<Copyright>(C) 2004-2023 Oleg Shilo</Copyright>
Expand All @@ -17,20 +17,19 @@
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>C# script dynamic</PackageTags>
<AssemblyVersion>4.8.14.0</AssemblyVersion>
<FileVersion>4.8.14.0</FileVersion>
<AssemblyVersion>4.8.15.0</AssemblyVersion>
<FileVersion>4.8.15.0</FileVersion>
<PackageReleaseNotes>---

## Changes

### CLI

- &lt;no changes&gt;
- Issue #366: Precompiler functionality broken

### CSScriptLib

- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3
- CSScriptLib.dll is signed now.</PackageReleaseNotes>
- &lt;no changes&gt;</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>css_logo.png</PackageIcon>
<ApplicationIcon>css_logo.ico</ApplicationIcon>
Expand Down
4 changes: 2 additions & 2 deletions src/css/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
11 changes: 5 additions & 6 deletions src/csws/csws.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<UseWindowsForms>true</UseWindowsForms>
<RootNamespace>CSScripting</RootNamespace>
<StartupObject />
<Version>4.8.14.0</Version>
<Version>4.8.15.0</Version>
<Authors>Oleg Shilo</Authors>
<Product>CS-Script</Product>
<Copyright>(C) 2004-2022 Oleg Shilo</Copyright>
Expand All @@ -19,20 +19,19 @@
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>C# script dynamic</PackageTags>
<AssemblyVersion>4.8.14.0</AssemblyVersion>
<FileVersion>4.8.14.0</FileVersion>
<AssemblyVersion>4.8.15.0</AssemblyVersion>
<FileVersion>4.8.15.0</FileVersion>
<PackageReleaseNotes>---

## Changes

### CLI

- &lt;no changes&gt;
- Issue #366: Precompiler functionality broken

### CSScriptLib

- #362: CSScript.Evaluator.LoadCode broken on net48 after cs-script 4.8.3
- CSScriptLib.dll is signed now.</PackageReleaseNotes>
- &lt;no changes&gt;</PackageReleaseNotes>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<ApplicationIcon>css_logo.ico</ApplicationIcon>
<PackageIcon>..\logo\css_logo.png</PackageIcon>
Expand Down
4 changes: 2 additions & 2 deletions src/out/ci/build.sh
Original file line number Diff line number Diff line change
@@ -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
sudo chmod 775 cs-script_4.8-15/DEBIAN/p*
dpkg-deb --build cs-script_4.8-15
8 changes: 3 additions & 5 deletions src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
# Release v4.8.14.0
# Release v4.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>

0 comments on commit 5110ae4

Please sign in to comment.