Files
PowerToys.Run.YandexGPT/Community.PowerToys.Run.Plugin.YandexGPT.UnitTests/Community.PowerToys.Run.Plugin.YandexGPT.UnitTests.csproj
Mikhail Shahovalov 876dcf9b24 Added tests template
2025-05-08 00:42:38 +03:00

32 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<Platforms>x64;ARM64</Platforms>
<PlatformTarget>$(Platform)</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
<PackageReference Include="NLog" Version="5.0.4" />
<PackageReference Include="System.IO.Abstractions" Version="17.2.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Community.PowerToys.Run.Plugin.YandexGPT\Community.PowerToys.Run.Plugin.YandexGPT.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(Platform)' == 'x64'">
<Reference Include="..\libs\x64\Wox.Plugin.dll" />
<Reference Include="..\libs\x64\PowerToys.Settings.UI.Lib.dll" />
</ItemGroup>
<ItemGroup Condition="'$(Platform)' == 'ARM64'">
<Reference Include="..\libs\ARM64\Wox.Plugin.dll" />
<Reference Include="..\libs\ARM64\PowerToys.Settings.UI.Lib.dll" />
</ItemGroup>
</Project>