-
Notifications
You must be signed in to change notification settings - Fork 65
/
Allure.Reqnroll.csproj
32 lines (27 loc) · 1.22 KB
/
Allure.Reqnroll.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Allure.Reqnroll</PackageId>
<AssemblyName>Allure.ReqnrollPlugin</AssemblyName>
<RootNamespace>Allure.ReqnrollPlugin</RootNamespace>
<TargetFramework>netstandard2.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<Authors>Maksim Stepanov</Authors>
<Description>Create beautiful reports from your Reqnroll tests.</Description>
<PackageIcon>Allure-Color.png</PackageIcon>
<PackageTags>$(PackageTags) reqnroll</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
<Content Include="allureConfig.Template.json" Pack="true" />
<None Include="./../img/Allure-Color.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="33.0.1" />
<PackageReference Include="Reqnroll" Version="2.0.0" />
<PackageReference Include="System.Collections.Specialized" Version="4.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Allure.Net.Commons\Allure.Net.Commons.csproj" />
</ItemGroup>
</Project>