mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 02:36:19 +02:00
22 lines
586 B
XML
22 lines
586 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<OutputType>Library</OutputType>
|
|||
|
|
<TargetFramework>net9.0</TargetFramework>
|
|||
|
|
<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" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<Folder Include="Properties\" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
</Project>
|