Skip to content

Commit

Permalink
Create symbol packages (#103)
Browse files Browse the repository at this point in the history
  • Loading branch information
petervandenhout authored Jan 13, 2022
1 parent bc6cff1 commit aec1b7f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Opw.HttpExceptions.AspNetCore</PackageId>
<PackageTags>aspnetcore http exceptions RFC7807 problemdetails problem details</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

<ItemGroup>
Expand Down
16 changes: 9 additions & 7 deletions src/Opw.HttpExceptions/Opw.HttpExceptions.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>HTTP-specific exception classes that enable ASP.NET to generate exception information.</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Opw.HttpExceptions</PackageId>
<PackageTags>http exceptions</PackageTags>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>HTTP-specific exception classes that enable ASP.NET to generate exception information.</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>Opw.HttpExceptions</PackageId>
<PackageTags>http exceptions</PackageTags>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>

</Project>

0 comments on commit aec1b7f

Please sign in to comment.