Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Update deps versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
unickq committed Aug 31, 2020
1 parent ae017e8 commit 15b1397
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 40 deletions.
File renamed without changes.
15 changes: 10 additions & 5 deletions src/allure-nunit-steps/allure-nunit-steps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,24 @@
<PackageProjectUrl>https://github.com/unickq/allure-nunit</PackageProjectUrl>
<RepositoryUrl>https://github.com/unickq/allure-nunit</RepositoryUrl>
<PackageTags>nunit allure</PackageTags>
<PackageIconUrl>https://raw.githubusercontent.com/unickq/allure-nunit/master/logo.png</PackageIconUrl>
<PackageIconUrl></PackageIconUrl>
<OutputType>Library</OutputType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReleaseNotes>Ability to change step name</PackageReleaseNotes>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="AspectInjector" Version="2.3.1" />
<PackageReference Include="NUnit.Allure" Version="1.0.6" />
<PackageReference Include="AspectInjector" Version="2.4.1" />
<PackageReference Include="NUnit.Allure" Version="1.0.10" />
</ItemGroup>

<ItemGroup>
<None Include="..\..\LICENSE">
<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
Expand Down
2 changes: 1 addition & 1 deletion src/allure-nunit.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{BC0E230A-6E28-4F2A-BA10-0EDCF0C9F5AF}"
ProjectSection(SolutionItems) = preProject
..\appveyor.yml = ..\appveyor.yml
..\LICENSE = ..\LICENSE
..\LICENSE.md = ..\LICENSE.md
..\README.md = ..\README.md
EndProjectSection
EndProject
Expand Down
5 changes: 5 additions & 0 deletions src/allure-nunit/Core/AllureExtendedConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,10 @@ namespace NUnit.Allure.Core
internal class AllureExtendedConfiguration : AllureConfiguration
{
public HashSet<string> BrokenTestData { get; set; } = new HashSet<string>();

protected AllureExtendedConfiguration(string title, string directory, HashSet<string> links) : base(title,
directory, links)
{
}
}
}
18 changes: 0 additions & 18 deletions src/allure-nunit/Properties/AssemblyInfo.cs

This file was deleted.

30 changes: 14 additions & 16 deletions src/allure-nunit/allure-nunit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,30 @@
<RepositoryUrl>https://github.com/unickq/allure-nunit</RepositoryUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageTags>nunit allure</PackageTags>
<PackageReleaseNotes>Returned icon</PackageReleaseNotes>
<PackageReleaseNotes>Fixed NUnit version</PackageReleaseNotes>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<PackageIconUrl>https://raw.githubusercontent.com/unickq/allure-nunit/master/logo.png</PackageIconUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageIconUrl></PackageIconUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
<Compile Remove="packages\**" />
<EmbeddedResource Remove="packages\**" />
<None Remove="packages\**" />
<None Include="..\..\logo.png" Pack="true" Visible="false" PackagePath="" />
<None Include="..\..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

<ItemGroup>
<PackageReference Include="Allure.Commons" Version="2.3.64.1" />
<PackageReference Include="NUnit" Version="3.10.1" />
<PackageReference Include="Allure.Commons" Version="3.1.0.6" />
<PackageReference Include="NUnit" Version="3.12.0" />
</ItemGroup>

<ItemGroup>
<None Update="allureConfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="..\..\LICENSE.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit 15b1397

Please sign in to comment.