-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSharpSeleniumAuto.csproj
More file actions
62 lines (62 loc) · 3.55 KB
/
SharpSeleniumAuto.csproj
File metadata and controls
62 lines (62 loc) · 3.55 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\CasambaAutomation\CasambaAutomation\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\CasambaAutomation\CasambaAutomation\packages\NUnit3TestAdapter.3.10.0\build\net35\NUnit3TestAdapter.props')" />
<Import Project="..\CasambaAutomation\CasambaAutomation\packages\NUnit.3.10.1\build\NUnit.props" Condition="Exists('..\CasambaAutomation\CasambaAutomation\packages\NUnit.3.10.1\build\NUnit.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{092F3ECA-16E1-4AE1-92E3-6E65133C2067}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>SharpSeleniumAuto</RootNamespace>
<AssemblyName>SharpSeleniumAuto</AssemblyName>
<TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG;</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<Optimize>true</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="nunit.framework">
<HintPath>..\CasambaAutomation\CasambaAutomation\packages\NUnit.3.10.1\lib\net45\nunit.framework.dll</HintPath>
</Reference>
<Reference Include="WebDriver">
<HintPath>..\CasambaAutomation\CasambaAutomation\packages\Selenium.WebDriver.3.14.0\lib\net45\WebDriver.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="WebDriver.Support">
<HintPath>..\CasambaAutomation\CasambaAutomation\packages\Selenium.Support.3.14.0\lib\net45\WebDriver.Support.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="WebUI\Driver\WebBrowser.cs" />
<Compile Include="WebUI\Constants\Constants.cs" />
<Compile Include="WebUI\Pages\LoginPage.cs" />
<Compile Include="WebUI\TestUI\TestSuite.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Folder Include="WebUI\" />
<Folder Include="WebUI\Driver\" />
<Folder Include="WebUI\Pages\" />
<Folder Include="WebUI\TestUI\" />
<Folder Include="WebUI\Utilities\" />
<Folder Include="WebUI\Constants\" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="..\CasambaAutomation\CasambaAutomation\packages\Selenium.Chrome.WebDriver.2.42\build\Selenium.Chrome.WebDriver.targets" Condition="Exists('..\CasambaAutomation\CasambaAutomation\packages\Selenium.Chrome.WebDriver.2.42\build\Selenium.Chrome.WebDriver.targets')" />
<Import Project="..\CasambaAutomation\CasambaAutomation\packages\Selenium.WebDriver.ChromeDriver.2.42.0.1\build\Selenium.WebDriver.ChromeDriver.targets" Condition="Exists('..\CasambaAutomation\CasambaAutomation\packages\Selenium.WebDriver.ChromeDriver.2.42.0.1\build\Selenium.WebDriver.ChromeDriver.targets')" />
</Project>