Skip to content

Commit

Permalink
# Release v4.8.24.0
Browse files Browse the repository at this point in the history
---

## Changes

### CLI

- #400: Timeout in CI/CD script
- Assorted nuget support improvements triggered by #400
	- removed doc zip files to not to upset WinDefender
	- removed unnecessary nuget restore step for adding package dll's location to the search dir. It was adding no value since search dirs play no role in nuget related scenarios.
- Now nuget restore and asembly lookup are both respecting `CSSCRIPT_NUGET_PACKAGES` nvar. Previously only lookup did. Triggered by  #400.

### CSScriptLib
- no changes
  • Loading branch information
oleg-shilo committed Dec 21, 2024
1 parent 37d3d93 commit dba4dfd
Show file tree
Hide file tree
Showing 7 changed files with 165 additions and 179 deletions.
1 change: 1 addition & 0 deletions src/BuildServer/out/build.runtimeconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"version": "9.0.0"
},
"configProperties": {
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
Expand Down
21 changes: 9 additions & 12 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.23.0</Version>
<Version>4.8.24.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,22 +29,19 @@
## Changes

### 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

- #400: Timeout in CI/CD script
- Assorted nuget support improvements triggered by #400
- removed doc zip files to not to upset WinDefender
- removed unnecessary nuget restore step for adding package dll's location to the search dir. It was adding no value since search dirs play no role in nuget related scenarios.
- Now nuget restore and asembly lookup are both respecting `CSSCRIPT_NUGET_PACKAGES` nvar. Previously only lookup did. Triggered by #400.

### CSScriptLib
- no changes</PackageReleaseNotes>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<AssemblyVersion>4.8.23.0</AssemblyVersion>
<FileVersion>4.8.23.0</FileVersion>
<PackageVersion>4.8.23.0</PackageVersion>
<AssemblyVersion>4.8.24.0</AssemblyVersion>
<FileVersion>4.8.24.0</FileVersion>
<PackageVersion>4.8.24.0</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>css_logo.png</PackageIcon>
<SignAssembly>True</SignAssembly>
Expand Down
15 changes: 6 additions & 9 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.23.0</version>
<version>4.8.24.0</version>
<title>CS-Script</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -29,15 +29,12 @@
## Changes

### 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

- #400: Timeout in CI/CD script
- Assorted nuget support improvements triggered by #400
- removed doc zip files to not to upset WinDefender
- removed unnecessary nuget restore step for adding package dll's location to the search dir. It was adding no value since search dirs play no role in nuget related scenarios.
- Now nuget restore and asembly lookup are both respecting `CSSCRIPT_NUGET_PACKAGES` nvar. Previously only lookup did. Triggered by #400.

### CSScriptLib
- no changes</releaseNotes>
Expand Down
Loading

0 comments on commit dba4dfd

Please # to comment.