Skip to content

Commit 9d5ab44

Browse files
Fix package build version generation and increment version to 1.0.1
1 parent bc676f9 commit 9d5ab44

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

appveyor.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
os: Visual Studio 2015
22

3-
version: 1.0.0-{build}
3+
version: 1.0.1-{build}
44

55
nuget:
66
account_feed: true
77
project_feed: true
88

99
before_build:
10-
- ps: dotnet restore
1110
- cmd: set DOTNET_ASSEMBLY_FILE_VERSION=%APPVEYOR_BUILD_NUMBER%
11+
- cmd: set DOTNET_BUILD_VERSION=%APPVEYOR_BUILD_NUMBER%
12+
- ps: dotnet restore
1213

1314
artifacts:
1415
- path: '**\*.nupkg'
@@ -20,8 +21,8 @@ after_build:
2021
- cmd: dotnet pack src/MakingSense.AspNetCore.Authentication.SimpleToken
2122

2223
notifications:
23-
- provider: Slack
24-
auth_token:
25-
secure: fOssPHTsqm6seWcnywN2TJE9gLtRdd1iXLRWWWWAhx4atR0u0ECGb/9Ij/gI/zafJI+FQvevEemi9epjeRhV/g==
26-
channel: rest-api
27-
template: "<{{buildUrl}}|Build {{projectName}} {{buildVersion}} {{status}}> Commit <{{commitUrl}}|{{commitId}}> by {{commitAuthor}} on {{commitDate}}: _{{commitMessage}}_"
24+
- provider: Slack
25+
auth_token:
26+
secure: fOssPHTsqm6seWcnywN2TJE9gLtRdd1iXLRWWWWAhx4atR0u0ECGb/9Ij/gI/zafJI+FQvevEemi9epjeRhV/g==
27+
channel: rest-api
28+
template: "<{{buildUrl}}|Build {{projectName}} {{buildVersion}} {{status}}> Commit <{{commitUrl}}|{{commitId}}> by {{commitAuthor}} on {{commitDate}}: _{{commitMessage}}_"

src/MakingSense.AspNetCore.Authentication.SimpleToken/project.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.0-*",
2+
"version": "1.0.1",
33
"description": "MakingSense.AspNetCore.Authentication.SimpleToken Class Library",
44
"authors": [ "MakingSense" ],
55
"packOptions": {

0 commit comments

Comments
 (0)