|
4 | 4 | <TargetFrameworks>net40;netstandard1.0;</TargetFrameworks> |
5 | 5 | <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
6 | 6 |
|
7 | | - <Version>1.1.0</Version> |
| 7 | + <Version>1.2.0</Version> |
8 | 8 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
9 | 9 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
10 | | - <IncludeSymbols>True</IncludeSymbols> |
11 | 10 | <Description>Pitcher is helper library to simplify throwing exceptions and make methods easier to inline by reducing code size.</Description> |
12 | 11 | <Copyright>© Alex Kamsteeg</Copyright> |
13 | 12 | <Authors>Alex Kamsteeg (https://atlex.nl/)</Authors> |
14 | 13 | <Company /> |
15 | 14 | <PackageProjectUrl>https://github.com/akamsteeg/Pitcher</PackageProjectUrl> |
16 | | - <RepositoryUrl>https://github.com/akamsteeg/Pitcher.git</RepositoryUrl> |
17 | 15 | <PackageTags>exception throw helper</PackageTags> |
18 | 16 | <PackageLicenseUrl>https://github.com/akamsteeg/Pitcher/blob/master/LICENSE</PackageLicenseUrl> |
19 | 17 | <PackageReleaseNotes> |
| 18 | + 1.2.0: |
| 19 | + - [Feature] Enabled SourceLink support (#1) |
20 | 20 | 1.1.0: |
21 | 21 | -[Fix] Removed expensive null check on arguments in Throw.This() and Throw.When() |
22 | 22 | </PackageReleaseNotes> |
23 | 23 |
|
24 | 24 | <DocumentationFile>docs\Pitcher.xml</DocumentationFile> |
25 | 25 |
|
26 | | - |
| 26 | + <!-- SourceLink --> |
| 27 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 28 | + <RepositoryUrl>https://github.com/akamsteeg/Pitcher.git</RepositoryUrl> |
| 29 | + <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
27 | 30 | </PropertyGroup> |
28 | 31 |
|
29 | 32 | <ItemGroup> |
|
32 | 35 | <None Remove="docs\**" /> |
33 | 36 | </ItemGroup> |
34 | 37 |
|
| 38 | + <ItemGroup> |
| 39 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02"> |
| 40 | + <PrivateAssets>all</PrivateAssets> |
| 41 | + <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets> |
| 42 | + </PackageReference> |
| 43 | + </ItemGroup> |
| 44 | + |
35 | 45 | </Project> |
0 commit comments