-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathOnlySpecTest.csproj
More file actions
56 lines (49 loc) · 2.05 KB
/
OnlySpecTest.csproj
File metadata and controls
56 lines (49 loc) · 2.05 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<OutputType>Library</OutputType>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Features\Calculator.feature.cs" />
<Compile Remove="Steps\CalculatorStepDefinitions.cs" />
</ItemGroup>
<ItemGroup>
<SpecFlowFeatureFiles Remove="Features\Calculator.feature" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Selenium.WebDriver" Version="4.27.0" />
<PackageReference Include="Selenium.Support" Version="4.27.0" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="FluentAssertions" Version="6.12.2" />
<PackageReference Include="SpecFlow" Version="3.9.74" />
<PackageReference Include="SpecFlow.NUnit" Version="3.9.74" />
<PackageReference Include="SpecFlow.Tools.MsBuild.Generation" Version="3.9.74" />
<PackageReference Include="ExtentReports" Version="5.0.4" />
<PackageReference Include="NUnit.Console" Version="3.18.2" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="Drivers\" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="specflow.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<SpecFlowFeatureFiles Update="Features\ToDo.feature">
<Visible>False</Visible>
</SpecFlowFeatureFiles>
<SpecFlowFeatureFiles Update="Features\Login.feature">
<Visible>False</Visible>
</SpecFlowFeatureFiles>
</ItemGroup>
</Project>