|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
| 4 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 5 | + <Authors>Quantori Inc.</Authors> |
| 6 | + <Description>Platform design is based on strong and well-defined borderline between procedural test cases structure and object-oriented code-behind. |
| 7 | + |
| 8 | + We think that test cases implementation approach (inside BDD paradigm) is literaly the same across different applications. That means that we can define and reuse grammar structures across different application domains. On top of this, while talking about single page web applications, we may take into account that atomic controls behavior is also the same across different domains. |
| 9 | + |
| 10 | + The whole automation code is divided into the following parts: |
| 11 | + - Feature files |
| 12 | + - Bindings |
| 13 | + - Wrappers |
| 14 | + - Infrastructure bindings |
| 15 | + - UI structure descriptive code |
| 16 | + - Supportive code |
| 17 | + </Description> |
| 18 | + <Copyright>Quantori Inc.</Copyright> |
| 19 | + <PackageVersion>0.1</PackageVersion> |
| 20 | + <RepositoryUrl>https://github.com/quantori/Behavioral.Automation</RepositoryUrl> |
| 21 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 22 | + <IncludeSymbols>true</IncludeSymbols> |
| 23 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 24 | + |
4 | 25 | <TargetFramework>net6.0</TargetFramework> |
5 | 26 | <Nullable>enable</Nullable> |
6 | 27 |
|
7 | 28 | <IsPackable>false</IsPackable> |
8 | 29 | </PropertyGroup> |
9 | 30 |
|
10 | 31 | <ItemGroup> |
11 | | - <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" /> |
12 | | - <PackageReference Include="Microsoft.Playwright" Version="1.22.0" /> |
13 | | - <PackageReference Include="NUnit" Version="3.13.2" /> |
14 | | - <PackageReference Include="NUnit3TestAdapter" Version="4.0.0" /> |
15 | | - <PackageReference Include="coverlet.collector" Version="3.1.0" /> |
16 | | - <PackageReference Include="SpecFlow" Version="3.9.74" /> |
| 32 | + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0"/> |
| 33 | + <PackageReference Include="Microsoft.Playwright" Version="1.22.0"/> |
| 34 | + <PackageReference Include="NUnit" Version="3.13.2"/> |
| 35 | + <PackageReference Include="NUnit3TestAdapter" Version="4.0.0"/> |
| 36 | + <PackageReference Include="coverlet.collector" Version="3.1.0"/> |
| 37 | + <PackageReference Include="SpecFlow" Version="3.9.74"/> |
17 | 38 | </ItemGroup> |
18 | 39 |
|
19 | 40 | <ItemGroup> |
20 | | - <Folder Include="Bindings" /> |
21 | | - <Folder Include="ElementStorage" /> |
| 41 | + <Folder Include="Bindings"/> |
| 42 | + <Folder Include="ElementStorage"/> |
22 | 43 | </ItemGroup> |
23 | 44 |
|
24 | 45 | </Project> |
0 commit comments