-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from ObjectivityLtd/LiteVersion
Added Ocaramba Lite Version (without selenium drivers)
- Loading branch information
Showing
56 changed files
with
106 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>netcoreapp2.2</TargetFrameworks> | ||
<DebugType>full</DebugType> | ||
<TargetFrameworks Condition="'$(OS)' != 'Unix'">net472;netcoreapp2.2</TargetFrameworks> | ||
<Description>Framework to automate tests using Selenium WebDriver (lighten version without selenium drivers)</Description> | ||
<Copyright>Copyright © 2015</Copyright> | ||
<Company>Objectivity Bespoke Software Specialists</Company> | ||
<PackageProjectUrl>https://github.com/ObjectivityLtd/Ocaramba</PackageProjectUrl> | ||
<PackageIconUrl>https://raw.githubusercontent.com/ObjectivityLtd/Ocaramba/master/icon.png</PackageIconUrl> | ||
<RepositoryUrl>https://github.com/ObjectivityLtd/Ocaramba</RepositoryUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<PackageReleaseNotes>You can find info about this release here: https://github.com/ObjectivityLtd/Ocaramba/releases</PackageReleaseNotes> | ||
<Version>1.0.0</Version> | ||
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> | ||
<Authors>Objectivity Bespoke Software Specialists</Authors> | ||
<PackageTags>selenium webdriver testautomation tests Ocaramba</PackageTags> | ||
<CodeAnalysisRuleSet>fxcop-sonarqube.tests.ruleset</CodeAnalysisRuleSet> | ||
|
||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="NLog" Version="4.6.6" /> | ||
<PackageReference Include="Selenium.Support" Version="3.141.0" /> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'net472'"> | ||
<Reference Include="System.Configuration" /> | ||
<Reference Include="System.Windows.Forms" /> | ||
<PackageReference Include="Microsoft.AnalysisServices.AdomdClient.retail.amd64" Version="18.0.2" /> | ||
</ItemGroup> | ||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.2'"> | ||
<PackageReference Include="Microsoft.Extensions.Configuration"> | ||
<Version>2.2.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.Extensions.Configuration.Json"> | ||
<Version>2.2.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.PowerShell.Commands.Diagnostics"> | ||
<Version>6.2.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.PowerShell.SDK"> | ||
<Version>6.2.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.WSMan.Management"> | ||
<Version>6.2.1</Version> | ||
</PackageReference> | ||
<PackageReference Include="NLog.Web.AspNetCore"> | ||
<Version>4.8.4</Version> | ||
</PackageReference> | ||
<PackageReference Include="System.Data.Common"> | ||
<Version>4.3.0</Version> | ||
</PackageReference> | ||
<PackageReference Include="System.Data.SqlClient"> | ||
<Version>4.6.1</Version> | ||
</PackageReference> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Update="nlog.config"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</None> | ||
</ItemGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)'=='netcoreapp2.2'"> | ||
<DefineConstants>netcoreapp2_2</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(TargetFramework)'=='net472'"> | ||
<DefineConstants>net47</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
</PropertyGroup> | ||
|
||
</Project> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters