Skip to content

Commit

Permalink
# Release v4.8.23.0
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
oleg-shilo committed Dec 14, 2024
1 parent 3cc2862 commit 5407b80
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 17 deletions.
18 changes: 13 additions & 5 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.22.0</Version>
<Version>4.8.23.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 @@ -29,14 +29,22 @@
## Changes

### CLI
- Minor update in the script project info generation to allow better integration with IDEs
- #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</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>4.8.22.0</AssemblyVersion>
<FileVersion>4.8.22.0</FileVersion>
<PackageVersion>4.8.22.0</PackageVersion>
<AssemblyVersion>4.8.23.0</AssemblyVersion>
<FileVersion>4.8.23.0</FileVersion>
<PackageVersion>4.8.23.0</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>css_logo.png</PackageIcon>
<SignAssembly>True</SignAssembly>
Expand Down
12 changes: 10 additions & 2 deletions src/chocolatey/cs-script.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>cs-script</id>
<version>4.8.22.0</version>
<version>4.8.23.0</version>
<title>CS-Script</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -29,7 +29,15 @@
## Changes

### CLI
- Minor update in the script project info generation to allow better integration with IDEs
- #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</releaseNotes>
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.22.0")]
[assembly: AssemblyFileVersion("4.8.22.0")]
[assembly: AssemblyVersion("4.8.23.0")]
[assembly: AssemblyFileVersion("4.8.23.0")]
16 changes: 12 additions & 4 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.22.0</Version>
<Version>4.8.23.0</Version>
<Authors>Oleg Shilo</Authors>
<Product>CS-Script</Product>
<Copyright>(C) 2004-2022 Oleg Shilo</Copyright>
Expand All @@ -19,14 +19,22 @@
<RepositoryUrl>https://github.com/oleg-shilo/cs-script</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>C# script dynamic</PackageTags>
<AssemblyVersion>4.8.22.0</AssemblyVersion>
<FileVersion>4.8.22.0</FileVersion>
<AssemblyVersion>4.8.23.0</AssemblyVersion>
<FileVersion>4.8.23.0</FileVersion>
<PackageReleaseNotes>---

## Changes

### CLI
- Minor update in the script project info generation to allow better integration with IDEs
- #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</PackageReleaseNotes>
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-21/DEBIAN/p*
dpkg-deb --build cs-script_4.8-21
sudo chmod 775 cs-script_4.8-23/DEBIAN/p*
dpkg-deb --build cs-script_4.8-23
12 changes: 10 additions & 2 deletions src/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# Release v4.8.22.0
# Release v4.8.23.0

---

## Changes

### CLI
- Minor update in the script project info generation to allow better integration with IDEs
- #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

0 comments on commit 5407b80

Please # to comment.