-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathIO.Ably.NETStandard20.csproj
More file actions
68 lines (54 loc) · 2.71 KB
/
IO.Ably.NETStandard20.csproj
File metadata and controls
68 lines (54 loc) · 2.71 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
<CodeAnalysisRuleSet>..\IO.Ably.ruleset</CodeAnalysisRuleSet>
<Configurations>Debug;Release;package</Configurations>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AssemblyName>IO.Ably</AssemblyName>
<RootNamespace>IO.Ably</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition="'$(MSBuildRuntimeType)'=='Mono'">
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Package)'=='True'">
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\..\IO.Ably.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='package|AnyCPU'">
<OutputPath>bin\package</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>bin\Debug\IO.Ably.NETStandard20.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>bin\Release\IO.Ably.NETStandard20.xml</DocumentationFile>
</PropertyGroup>
<Import Project="..\IO.Ably.Shared\IO.Ably.Shared.projitems" Label="Shared" />
<Import Project="..\IO.Ably.Shared.MsgPack\IO.Ably.Shared.MsgPack.projitems" Label="Shared" Condition="$(DefineConstants.Contains(MSGPACK))" />
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs" Link="Properties\CommonAssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\stylecop.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MsgPack.Cli" Version="0.9.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Threading.Channels" Version="4.5.0" />
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\lib\delta-codec\IO.Ably.DeltaCodec\IO.Ably.DeltaCodec.csproj" />
</ItemGroup>
<!-- Copy all NuGet dependencies to output directory when building for unity package -->
<!-- This ensures ILRepack can find all referenced assemblies via the /lib argument -->
<PropertyGroup Condition=" $(DefineConstants.Contains('UNITY_PACKAGE')) ">
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
</PropertyGroup>
</Project>