Skip to content

Commit 7dfcb48

Browse files
committed
Updates to packaging
1 parent 3657e24 commit 7dfcb48

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
x64/
1414
[Bb]in/
1515
[Oo]bj/
16-
src/Samples/Exceptionless.SampleConsole/store
16+
samples/Exceptionless.SampleConsole/store
17+
working
1718

1819
# MSTest test Results
1920
[Tt]est[Rr]esult*/

build/Package.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ ForEach ($p in $client_projects) {
8282

8383
$nuspec.Save($nuspecFile);
8484

85-
$nuget_version = $env:APPVEYOR_BUILD_VERSION + $env:VERSION_SUFFIX
85+
$nuget_version = $env:APPVEYOR_BUILD_VERSION
86+
If ($env:VERSION_SUFFIX) { $nuget_version = $nuget_version + '-' + $env:VERSION_SUFFIX }
8687
nuget pack $nuspecFile -OutputDirectory $artifacts_dir -Version $nuget_version -Symbols
8788
}
8889

src/Platforms/Exceptionless.Windows/NuGet/Exceptionless.Windows.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<version>$version$</version>
66
<authors>Exceptionless</authors>
77
<owners>Exceptionless</owners>
8-
<description>Exceptionless client for WinForms applications. $(Description)</Description>
8+
<description>Exceptionless client for WinForms applications. Exceptionless is a cloud based error reporting service that sends your exceptions to https://exceptionless.com and provides aggregated views and analytics.</description>
99
<projectUrl>http://exceptionless.io</projectUrl>
1010
<iconUrl>https://be.exceptionless.io/img/exceptionless-32.png</iconUrl>
1111
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>

src/Platforms/Exceptionless.Wpf/NuGet/Exceptionless.Wpf.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<version>$version$</version>
66
<authors>Exceptionless</authors>
77
<owners>Exceptionless</owners>
8-
<description>Exceptionless client for WPF applications. $(Description)</Description>
8+
<description>Exceptionless client for WPF applications. Exceptionless is a cloud based error reporting service that sends your exceptions to https://exceptionless.com and provides aggregated views and analytics.</description>
99
<projectUrl>http://exceptionless.io</projectUrl>
1010
<iconUrl>https://be.exceptionless.io/img/exceptionless-32.png</iconUrl>
1111
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>

test/Exceptionless.Tests/Exceptionless.Tests.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,4 @@
3535
<Reference Include="System" />
3636
<Reference Include="Microsoft.CSharp" />
3737
</ItemGroup>
38-
39-
</Project>
38+
</Project>

0 commit comments

Comments
 (0)