-
Notifications
You must be signed in to change notification settings - Fork 3
/
Hi3Helper.Http.Universal.csproj
37 lines (32 loc) · 1.13 KB
/
Hi3Helper.Http.Universal.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
37
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Platforms>x64;x86;AnyCPU</Platforms>
<LangVersion>8.0</LangVersion>
<Configurations>Debug;Release</Configurations>
<Nullable>disable</Nullable>
<DebugType>portable</DebugType>
<IsTrimmable>True</IsTrimmable>
<IsAotCompatible>True</IsAotCompatible>
<Version>1.5.0</Version>
<AssemblyVersion>1.5.0</AssemblyVersion>
<AssemblyName>Hi3Helper.Http</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<Optimize>False</Optimize>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<Optimize>True</Optimize>
<DebugType>portable</DebugType>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Test\**" />
<EmbeddedResource Remove="Test\**" />
<None Remove="Test\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Net.Http" Version="*" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="*" />
<PackageReference Include="Microsoft.Bcl.AsyncInterfaces" Version="*" />
</ItemGroup>
</Project>