csharpc-sharpdotnetxamlavaloniauicross-platformcross-platform-xamlavaloniaguimulti-platformuser-interfacedotnetcore
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.4 KiB
35 lines
1.4 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(AvsCurrentTargetFramework)</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
|
|
<IsRunningAppium2 Condition="'$(IsRunningAppium2)' == ''">false</IsRunningAppium2>
|
|
<DefineConstants Condition="'$(IsRunningAppium2)' == 'false'">$(DefineConstants);APPIUM1</DefineConstants>
|
|
<DefineConstants Condition="'$(IsRunningAppium2)' == 'true'">$(DefineConstants);APPIUM2</DefineConstants>
|
|
|
|
<!--
|
|
References to System.Net.Http and System.Text.RegularExpressions are explicitly added to
|
|
avoid deprecated versions, we don't care about them not being pruned.
|
|
-->
|
|
<NoWarn>$(NoWarn);NU1510</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Avalonia.Controls\Avalonia.Controls.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(IsRunningAppium2)' == 'false'">
|
|
<PackageReference Include="Appium.WebDriver" Version="4.4.5" />
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
|
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition="'$(IsRunningAppium2)' == 'true'">
|
|
<PackageReference Include="Appium.WebDriver" Version="5.2.0"/>
|
|
</ItemGroup>
|
|
|
|
<Import Project="..\..\build\XUnit.props" />
|
|
<Import Project="..\..\build\Rx.props" />
|
|
<Import Project="..\..\build\ImageSharp.props" />
|
|
</Project>
|
|
|