2019-10-13 07:54:40 +03:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2018-02-21 00:15:08 +03:00
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2020-09-04 04:40:58 +03:00
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-02-21 00:15:08 +03:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2018-07-25 21:47:14 +03:00
|
|
|
|
<AssemblyName>XamarinEssentialsTests</AssemblyName>
|
2019-11-15 04:35:29 +03:00
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
<Configurations>Debug;Release</Configurations>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)'=='Debug' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
2018-02-21 00:15:08 +03:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-11-01 17:32:25 +03:00
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
2018-11-28 20:53:42 +03:00
|
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
2020-12-29 02:12:05 +03:00
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
|
2018-02-21 00:15:08 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2018-04-06 03:46:34 +03:00
|
|
|
|
<ProjectReference Include="..\Xamarin.Essentials\Xamarin.Essentials.csproj" />
|
2018-02-21 00:15:08 +03:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|