Skip to content

Commit

Permalink
feat: upgraded bunit.template to reference only bunit package
Browse files Browse the repository at this point in the history
  • Loading branch information
egil committed Apr 17, 2021
1 parent 6fb49dd commit ae74834
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to **bUnit** will be documented in this file. The project ad

<!-- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) -->

## [Unreleased]

### Changed

- Changed bunit.template such that created projects only reference the bunit package. Bumped other referenced packages to latest version.

## [1.0.16]

The following section list all changes since preview 02.
Expand Down
9 changes: 4 additions & 5 deletions src/bunit.template/template/Company.BlazorTests1.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,17 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="bunit.core" Version="#{VERSION}#" />
<PackageReference Include="bunit.web" Version="#{VERSION}#" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="bunit" Version="#{NBGV_NuGetPackageVersion}#" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="1.3.0">
<PackageReference Include="coverlet.collector" Version="3.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

</Project>
</Project>

0 comments on commit ae74834

Please sign in to comment.