-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Legerity.PageObjectGenerator.csproj
42 lines (37 loc) · 1.76 KB
/
Legerity.PageObjectGenerator.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>legerity-pop</ToolCommandName>
<Product>Legerity Page Object Generator</Product>
<Description>A command line tool for auto generating page objects from Windows, Android, iOS, and web pages for UI tests using the Legerity framework</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RootNamespace>Legerity</RootNamespace>
<PackageTags>PageObject Appium Selenium WindowsDriver WinAppDriver Windows UWP Web Android IOS Xamarin Uno</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
<None Remove="Templates\AndroidPageObject.template" />
<None Remove="Templates\WindowsPageObject.template" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Templates\AndroidPageObject.template">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Templates\WindowsPageObject.template">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="MADE.Collections" Version="2.0.0" />
<PackageReference Include="MADE.Data.Validation" Version="2.0.0" />
<PackageReference Include="Scriban" Version="5.9.1" />
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
</ItemGroup>
</Project>