Skip to content

Commit 8e6803b

Browse files
committed
Fixed the versioning of packages
1 parent e9d4c20 commit 8e6803b

File tree

19 files changed

+30
-2
lines changed

19 files changed

+30
-2
lines changed

appveyor.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,13 @@ assembly_info:
1919
assembly_informational_version: "{version}$(VERSION_SUFFIX) $(GIT_HASH)"
2020

2121
before_build:
22+
- ps: >-
23+
Get-ChildItem -Path .\ -Filter project.json -Recurse -Name |
24+
ForEach {
25+
$content = Get-Content "$_"
26+
$content = $content.Replace("99.99.99-dev", "{version}$(VERSION_SUFFIX)")
27+
Set-Content "$_" $content -Encoding UTF8
28+
}
2229
- appveyor-retry nuget restore -verbosity quiet
2330
- dotnet restore -v Minimal
2431

src/Exceptionless.Extras.Signed/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless client extras.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Exceptionless.Extras/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless client extras.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Exceptionless.Portable.Signed/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless Portable Class Library",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Exceptionless.Portable/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless Portable Class Library",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Platforms/Exceptionless.Log4net.Signed/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Log4net appender that sends log entries to Exceptionless.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Platforms/Exceptionless.Log4net/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Log4net appender that sends log entries to Exceptionless.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Platforms/Exceptionless.Mvc.Signed/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless client for ASP.NET MVC 3+ applications.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Platforms/Exceptionless.Mvc/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "Exceptionless client for ASP.NET MVC 3+ applications.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

src/Platforms/Exceptionless.NLog.Signed/project.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"version": "99.99.99-dev",
23
"title": "NLog target that sends log entries to Exceptionless.",
34
"authors": [ "Exceptionless" ],
45
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",

0 commit comments

Comments
 (0)