Skip to content
This repository was archived by the owner on Aug 30, 2023. It is now read-only.

Commit 23fe8dc

Browse files
committed
Rename repo: sentry-dotnet-platform-abstractions
1 parent 24d722b commit 23fe8dc

File tree

4 files changed

+10
-21
lines changed

4 files changed

+10
-21
lines changed

.appveyor.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,3 @@ dotnet_csproj:
1414
package_version: '{version}'
1515
artifacts:
1616
- path: '**\*.nupkg'
17-
deploy:
18-
- provider: NuGet
19-
api_key:
20-
secure: WHuWt/1Dvd2MYxY+EzjcL+RFD9f6GnQ0ZEiVHdtn/MpE7sHMcYqe6ENGvFDSuyJw
21-
skip_symbols: true
22-
on:
23-
branch: /^(master|dev)$/

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
Branch | AppVeyor | Travis
1111
------------- | ------------- |-------------
12-
dev | [![Build status](https://ci.appveyor.com/api/projects/status/arv807179rg9sg1r/branch/dev?svg=true)](https://ci.appveyor.com/project/sentry/dotnet-sentry-platform-abstractions/branch/dev) | [![Build Status](https://travis-ci.org/getsentry/dotnet-sentry-platform-abstractions.svg?branch=dev)](https://travis-ci.org/getsentry/dotnet-sentry-platform-abstractions)
13-
master | [![Build status](https://ci.appveyor.com/api/projects/status/arv807179rg9sg1r/branch/master?svg=true)](https://ci.appveyor.com/project/sentry/dotnet-sentry-platform-abstractions/branch/master) | [![Build Status](https://travis-ci.org/getsentry/dotnet-sentry-platform-abstractions.svg?branch=master)](https://travis-ci.org/getsentry/dotnet-sentry-platform-abstractions)
12+
dev | [![Build status](https://ci.appveyor.com/api/projects/status/arv807179rg9sg1r/branch/dev?svg=true)](https://ci.appveyor.com/project/sentry/sentry-dotnet-platform-abstractions/branch/dev) | [![Build Status](https://travis-ci.org/getsentry/sentry-dotnet-platform-abstractions.svg?branch=dev)](https://travis-ci.org/getsentry/sentry-dotnet-platform-abstractions)
13+
master | [![Build status](https://ci.appveyor.com/api/projects/status/arv807179rg9sg1r/branch/master?svg=true)](https://ci.appveyor.com/project/sentry/sentry-dotnet-platform-abstractions/branch/master) | [![Build Status](https://travis-ci.org/getsentry/sentry-dotnet-platform-abstractions.svg?branch=master)](https://travis-ci.org/getsentry/sentry-dotnet-platform-abstractions)
1414

1515

1616
## This is a work in progress.
@@ -21,7 +21,7 @@ Most of the platform information used by the SDK goes to Sentry's [Context Inter
2121

2222
## Examples
2323

24-
For details, check the [example project](https://github.com/getsentry/dotnet-sentry-platform-abstractions/tree/426b7b2a002738a5ccbbed644d6ccb3fa26b9eba/samples/Sentry.PlatformAbstractions.Console).
24+
For details, check the [example project](https://github.com/getsentry/sentry-dotnet-platform-abstractions/tree/426b7b2a002738a5ccbbed644d6ccb3fa26b9eba/samples/Sentry.PlatformAbstractions.Console).
2525

2626
### Runtime information
2727
If you are interested in the runtime information, with .NET Standard 1.5 onwards you can use: `RuntimeInformation.FrameworkDescription`, which will give you a **single string**

build.ps1

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,8 @@ function TestAllTargets($project)
8282
if ($fail) { Write-Error "Tests failed." }
8383
}
8484

85-
$branch = @{ $true = $env:APPVEYOR_REPO_BRANCH; $false = $(git symbolic-ref --short -q HEAD) }[$env:APPVEYOR_REPO_BRANCH -ne $NULL];
86-
$revision = @{ $true = "{0:00000}" -f [convert]::ToInt32("0" + $env:APPVEYOR_BUILD_NUMBER, 10); $false = "local" }[$env:APPVEYOR_BUILD_NUMBER -ne $NULL];
87-
$suffix = @{ $true = ""; $false = "$($branch.Replace('/', '-').Substring(0, [math]::Min(10,$branch.Length)))-$revision"}[$branch -eq "master" -and $revision -ne "local"]
88-
Write-Host "Suffix: " $suffix " Branch: " $branch " Revision: " $revision
89-
9085
Set-Variable -name msbuild -value (GetMsbuild)
91-
& $msbuild /t:restore,build,pack /p:Configuration=Release /p:VersionSuffix=$suffix
86+
& $msbuild /t:restore,build,pack /p:Configuration=Release
9287
if ($lastexitcode -ne 0) { Write-Error "Build failed!" }
9388

9489
$test = "test\Sentry.PlatformAbstractions.Tests\Sentry.PlatformAbstractions.Tests.csproj"

src/Sentry.PlatformAbstractions/Sentry.PlatformAbstractions.csproj

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
88
<LangVersion>7.2</LangVersion>
99
<Description>Abstractions to platform information</Description>
10-
<VersionPrefix>1.0.0</VersionPrefix>
10+
<VersionPrefix>1.0.1</VersionPrefix>
11+
<VersionSuffix>preview1</VersionSuffix>
1112
<Authors>Sentry Team and Contributors</Authors>
12-
<PackageTags>platform-abstractions;runtime;operating-system;sentry;getsentry</PackageTags>
13-
<PackageIconUrl>https://github.com/getsentry/dotnet-sentry-platform-abstractions/.assets/sentry-nuget.png</PackageIconUrl>
14-
<PackageProjectUrl>https://github.com/getsentry/dotnet-sentry-platform-abstractions</PackageProjectUrl>
15-
<PackageLicenseUrl>https://github.com/getsentry/dotnet-sentry-platform-abstractions/blob/master/LICENSE</PackageLicenseUrl>
13+
<PackageTags>Sentry;GetSentry;Error-Reporting;Crash-Reporting;Exception-Handling</PackageTags>
14+
<PackageIconUrl>https://github.com/getsentry/sentry-dotnet-platform-abstractions/.assets/sentry-nuget.png</PackageIconUrl>
15+
<PackageProjectUrl>https://github.com/getsentry/sentry-dotnet-platform-abstractions</PackageProjectUrl>
16+
<PackageLicenseUrl>https://github.com/getsentry/sentry-dotnet-platform-abstractions/blob/master/LICENSE</PackageLicenseUrl>
1617
</PropertyGroup>
1718

1819
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">

0 commit comments

Comments
 (0)