mirror of
https://github.com/A6-9V/MQL5-Google-Onedrive.git
synced 2026-04-11 17:49:15 +00:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
|
<ApplicationIcon />
|
||
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||
|
|
<DockerfileContext>.</DockerfileContext>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Selenium.Support" Version="3.141.0" />
|
||
|
|
<PackageReference Include="Selenium.WebDriver" Version="3.141.0" />
|
||
|
|
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="75.0.3770.140" />
|
||
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<None Update="src\Xpath\FoodCategory_Xpath.txt">
|
||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
|
</None>
|
||
|
|
<None Update="src\Xpath\Food_Xpath.txt">
|
||
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||
|
|
</None>
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|