Skip to content

Commit 0b48a3d

Browse files
committed
Disabled 'prerelease' tag on NuGet and bump version to v0.2.3.
1 parent c91b92f commit 0b48a3d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ language: csharp
55
solution: MilliSim.sln
66

77
env:
8-
- MAIN_VER=0.2.2 SOLUTION_NAME=MilliSim.sln CONFIGURATION=Release RELEASE_SUFFIX=-alpha
8+
- MAIN_VER=0.2.3 SOLUTION_NAME=MilliSim.sln CONFIGURATION=Release RELEASE_SUFFIX=-alpha
99

1010
before_install:
1111
- sudo apt-get install -y gtk-sharp2 p7zip-full nodejs npm

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://www.appveyor.com/docs/appveyor-yml/
22

3-
version: 0.2.2.{build}
3+
version: 0.2.3.{build}
44
image: Visual Studio 2017
55
platform:
66
- Any CPU

scripts/appveyor_nuget_pack.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ function packPackages(err, fileList) {
5151
"-OutputDirectory", winpath(process.cwd()),
5252
"-Prop", `Configuration=${process.env["CONFIGURATION"]};Platform=AnyCPU;OutputPath=${winpath(getOutputPath(dir))}`
5353
];
54-
if (process.env["Release_Suffix"]) {
55-
params.push("-Suffix", process.env["Release_Suffix"].replace("-", ""));
56-
}
54+
//if (process.env["Release_Suffix"]) {
55+
// params.push("-Suffix", process.env["Release_Suffix"].replace("-", ""));
56+
//}
5757
const stdout = child_process.execFileSync("nuget", params, {
5858
cwd: dir,
5959
env: process.env

0 commit comments

Comments
 (0)