Skip to content

Commit

Permalink
- Published v.4.6.4.0 on Chocolatey
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-shilo committed Jan 21, 2023
1 parent 4229827 commit a39fe31
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 11 deletions.
7 changes: 3 additions & 4 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.6.3.0</version>
<version>4.6.4.0</version>
<title>CS-Script</title>
<authors>Oleg Shilo</authors>
<owners>Oleg Shilo</owners>
Expand All @@ -25,9 +25,8 @@
</description>
<summary>CS-Script</summary>
<releaseNotes>
Release v4.6.3
- WDBG: Fixed problem with invalid breakpoint info passing to client
- Added `-new:webapi` support
# Release v4.6.4
- Removed runtime dependency on `*.CSharp.Scripting.CSharpScript.dll` if Roslyn is not used as an engine.

</releaseNotes>
<copyright>Oleg Shilo</copyright>
Expand Down
5 changes: 1 addition & 4 deletions src/chocolatey/publish.cmd
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
echo off
echo *******************
echo * must be admin *
echo *******************
rem choco apikey --key ???????? --source https://push.chocolatey.org/
choco push cs-script.4.6.3.0.nupkg --source https://push.chocolatey.org/
choco push cs-script.4.6.4.0.nupkg --source https://push.chocolatey.org/
4 changes: 2 additions & 2 deletions src/chocolatey/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
$packageName = 'cs-script'
$url = 'https://github.com/oleg-shilo/cs-script/releases/download/v4.6.3.0/cs-script.win.v4.6.3.0.7z'
$url = 'https://github.com/oleg-shilo/cs-script/releases/download/v4.6.4.0/cs-script.win.v4.6.4.0.7z'

try {
$installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"

$cheksum = '805649AA7C55E594022B16BD4ABAB809E571603600647F48AAC792B616469FFB'
$cheksum = '9653E47CCAEA186CC0759E27B89146BA62CB966695769596A1426585B4B2FAFC'
$checksumType = "sha256"

function stop-server
Expand Down
2 changes: 1 addition & 1 deletion src/chocolatey/update_package.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

var url = "https://github.com/oleg-shilo/cs-script/releases/download/v4.6.3.0/cs-script.win.v4.6.3.0.7z";
var url = "https://github.com/oleg-shilo/cs-script/releases/download/v4.6.4.0/cs-script.win.v4.6.4.0.7z";

var installScript = @"tools\chocolateyInstall.ps1";

Expand Down

0 comments on commit a39fe31

Please sign in to comment.