Skip to content

Commit 5407b80

Browse files
committed
# Release v4.8.23.0
### CLI - #396 Some NuGet packages are not recognized and not referenced - #397: How to succeed in using NuGet packages with native binaries (like e.g. SkiaSharp) - Added new command `-list` for printing all currently running scripts. - Added support for nuget package native assets - LegacyNugetSupport by defauls made false - script compilation cache now stores probing dirs to allow recreation of PATH environemnt variable during the cached execution (e.g. to cover nuget native assets) - Added support for `-self-install` command to set global `CSSCRIPT_ROOT` envar. - Updated `//css_nuget` syntax CLI documentation ### CSScriptLib - no changes
1 parent 3cc2862 commit 5407b80

File tree

6 files changed

+49
-17
lines changed

6 files changed

+49
-17
lines changed

src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj

Lines changed: 13 additions & 5 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.22.0</Version>
17+
<Version>4.8.23.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>
@@ -29,14 +29,22 @@
2929
## Changes
3030

3131
### CLI
32-
- Minor update in the script project info generation to allow better integration with IDEs
32+
- #396 Some NuGet packages are not recognized and not referenced
33+
- #397: How to succeed in using NuGet packages with native binaries (like e.g. SkiaSharp)
34+
- Added new command `-list` for printing all currently running scripts.
35+
- Added support for nuget package native assets
36+
- LegacyNugetSupport by defauls made false
37+
- script compilation cache now stores probing dirs to allow recreation of PATH environemnt variable during the cached execution (e.g. to cover nuget native assets)
38+
- Added support for `-self-install` command to set global `CSSCRIPT_ROOT` envar.
39+
- Updated `//css_nuget` syntax CLI documentation
40+
3341

3442
### CSScriptLib
3543
- no changes</PackageReleaseNotes>
3644
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
37-
<AssemblyVersion>4.8.22.0</AssemblyVersion>
38-
<FileVersion>4.8.22.0</FileVersion>
39-
<PackageVersion>4.8.22.0</PackageVersion>
45+
<AssemblyVersion>4.8.23.0</AssemblyVersion>
46+
<FileVersion>4.8.23.0</FileVersion>
47+
<PackageVersion>4.8.23.0</PackageVersion>
4048
<PackageLicenseExpression>MIT</PackageLicenseExpression>
4149
<PackageIcon>css_logo.png</PackageIcon>
4250
<SignAssembly>True</SignAssembly>

src/chocolatey/cs-script.nuspec

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>cs-script</id>
5-
<version>4.8.22.0</version>
5+
<version>4.8.23.0</version>
66
<title>CS-Script</title>
77
<authors>Oleg Shilo</authors>
88
<owners>Oleg Shilo</owners>
@@ -29,7 +29,15 @@
2929
## Changes
3030

3131
### CLI
32-
- Minor update in the script project info generation to allow better integration with IDEs
32+
- #396 Some NuGet packages are not recognized and not referenced
33+
- #397: How to succeed in using NuGet packages with native binaries (like e.g. SkiaSharp)
34+
- Added new command `-list` for printing all currently running scripts.
35+
- Added support for nuget package native assets
36+
- LegacyNugetSupport by defauls made false
37+
- script compilation cache now stores probing dirs to allow recreation of PATH environemnt variable during the cached execution (e.g. to cover nuget native assets)
38+
- Added support for `-self-install` command to set global `CSSCRIPT_ROOT` envar.
39+
- Updated `//css_nuget` syntax CLI documentation
40+
3341

3442
### CSScriptLib
3543
- no changes</releaseNotes>

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.22.0")]
35-
[assembly: AssemblyFileVersion("4.8.22.0")]
34+
[assembly: AssemblyVersion("4.8.23.0")]
35+
[assembly: AssemblyFileVersion("4.8.23.0")]

src/csws/csws.csproj

Lines changed: 12 additions & 4 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.22.0</Version>
11+
<Version>4.8.23.0</Version>
1212
<Authors>Oleg Shilo</Authors>
1313
<Product>CS-Script</Product>
1414
<Copyright>(C) 2004-2022 Oleg Shilo</Copyright>
@@ -19,14 +19,22 @@
1919
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
2121
<PackageTags>C# script dynamic</PackageTags>
22-
<AssemblyVersion>4.8.22.0</AssemblyVersion>
23-
<FileVersion>4.8.22.0</FileVersion>
22+
<AssemblyVersion>4.8.23.0</AssemblyVersion>
23+
<FileVersion>4.8.23.0</FileVersion>
2424
<PackageReleaseNotes>---
2525

2626
## Changes
2727

2828
### CLI
29-
- Minor update in the script project info generation to allow better integration with IDEs
29+
- #396 Some NuGet packages are not recognized and not referenced
30+
- #397: How to succeed in using NuGet packages with native binaries (like e.g. SkiaSharp)
31+
- Added new command `-list` for printing all currently running scripts.
32+
- Added support for nuget package native assets
33+
- LegacyNugetSupport by defauls made false
34+
- script compilation cache now stores probing dirs to allow recreation of PATH environemnt variable during the cached execution (e.g. to cover nuget native assets)
35+
- Added support for `-self-install` command to set global `CSSCRIPT_ROOT` envar.
36+
- Updated `//css_nuget` syntax CLI documentation
37+
3038

3139
### CSScriptLib
3240
- no changes</PackageReleaseNotes>

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-21/DEBIAN/p*
3-
dpkg-deb --build cs-script_4.8-21
2+
sudo chmod 775 cs-script_4.8-23/DEBIAN/p*
3+
dpkg-deb --build cs-script_4.8-23

src/release_notes.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
# Release v4.8.22.0
1+
# Release v4.8.23.0
22

33
---
44

55
## Changes
66

77
### CLI
8-
- Minor update in the script project info generation to allow better integration with IDEs
8+
- #396 Some NuGet packages are not recognized and not referenced
9+
- #397: How to succeed in using NuGet packages with native binaries (like e.g. SkiaSharp)
10+
- Added new command `-list` for printing all currently running scripts.
11+
- Added support for nuget package native assets
12+
- LegacyNugetSupport by defauls made false
13+
- script compilation cache now stores probing dirs to allow recreation of PATH environemnt variable during the cached execution (e.g. to cover nuget native assets)
14+
- Added support for `-self-install` command to set global `CSSCRIPT_ROOT` envar.
15+
- Updated `//css_nuget` syntax CLI documentation
16+
917

1018
### CSScriptLib
1119
- no changes

0 commit comments

Comments
 (0)