-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntility.Extensions.Logging.Sentry.csproj
More file actions
35 lines (29 loc) · 1.12 KB
/
Intility.Extensions.Logging.Sentry.csproj
File metadata and controls
35 lines (29 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Intility.Extensions.Logging.Sentry</PackageId>
<PackageTags>intility;logging;extensions;sentry</PackageTags>
<Description>
Enable Sentry instrumentation and logging provider.
</Description>
<owners>Intility</owners>
<Company>Intility</Company>
<authors>Herman Jensen, Emil Kjelsrud, Thorstein Løkensgard</authors>
<RepositoryUrl>https://github.com/Intility/Intility.Logging</RepositoryUrl>
<PackageIcon>intility-logo.png</PackageIcon>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="6.1.0" />
<PackageReference Include="Sentry.Serilog" Version="6.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Intility.Extensions.Logging\Intility.Extensions.Logging.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="../../assets/intility-logo.png" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
</Project>