banking-bot/BankingBot/BankingBot.csproj
2017-02-13 23:27:36 +00:00

116 lines
No EOL
5.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{ED9159EE-D75C-4E04-B99D-E2364493B841}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BankingBot</RootNamespace>
<AssemblyName>BankingBot</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WebDriver, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Selenium.WebDriver.3.0.0\lib\net40\WebDriver.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="ActionManagers\AccountManagers\AccountManager.cs" />
<Compile Include="ActionManagers\AccountManagers\LloydsAccountManager.cs" />
<Compile Include="ActionManagers\ActionDetail.cs" />
<Compile Include="ActionManagers\ActionManager.cs" />
<Compile Include="ActionManagers\LoginManagers\BarclaysLoginManager.cs" />
<Compile Include="Attributes\ProviderIdentifier.cs" />
<Compile Include="BrowserBot.cs" />
<Compile Include="BankingClient.cs" />
<Compile Include="Contracts\IAccountManager.cs" />
<Compile Include="Contracts\IBrowserBot.cs" />
<Compile Include="Contracts\IClient.cs" />
<Compile Include="Contracts\ILoginCredentials.cs" />
<Compile Include="Contracts\ILoginManager.cs" />
<Compile Include="Contracts\IProviderAccountManager.cs" />
<Compile Include="Contracts\IProviderLoginManager.cs" />
<Compile Include="Contracts\IResponse.cs" />
<Compile Include="Contracts\IScriptManager.cs" />
<Compile Include="Enums\Provider.cs" />
<Compile Include="Enums\ResponseStatus.cs" />
<Compile Include="Enums\TransactionType.cs" />
<Compile Include="Exceptions\InvalidCredentialsException.cs" />
<Compile Include="Extensions\IWebElementExtensions.cs" />
<Compile Include="Extensions\StringExtensions.cs" />
<Compile Include="Helpers\AccountHelpers.cs" />
<Compile Include="LoginCredentials\BarclaysLoginCredentials.cs" />
<Compile Include="LoginCredentials\LloydsLoginCredentials.cs" />
<Compile Include="LoginCredentials\LoginCredentials.cs" />
<Compile Include="ActionManagers\LoginManagers\LloydsLoginManager.cs" />
<Compile Include="ActionManagers\LoginManagers\LoginManager.cs" />
<Compile Include="Models\Account.cs" />
<Compile Include="Models\Transaction.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ScriptManagement\ScriptBundles.cs" />
<Compile Include="ScriptManagement\ScriptManager.cs" />
<Compile Include="Urls\LloydsUrls.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<Content Include="ScriptManagement\Scripts\barclays-login.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="ScriptManagement\Scripts\global.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="ScriptManagement\Scripts\Helpers\account-helpers.js">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="ScriptManagement\Scripts\jquery-3.1.1.min.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="ScriptManagement\Scripts\test.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>