-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
Copy pathExceptionless.AspNetCore.csproj
36 lines (30 loc) · 1.57 KB
/
Exceptionless.AspNetCore.csproj
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
36
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\build\common.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>Exceptionless.AspNetCore</PackageId>
<AssemblyName>Exceptionless.AspNetCore</AssemblyName>
<AssemblyTitle>Exceptionless client for ASP.NET Core</AssemblyTitle>
<Description>Exceptionless client for ASP.NET Core. $(Description)</Description>
<PackageTags>$(PackageTags);ASP.NET;AspNetCore;MVC</PackageTags>
</PropertyGroup>
<ItemGroup Label="Package">
<None Include="readme.txt" pack="true" PackagePath="." />
</ItemGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
<ProjectReference Include="..\Exceptionless.Extensions.Hosting\Exceptionless.Extensions.Hosting.csproj" />
</ItemGroup>
<ItemGroup Label="Package References">
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DiagnosticAdapter" Version="3.1.32" />
<PackageReference Include="Microsoft.Net.Http.Headers" Version="2.3.0" />
<PackageReference Include="System.Diagnostics.DiagnosticSource" Version="6.0.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' " Label="Build">
<DefineConstants>$(DefineConstants);NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
</Project>