2025-02-20 13:25:20 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2025-02-24 02:05:55 -08:00
|
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
|
<Import Project="..\..\Common.Dotnet.CsWinRT.props" />
|
2025-02-20 13:25:20 +08:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<PublishAot>true</PublishAot>
|
|
|
|
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Appium.WebDriver" />
|
|
|
|
|
|
<PackageReference Include="MSTest" />
|
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" />
|
2025-04-14 17:01:54 +00:00
|
|
|
|
<PackageReference Include="System.Net.Http" />
|
|
|
|
|
|
<PackageReference Include="System.Private.Uri" />
|
|
|
|
|
|
<PackageReference Include="System.Text.RegularExpressions" />
|
2025-02-20 13:25:20 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|