Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Atc.XUnit/Atc.XUnit.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="EPPlus" Version="[7.5.3]" /> <!-- EPPlus is version-pinned because versions newer than 7.5.3 require a paid license -->
<PackageReference Include="EPPlus" Version="8.7.0" />
<PackageReference Include="ICSharpCode.Decompiler" Version="11.0.0.9375" />
<PackageReference Include="Mono.Reflection" Version="2.0.0">
<NoWarn>NU1701</NoWarn>
Expand Down
2 changes: 1 addition & 1 deletion src/Atc.XUnit/TestResultHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public static void ToExcelTestResultsFromMethodsWithMissingTests(

var file = new FileInfo(Path.Combine(reportDirectory.FullName, $"TestResultsFromMethodsWithMissingTestsFor_{assemblyName}.xlsx"));

ExcelPackage.LicenseContext = LicenseContext.NonCommercial;
ExcelPackage.License.SetNonCommercialOrganization("ATC-Net");

using var p = new ExcelPackage();
var ws = p.Workbook.Worksheets.Add("Methods with missing tests");
Expand Down