forked from dotnetcore/WebApiClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebApiClient.Test.csproj
30 lines (21 loc) · 1.04 KB
/
WebApiClient.Test.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<IsPackable>false</IsPackable>
<Configurations>JIT_Debug;JIT_Release;AOT_Debug;AOT_Release</Configurations>
<JITAOT Condition="'$(Configuration)' == 'AOT_Debug' Or '$(Configuration)' == 'AOT_Release'">AOT</JITAOT>
<JITAOT Condition="'$(Configuration)' == 'JIT_Debug' Or '$(Configuration)' == 'JIT_Release'">JIT</JITAOT>
<DefineConstants>$(JITAOT);DEBUG</DefineConstants>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>Test.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<DotNetCliToolReference Include="dotnet-xunit" Version="2.3.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WebApiClient\WebApiClient.csproj" />
</ItemGroup>
</Project>