15 lines
403 B
XML
15 lines
403 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
|
|
<Reference Include="System.Net.Http" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\dependency-libs\TestApplication.Shared\TestApplication.Shared.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|