Downloads:
42,631
Downloads of v 4.8.18:
221
Last Update:
10 Aug 2024
Package Maintainer(s):
Software Author(s):
- Oleg Shilo
Tags:
cs-script c# script dynamic hosting- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
CS-Script
This is not the latest version of CS-Script available.
- 1
- 2
- 3
4.8.18 | Updated: 10 Aug 2024
- Software Specific:
- Software Site
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
42,631
Downloads of v 4.8.18:
221
Maintainer(s):
Software Author(s):
- Oleg Shilo
CS-Script 4.8.18
This is not the latest version of CS-Script available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Oleg Shilo. The inclusion of Oleg Shilo trademark(s), if any, upon this webpage is solely to identify Oleg Shilo goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install CS-Script, run the following command from the command line or from PowerShell:
To upgrade CS-Script, run the following command from the command line or from PowerShell:
To uninstall CS-Script, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download cs-script --internalize --version=4.8.18 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade cs-script -y --source="'INTERNAL REPO URL'" --version="'4.8.18'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade cs-script -y --source="'INTERNAL REPO URL'" --version="'4.8.18'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install cs-script
win_chocolatey:
name: cs-script
version: '4.8.18'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'cs-script' do
action :install
source 'INTERNAL REPO URL'
version '4.8.18'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller cs-script
{
Name = "cs-script"
Version = "4.8.18"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cs-script':
ensure => '4.8.18',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 30 Sep 2024.
CLR based runtime environment for executing scripts written in ECMA-compliant C#.
The main idea of CS-Script is to allow "plain vanilla" C# code execution from both command-prompt and form any CLR application hosting the script engine.
CS-Script targets .NET 6 and higher.
The default installation directory is "%ChocolateyInstall%\lib\cs-script".
This package contains the set of scripts and binaries that required for the default functionality. However there is some additional content that represents somewhat less mainstream functionality and experimental features. This content is available as an Extension Pack
from the releases page(https://github.com/oleg-shilo/cs-script/releases). Installing the Extension Pack
is as simple as downloading and extracting the archive to your chocolatey install location (most likely C:\ProgramData\chocolatey\lib\cs-script\tools\cs-script).
$packageName = 'cs-script.core'
function stop-server
{
param(
$server,
$port,
$command
)
try {
$client = New-Object Net.Sockets.TcpClient($server, $port)
$socketStream = $client.GetStream()
[Byte[]]$Buffer = [Text.Encoding]::ASCII.GetBytes($data)
$socketStream.Write($Buffer, 0, $Buffer.Length)
$socketStream.Flush()
}
catch{
}
}
stop-server "localhost" "17001" "-exit" # prev release Roslyn compiling server requires "-exit"
stop-server "localhost" "17001" "-stop" # starting from .NET 5 release CodeDom build server requires "-stop"
Write-Warning "Removing 'css' shim $($env:ChocolateyInstall)\lib\cs-script.core\tools"
Uninstall-BinFile "css" "$($env:ChocolateyInstall)\lib\cs-script\tools\cscs.exe"
Log in or click on link to see number of positives.
- cs-script.4.8.18.nupkg (81578ccf3eb2) - ## / 69
- cs-script.win.v4.8.18.0.7z (51ccad5365f7) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
CS-Script 4.8.23 | 43 | Saturday, December 14, 2024 | Approved | |
CS-Script 4.8.20 | 136 | Saturday, November 9, 2024 | Approved | |
CS-Script 4.8.19 | 61 | Thursday, October 31, 2024 | Approved | |
CS-Script 4.8.18 | 221 | Saturday, August 10, 2024 | Approved | |
CS-Script 4.8.17 | 131 | Saturday, July 13, 2024 | Approved | |
CS-Script 4.8.16 | 180 | Sunday, May 26, 2024 | Approved | |
CS-Script 4.8.15 | 189 | Thursday, April 11, 2024 | Approved | |
CS-Script 4.8.12 | 280 | Saturday, December 16, 2023 | Approved | |
CS-Script 4.8.10 | 131 | Saturday, November 25, 2023 | Approved | |
CS-Script 4.8.9 | 92 | Thursday, November 16, 2023 | Approved | |
CS-Script 4.8.7.1 | 66 | Tuesday, November 14, 2023 | Approved | |
CS-Script 4.8.7 | 89 | Tuesday, November 7, 2023 | Approved | |
CS-Script 4.8.5.0 | 140 | Saturday, October 14, 2023 | Approved | |
CS-Script 4.8.3.0 | 109 | Sunday, October 1, 2023 | Approved | |
CS-Script 4.8.1.0 | 315 | Friday, July 7, 2023 | Approved | |
CS-Script 4.7.1.0 | 381 | Sunday, April 2, 2023 | Approved | |
CS-Script 4.7.0.0 | 115 | Monday, March 27, 2023 | Approved | |
CS-Script 4.6.4.0 | 291 | Saturday, January 21, 2023 | Approved | |
CS-Script 4.6.3.0 | 109 | Saturday, January 14, 2023 | Approved | |
CS-Script 4.6.2.0 | 130 | Sunday, January 1, 2023 | Approved | |
CS-Script 4.5.0.0 | 212 | Friday, November 11, 2022 | Approved | |
CS-Script 4.4.8.0 | 223 | Tuesday, September 20, 2022 | Approved | |
CS-Script 4.4.7.0 | 424 | Friday, June 17, 2022 | Approved | |
CS-Script 4.4.3.0 | 292 | Wednesday, April 20, 2022 | Approved | |
CS-Script 4.4.2.0 | 266 | Thursday, March 17, 2022 | Approved | |
CS-Script 4.4.0.0 | 332 | Saturday, February 12, 2022 | Approved | |
CS-Script 4.2.0.0 | 379 | Sunday, November 14, 2021 | Approved | |
CS-Script 4.1.0.0 | 543 | Sunday, July 18, 2021 | Approved | |
CS-Script 4.0.2.0 | 359 | Sunday, May 30, 2021 | Approved | |
CS-Script 4.0.1.0 | 326 | Monday, March 22, 2021 | Approved | |
CS-Script 4.0.0.0 | 175 | Tuesday, March 16, 2021 | Approved | |
CS-Script 3.30.3.0 | 1050 | Saturday, May 30, 2020 | Approved | |
CS-Script 3.29.0.0 | 1487 | Wednesday, May 22, 2019 | Approved | |
CS-Script 3.28.9.0 | 1090 | Monday, December 10, 2018 | Approved | |
CS-Script 3.28.7.0 | 674 | Sunday, September 2, 2018 | Approved | |
CS-Script 3.28.5.0 | 488 | Thursday, July 19, 2018 | Approved | |
CS-Script 3.28.4.0 | 651 | Saturday, April 28, 2018 | Approved | |
CS-Script 3.28.2.0 | 685 | Thursday, March 15, 2018 | Approved | |
CS-Script 3.27.5.0 | 950 | Monday, August 28, 2017 | Approved | |
CS-Script 3.27.4.0 | 455 | Monday, August 21, 2017 | Approved | |
CS-Script 3.27.3.0 | 378 | Monday, August 21, 2017 | Approved | |
CS-Script 3.27.2.0 | 580 | Friday, August 11, 2017 | Approved | |
CS-Script 3.27.0.0 | 509 | Wednesday, July 19, 2017 | Approved | |
CS-Script 3.26.2.0 | 1816 | Saturday, July 1, 2017 | Approved | |
CS-Script 3.25.3.0 | 688 | Tuesday, May 16, 2017 | Approved | |
CS-Script 3.25.1.0 | 665 | Wednesday, March 22, 2017 | Approved | |
CS-Script 3.24.0.0 | 548 | Tuesday, February 14, 2017 | Approved | |
CS-Script 3.22.0.0 | 493 | Monday, January 30, 2017 | Approved | |
CS-Script 3.21.1.0 | 476 | Wednesday, January 25, 2017 | Approved | |
CS-Script 3.20.0.0 | 465 | Monday, January 9, 2017 | Approved | |
CS-Script 3.19.0.0 | 498 | Monday, December 12, 2016 | Approved | |
CS-Script 3.18.0.0 | 513 | Wednesday, November 16, 2016 | Approved | |
CS-Script 3.16.0.0 | 483 | Wednesday, October 26, 2016 | Approved | |
CS-Script 3.15.0.0 | 488 | Wednesday, October 19, 2016 | Approved | |
CS-Script 3.14.1.0 | 720 | Friday, August 12, 2016 | Approved | |
CS-Script 3.14.0.0 | 10798 | Wednesday, August 3, 2016 | Approved | |
CS-Script 3.13.0.0 | 538 | Monday, May 16, 2016 | Approved | |
CS-Script 3.12.1.0 | 580 | Wednesday, March 30, 2016 | Approved | |
CS-Script 3.11.0.0 | 479 | Wednesday, February 3, 2016 | Approved | |
CS-Script 3.10.0.0 | 461 | Wednesday, January 20, 2016 | Approved | |
CS-Script 3.9.20.0 | 441 | Monday, January 4, 2016 | Approved | |
CS-Script 3.9.19.0 | 456 | Wednesday, December 9, 2015 | Approved | |
CS-Script 3.9.17.0 | 455 | Wednesday, November 4, 2015 | Approved | |
CS-Script 3.9.16.0 | 481 | Sunday, September 13, 2015 | Approved | |
CS-Script 3.9.15.0 | 473 | Sunday, August 16, 2015 | Approved | |
CS-Script 3.9.8.2 | 623 | Tuesday, April 28, 2015 | Approved | |
CS-Script 3.9.8.0 | 436 | Saturday, April 25, 2015 | Approved | |
CS-Script 3.9.7.0 | 483 | Thursday, April 16, 2015 | Approved | |
CS-Script 3.9.6.0 | 464 | Sunday, March 22, 2015 | Approved | |
CS-Script 3.9.5.0 | 460 | Wednesday, March 18, 2015 | Approved | |
CS-Script 3.9.4.1 | 464 | Wednesday, March 11, 2015 | Approved | |
CS-Script 3.9.4.0 | 484 | Friday, February 20, 2015 | Approved | |
CS-Script 3.9.3.0 | 465 | Monday, February 16, 2015 | Approved |
Oleg Shilo
Changes
CLI
- #378: Bump Request -> Microsoft.CodeAnalysis.CSharp.Scripting 4.10.0
- Added custom command
-set-rt-self
for setting the cs-script engine target runtime to the currently active .NET configuration.
CSScriptLib
- #378: Bump Request -> Microsoft.CodeAnalysis.CSharp.Scripting 4.10.0
- #379: cs-script does not support MAUI Android
This package has no dependencies.
Ground Rules:
- This discussion is only about CS-Script and the CS-Script package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or CS-Script, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.