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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,9 @@ bld/
[Bb]in/
[Oo]bj/
dev/
*.binlog

# Visual Studio 2015 cache/options directory
# Visual Studio cache/options directory
.vs/
# Visual Studio launch settings
**/launchSettings.json
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<PackageVersion Include="Verify.XUnit" Version="25.0.2" />
<PackageVersion Include="xunit.abstractions" Version="2.0.3" />
<!-- Xunit version is managed by Arcade. -->
<PackageVersion Include="xunit" Version="$(XUnitVersion)" />
<PackageVersion Include="xunit.extensibility.execution" Version="$(XUnitVersion)" />
</ItemGroup>

<!-- DotNetBuild overrides -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">

<!-- Don't set IsTestUtilityProject=true because this project is referenced by tools and would otherwise be filtered out. -->
<PropertyGroup>
<TargetFrameworks>$(NetCurrent);$(NetFrameworkCurrent)</TargetFrameworks>
<IsPackable>true</IsPackable>
Expand All @@ -16,7 +17,7 @@

<ItemGroup>
<PackageReference Include="NuGet.Protocol" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.extensibility.execution" />
<PackageReference Include="xunit.abstractions" />
<PackageReference Include="Microsoft.Extensions.Logging" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" />
Expand Down