Skip to content

Commit e9d4c20

Browse files
committed
Updates to packaging
1 parent 7b0be5b commit e9d4c20

File tree

24 files changed

+201
-92
lines changed

24 files changed

+201
-92
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ DocProject/Help/html
9898
publish/
9999

100100
# Publish Web Output
101+
artifacts
101102
*.Publish.xml
102103
*.pubxml
103104

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ assembly_info:
2020

2121
before_build:
2222
- appveyor-retry nuget restore -verbosity quiet
23-
- dotnet restore
23+
- dotnet restore -v Minimal
2424

2525
build_script:
2626
- ps: .\tools\Build.ps1
@@ -32,7 +32,7 @@ after_test:
3232
- ps: .\tools\Package.ps1
3333

3434
artifacts:
35-
- path: Build\Deploy\packages\*.nupkg
35+
- path: artifacts\*.nupkg
3636
name: ReleaseArtifacts
3737

3838
deploy:

global.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"projects": [
33
"src",
4-
"src/Platforms"
4+
"src/Platforms",
5+
"src/Samples"
56
],
67
"sdk": {
78
"version": "1.0.0-preview1-002702"

src/Exceptionless.Extras.Signed/project.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
{
2+
"title": "Exceptionless client extras.",
3+
"authors": [ "Exceptionless" ],
4+
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",
5+
"packOptions": {
6+
"summary": "Exceptionless client extras. Exceptionless is a cloud based error reporting service that sends your exceptions to http://exceptionless.io and provides aggregated views and analytics.",
7+
"tags": [ "Exceptionless", "Error", "Report", "Reporting", "Exception", "Logging", "Log", "ELMAH" ],
8+
"owners": [ "Exceptionless" ],
9+
"projectUrl": "http://exceptionless.io",
10+
"releaseNotes": "https://github.com/exceptionless/Exceptionless.Net/releases",
11+
"iconUrl": "https://be.exceptionless.io/img/exceptionless-32.png",
12+
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
}
17+
},
218
"dependencies": {
319
"Exceptionless.Portable.Signed": {
420
"target": "project"

src/Exceptionless.Extras/project.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
11
{
2+
"title": "Exceptionless client extras.",
3+
"authors": [ "Exceptionless" ],
4+
"copyright": "Copyright (c) 2016 Exceptionless. All rights reserved.",
5+
"packOptions": {
6+
"summary": "Exceptionless client extras. Exceptionless is a cloud based error reporting service that sends your exceptions to http://exceptionless.io and provides aggregated views and analytics.",
7+
"tags": [ "Exceptionless", "Error", "Report", "Reporting", "Exception", "Logging", "Log", "ELMAH" ],
8+
"owners": [ "Exceptionless" ],
9+
"projectUrl": "http://exceptionless.io",
10+
"releaseNotes": "https://github.com/exceptionless/Exceptionless.Net/releases",
11+
"iconUrl": "https://be.exceptionless.io/img/exceptionless-32.png",
12+
"licenseUrl": "http://www.apache.org/licenses/LICENSE-2.0",
13+
"repository": {
14+
"type": "git",
15+
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
}
17+
},
218
"dependencies": {
319
"Exceptionless.Portable": {
420
"target": "project"

src/Exceptionless.Portable.Signed/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
},
17+
"files": {
18+
"include": [ "../Exceptionless.Portable/NuGet/readme.txt" ]
1619
}
1720
},
1821
"buildOptions": {

src/Exceptionless.Portable/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
},
17+
"files": {
18+
"include": [ "NuGet/readme.txt" ]
1619
}
1720
},
1821
"buildOptions": {

src/Exceptionless.Tests/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
"Exceptionless.Extras": {
99
"target": "project"
1010
},
11+
"Exceptionless.Portable": {
12+
"target": "project"
13+
},
1114
"Exceptionless.RandomData": "1.0.22.0",
1215
"Foundatio": "4.0.958",
1316
"Moq": "4.2.1510.2205",

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
},
17+
"files": {
18+
"include": [ "../Exceptionless.Log4net/NuGet/readme.txt" ]
1619
}
1720
},
1821
"dependencies": {

src/Platforms/Exceptionless.Log4net/project.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
"repository": {
1414
"type": "git",
1515
"url": "https://github.com/exceptionless/Exceptionless.Net"
16+
},
17+
"files": {
18+
"include": [ "NuGet/readme.txt" ]
1619
}
1720
},
1821
"dependencies": {

0 commit comments

Comments
 (0)