-
Notifications
You must be signed in to change notification settings - Fork 255
Expand file tree
/
Copy pathSimpleFactoryDesignPatternProxies.csproj
More file actions
31 lines (28 loc) · 1.4 KB
/
SimpleFactoryDesignPatternProxies.csproj
File metadata and controls
31 lines (28 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\SharedAssemblyInfo.targets" />
<ItemGroup>
<PackageReference Include="HtmlAgilityPack" Version="1.11.29" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="*" />
<PackageReference Include="MSTest.TestAdapter" Version="*" />
<PackageReference Include="MSTest.TestFramework" Version="*" />
<PackageReference Include="RestSharp" Version="106.12.0" />
<PackageReference Include="Selenium.WebDriver" Version="3.141.0" />
<PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="*" />
<PackageReference Include="TextCopy" Version="4.2.1" />
<PackageReference Include="Titanium.Web.Proxy" Version="3.1.1344" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="testFrameworkSettings.Debug.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="testFrameworkSettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="testFrameworkSettings.Release.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>