Skip to content

Commit 35b4a2b

Browse files
committed
# Release v4.11.1.0
--- ## Changes ### CLI - Added `-self-rt` custom command for setting the script engine runtime version ### CSScriptLib - no changes
1 parent 163526a commit 35b4a2b

File tree

6 files changed

+19
-36
lines changed

6 files changed

+19
-36
lines changed

help.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
C# Script execution engine (.NET Core). Version 4.11.0.0.
1+
C# Script execution engine (.NET Core). Version 4.11.1.0.
22
Copyright (C) 2004-2023 Oleg Shilo.
33

44
Usage: cscs <switch 1> <switch 2> <file> [params] [//x]

src/CSScriptLib/src/CSScriptLib/CSScriptLib.csproj

Lines changed: 6 additions & 12 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.11.0.0</Version>
17+
<Version>4.11.1.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,20 +29,14 @@
2929
## Changes
3030

3131
### CLI
32-
- fixed problem with `css -ls &lt;kill-all|ka&gt;`
33-
- Added support for pre-release packages `//css_nuget -pre &lt;package&gt;`
34-
- WDBG:
35-
- Improved tracking of declaration scope
36-
- UX improvements
37-
- Inject dbg metadata is ported to pure Roslyn.
38-
- Detect debug metadata out of sync and report it (2)
32+
- Added `-self-rt` custom command for setting the script engine runtime version
3933

4034
### CSScriptLib
41-
- Added NativeAOT sample</PackageReleaseNotes>
35+
- no changes</PackageReleaseNotes>
4236
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
43-
<AssemblyVersion>4.11.0.0</AssemblyVersion>
44-
<FileVersion>4.11.0.0</FileVersion>
45-
<PackageVersion>4.11.0.0</PackageVersion>
37+
<AssemblyVersion>4.11.1.0</AssemblyVersion>
38+
<FileVersion>4.11.1.0</FileVersion>
39+
<PackageVersion>4.11.1.0</PackageVersion>
4640
<PackageLicenseExpression>MIT</PackageLicenseExpression>
4741
<PackageIcon>css_logo.png</PackageIcon>
4842
<SignAssembly>True</SignAssembly>

src/chocolatey/cs-script.nuspec

Lines changed: 3 additions & 9 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.11.0.0</version>
5+
<version>4.11.1.0</version>
66
<title>CS-Script</title>
77
<authors>Oleg Shilo</authors>
88
<owners>Oleg Shilo</owners>
@@ -29,16 +29,10 @@
2929
## Changes
3030

3131
### CLI
32-
- fixed problem with `css -ls &lt;kill-all|ka&gt;`
33-
- Added support for pre-release packages `//css_nuget -pre &lt;package&gt;`
34-
- WDBG:
35-
- Improved tracking of declaration scope
36-
- UX improvements
37-
- Inject dbg metadata is ported to pure Roslyn.
38-
- Detect debug metadata out of sync and report it (2)
32+
- Added `-self-rt` custom command for setting the script engine runtime version
3933

4034
### CSScriptLib
41-
- Added NativeAOT sample</releaseNotes>
35+
- no changes</releaseNotes>
4236
<copyright>Oleg Shilo</copyright>
4337
<tags>cs-script C# script dynamic hosting</tags>
4438
<dependencies>

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.11.0.0")]
35-
[assembly: AssemblyFileVersion("4.11.0.0")]
34+
[assembly: AssemblyVersion("4.11.1.0")]
35+
[assembly: AssemblyFileVersion("4.11.1.0")]

src/csws/csws.csproj

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

2626
## Changes
2727

2828
### CLI
29-
- fixed problem with `css -ls &lt;kill-all|ka&gt;`
30-
- Added support for pre-release packages `//css_nuget -pre &lt;package&gt;`
31-
- WDBG:
32-
- Improved tracking of declaration scope
33-
- UX improvements
34-
- Inject dbg metadata is ported to pure Roslyn.
35-
- Detect debug metadata out of sync and report it (2)
29+
- Added `-self-rt` custom command for setting the script engine runtime version
3630

3731
### CSScriptLib
38-
- Added NativeAOT sample</PackageReleaseNotes>
32+
- no changes</PackageReleaseNotes>
3933
<PackageLicenseExpression>MIT</PackageLicenseExpression>
4034
<ApplicationIcon>css_logo.ico</ApplicationIcon>
4135
<PackageIcon>..\logo\css_logo.png</PackageIcon>

src/out/static_content/-self/-rt/-run.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.FirstOrDefault() ?? "0.0.0.0.version");
1717

1818
WriteLine($@"v{version} ({Environment.GetEnvironmentVariable("EntryScript")})");
19-
WriteLine($"Sets the script engine target runtime to one of the available .NET ideployments.");
19+
WriteLine($"Sets the script engine target runtime to one of the available .NET deployments.");
2020
WriteLine($" css -self-rt [-help] ");
2121
return;
2222
}
@@ -46,6 +46,7 @@
4646
if (int.TryParse(input, out int index))
4747
{
4848
var i = index - 1;
49+
4950
if (i < 0 || i >= sdk_list.Count)
5051
{
5152
WriteLine($"Invalid index: {index}. Please enter a number between 1 and {sdk_list.Count}.");

0 commit comments

Comments
 (0)