-
-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathExceptionless.MessagePack.csproj
More file actions
30 lines (25 loc) · 1.19 KB
/
Exceptionless.MessagePack.csproj
File metadata and controls
30 lines (25 loc) · 1.19 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
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\build\common.props" />
<PropertyGroup Condition=" '$(OS)' != 'Windows_NT' ">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition=" '$(OS)' == 'Windows_NT' ">
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
</PropertyGroup>
<PropertyGroup Label="Package">
<PackageId>Exceptionless.MessagePack</PackageId>
<AssemblyName>Exceptionless.MessagePack</AssemblyName>
<AssemblyTitle>Serialize/deserialize log entries with MessagePack.</AssemblyTitle>
<Description>Serialize/deserialize log entries with MessagePack. $(Description)</Description>
<PackageTags>$(PackageTags);MessagePack</PackageTags>
</PropertyGroup>
<ItemGroup Label="Project References">
<ProjectReference Include="..\..\Exceptionless\Exceptionless.csproj" />
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' " Label="Build">
<DefineConstants>$(DefineConstants);NETSTANDARD;NETSTANDARD2_0</DefineConstants>
</PropertyGroup>
<ItemGroup Label="Package References">
<PackageReference Include="MessagePack" Version="3.1.4" />
</ItemGroup>
</Project>