-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathBrowserStackLocal Unit Tests.csproj
More file actions
34 lines (34 loc) · 1.48 KB
/
BrowserStackLocal Unit Tests.csproj
File metadata and controls
34 lines (34 loc) · 1.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>BrowserStackLocal_Unit_Tests</RootNamespace>
<AssemblyName>BrowserStackLocal Unit Tests</AssemblyName>
<TargetFrameworks>net7.0</TargetFrameworks>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Title>BrowserStackLocal Unit Tests</Title>
<Product>BrowserStackLocal Unit Tests</Product>
<Description>Unit tests for BrowserStack Local binding</Description>
<Company>BrowserStack</Company>
<Authors>BrowserStack</Authors>
<Copyright>Copyright © 2016</Copyright>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Moq" Version="4.14.7" />
<PackageReference Include="nunit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.15.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.4.0" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net7.0' ">
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.3" />
<Reference Include="BrowserStackLocal">
<HintPath>..\BrowserStackLocal\bin\$(Configuration)\net7.0\BrowserStackLocal.dll</HintPath>
</Reference>
</ItemGroup>
<!-- 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>