Skip to content

Commit

Permalink
Fix AppVeyor configuration file and bump version to 1.0.46
Browse files Browse the repository at this point in the history
  • Loading branch information
mdalepiane committed Feb 17, 2017
1 parent 0cdaba5 commit 1167b24
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 8 deletions.
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ image: Visual Studio 2015
init:
- git config --global core.autocrlf input

version: 1.0.{build}

# enable patching of AssemblyInfo.* files
assembly_info:
patch: true
Expand All @@ -26,17 +28,15 @@ build_script:
- dotnet build "test\StrangerData.UnitTests" --configuration RELEASE

after_build:
#- dotnet pack "src\StrangerData" --configuration RELEASE --output .
#- dotnet pack "src\StrangerData.SqlServer" --configuration RELEASE --output .
- nuget pack src\StrangerData\StrangerData.nuspec -o .
- nuget pack src\StrangerData.SqlServer\StrangerData.SqlServer.nuspec -o .
- dotnet pack src\StrangerData --configuration RELEASE --output .
- dotnet pack src\StrangerData.SqlServer --configuration RELEASE --output .

deploy:
- provider: NuGet
server: https://www.nuget.org/api/v2/package
api_key:
secure: ingFtxQjecEsrc2Ma2S259/K78gtFObeHFmbiDo2LQnGzgDL0l4TbRY+F1COVmZo
artifact: /.*\.nupkg/
artifact: /.*.nupkg/
on:
branch: master

Expand Down
3 changes: 3 additions & 0 deletions src/StrangerData.SqlServer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("74e2141e-83bb-4084-995f-6926722d3c09")]

[assembly: AssemblyVersion("1.0.46")]
[assembly: AssemblyFileVersion("1.0.46")]
4 changes: 2 additions & 2 deletions src/StrangerData.SqlServer/project.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "1.0.0-*",
"version": "1.0.46-*",

"dependencies": {
"StrangerData": "1.0.0-*",
"StrangerData": "1.0.46",
"System.Data.SqlClient": "4.1.0",
"System.Linq": "4.3.0"
},
Expand Down
3 changes: 3 additions & 0 deletions src/StrangerData/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("4a57cf78-24aa-4fab-8135-d38ef73431b3")]

[assembly: AssemblyVersion("1.0.46")]
[assembly: AssemblyFileVersion("1.0.46")]
2 changes: 1 addition & 1 deletion src/StrangerData/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.0-*",
"version": "1.0.46-*",

"dependencies": {
"Microsoft.Extensions.Configuration": "1.1.0",
Expand Down

0 comments on commit 1167b24

Please sign in to comment.