|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <TargetFrameworks>netstandard2.0;net45;net40;net35</TargetFrameworks> |
| 5 | + <AssemblyName>Selenium.WebDriverBackedSelenium</AssemblyName> |
| 6 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 7 | + <RootNamespace>Selenium</RootNamespace> |
| 8 | + <BuildSystem>visual-studio</BuildSystem> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
| 12 | + <OutputPath>..\..\..\build\cli\Release\</OutputPath> |
| 13 | + </PropertyGroup> |
| 14 | + |
| 15 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> |
| 16 | + <OutputPath>..\..\..\build\cli\Debug\</OutputPath> |
| 17 | + </PropertyGroup> |
| 18 | + |
| 19 | + <PropertyGroup> |
| 20 | + <FrameworkPathOverride Condition="'$(TargetFramework)'=='net35'">C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v3.5\Profile\Client</FrameworkPathOverride> |
| 21 | + </PropertyGroup> |
| 22 | + |
| 23 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net35|AnyCPU'"> |
| 24 | + <DocumentationFile>..\..\..\build\cli\Release\net35\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 25 | + </PropertyGroup> |
| 26 | + |
| 27 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net35|AnyCPU'"> |
| 28 | + <DocumentationFile>..\..\..\build\cli\Debug\net35\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 29 | + <WarningLevel>0</WarningLevel> |
| 30 | + </PropertyGroup> |
| 31 | + |
| 32 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net40|AnyCPU'"> |
| 33 | + <DocumentationFile>..\..\..\build\cli\Release\net40\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 34 | + </PropertyGroup> |
| 35 | + |
| 36 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net40|AnyCPU'"> |
| 37 | + <DocumentationFile>..\..\..\build\cli\Debug\net40\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 38 | + <WarningLevel>0</WarningLevel> |
| 39 | + </PropertyGroup> |
| 40 | + |
| 41 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net45|AnyCPU'"> |
| 42 | + <DocumentationFile>..\..\..\build\cli\Release\net45\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 43 | + </PropertyGroup> |
| 44 | + |
| 45 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net45|AnyCPU'"> |
| 46 | + <DocumentationFile>..\..\..\build\cli\Debug\net45\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 47 | + <WarningLevel>0</WarningLevel> |
| 48 | + </PropertyGroup> |
| 49 | + |
| 50 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|netstandard2.0|AnyCPU'"> |
| 51 | + <DocumentationFile>..\..\..\build\cli\Release\netstandard2.0\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 52 | + </PropertyGroup> |
| 53 | + |
| 54 | + <PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|netstandard2.0|AnyCPU'"> |
| 55 | + <DocumentationFile>..\..\..\build\cli\Debug\netstandard2.0\Selenium.WebDriverBackedSelenium.xml</DocumentationFile> |
| 56 | + <WarningLevel>0</WarningLevel> |
| 57 | + </PropertyGroup> |
| 58 | + |
| 59 | + <ItemGroup> |
| 60 | + <Compile Remove="obj\**" /> |
| 61 | + <Compile Remove="obj_core\**" /> |
| 62 | + <EmbeddedResource Remove="obj\**" /> |
| 63 | + <EmbeddedResource Remove="obj_core\**" /> |
| 64 | + <None Remove="obj\**" /> |
| 65 | + <None Remove="obj_core\**" /> |
| 66 | + </ItemGroup> |
| 67 | + |
| 68 | + <ItemGroup> |
| 69 | + <None Remove="BUCK" /> |
| 70 | + <None Remove="build.desc" /> |
| 71 | + <None Remove="Selenium.WebDriverBackedSelenium.nuspec" /> |
| 72 | + <None Remove="Settings.StyleCop" /> |
| 73 | + </ItemGroup> |
| 74 | + |
| 75 | + <ItemGroup> |
| 76 | + <ProjectReference Include="..\webdriver\WebDriver.NetCore.csproj" /> |
| 77 | + </ItemGroup> |
| 78 | + |
| 79 | +</Project> |
0 commit comments