forked from allure-framework/allure-csharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Allure.XUnit.csproj
42 lines (36 loc) · 1.67 KB
/
Allure.XUnit.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>
<IsPackable>true</IsPackable>
<TargetFrameworks>netcoreapp2.0;netstandard2.1;net5.0;net6.0</TargetFrameworks>
<Company>Qameta Software</Company>
<Version>2.10-SNAPSHOT</Version>
<Title>Allure.XUnit</Title>
<Authors>Shumakov Ivan</Authors>
<Description>Allure.XUnit</Description>
<PackageIcon>Allure-X-Color.png</PackageIcon>
<PackageProjectUrl>https://www.nuget.org/packages/Allure.XUnit</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/allure-framework/allure-csharp</RepositoryUrl>
<PackageTags>allure xunit</PackageTags>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<LangVersion>9</LangVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="./../img/Allure-X-Color.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AspectInjector" Version="2.7.3"/>
<PackageReference Include="xunit.assert" Version="2.4.1"/>
<PackageReference Include="xunit.core" Version="2.4.1"/>
<PackageReference Include="xunit.runner.reporters" Version="2.4.1"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Allure.Net.Commons\Allure.Net.Commons.csproj"/>
</ItemGroup>
</Project>