Skip to content

Commit 75997c5

Browse files
authored
Merge pull request dotnet-script#222 from filipw/feature/version-bump
version bump to 0.19, build using 0.18
2 parents 7bda2cc + d3fa169 commit 75997c5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build/install-dotnet-script.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
$scriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
22
$client = New-Object "System.Net.WebClient"
3-
$url = "https://github.com/filipw/dotnet-script/releases/download/0.17.0/dotnet-script.0.17.0.zip"
3+
$url = "https://github.com/filipw/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip"
44
$file = "$scriptRoot/dotnet-script.zip"
55
$client.DownloadFile($url,$file)
66
Expand-Archive $file -DestinationPath $scriptRoot -Force

build/install-dotnet-script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22

3-
curl -L https://github.com/filipw/dotnet-script/releases/download/0.17.0/dotnet-script.0.17.0.zip > dotnet-script.zip
3+
curl -L https://github.com/filipw/dotnet-script/releases/download/0.18.0/dotnet-script.0.18.0.zip > dotnet-script.zip
44
unzip -o dotnet-script.zip -d ./

src/Dotnet.Script.Core/Dotnet.Script.Core.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>A cross platform library allowing you to run C# (CSX) scripts from a project.json dependency definition file and with support for debugging. Based on Roslyn.</Description>
5-
<VersionPrefix>0.18.0</VersionPrefix>
5+
<VersionPrefix>0.19.0</VersionPrefix>
66
<Authors>filipw</Authors>
77
<TargetFramework>netstandard2.0</TargetFramework>
88
<AssemblyName>Dotnet.Script.Core</AssemblyName>

src/Dotnet.Script/Dotnet.Script.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<Description>Dotnet CLI tool allowing you to run C# (CSX) scripts.</Description>
5-
<VersionPrefix>0.18.0</VersionPrefix>
5+
<VersionPrefix>0.19.0</VersionPrefix>
66
<Authors>filipw</Authors>
77
<TargetFramework>netcoreapp2.0</TargetFramework>
88
<DebugType>portable</DebugType>

0 commit comments

Comments
 (0)