Skip to content

Commit 17bd59a

Browse files
committed
Added package info to .csproj
1 parent 9fa4da2 commit 17bd59a

File tree

4 files changed

+32
-10
lines changed

4 files changed

+32
-10
lines changed
Lines changed: 29 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,45 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<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+
425
<TargetFramework>net6.0</TargetFramework>
526
<Nullable>enable</Nullable>
627

728
<IsPackable>false</IsPackable>
829
</PropertyGroup>
930

1031
<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"/>
1738
</ItemGroup>
1839

1940
<ItemGroup>
20-
<Folder Include="Bindings" />
21-
<Folder Include="ElementStorage" />
41+
<Folder Include="Bindings"/>
42+
<Folder Include="ElementStorage"/>
2243
</ItemGroup>
2344

2445
</Project>

Behavioral.Automation.Selenium/Behavioral.Automation/Behavioral.Automation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The whole automation code is divided into the following parts:
1616
- UI structure descriptive code
1717
- Supportive code</Description>
1818
<Copyright>Quantori Inc.</Copyright>
19-
<PackageVersion>1.11.0</PackageVersion>
19+
<PackageVersion>1.13.0</PackageVersion>
2020
<RepositoryUrl>https://github.com/quantori/Behavioral.Automation</RepositoryUrl>
2121
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2222
<IncludeSymbols>true</IncludeSymbols>

Behavioral.Automation.Selenium/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
[1.12.0] - 2022-06-03
7+
[1.13.0] - 2022-06-03
88
### Added
99
- Changed folder structure to separate Selenium and Playwright versions of the framework

src/BlazorApp/BlazorApp.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7+
<LangVersion>preview</LangVersion>
78
</PropertyGroup>
89

910
</Project>

0 commit comments

Comments
 (0)