Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Dec 31, 2021
1 parent 0b97167 commit bf711e8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
2 changes: 2 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# 1.0.0-beta.39

- Added a `Microsoft.Build` `PackageReference` to the `Statiq.Web.props` that gets imported on package restore to turn off warnings for NU1701 (restored using a different target). This can eventually be taken back out once Statiq targets .NET 6.

# 1.0.0-beta.38

- Updated Statiq Framework to version [1.0.0-beta.53](https://github.com/statiqdev/Statiq.Framework/releases/tag/v1.0.0-beta.53).
Expand Down
4 changes: 4 additions & 0 deletions src/Statiq.Web/Statiq.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@

<ItemGroup>
<PackageReference Include="Buildalyzer.Workspaces" Version="3.2.6" />
<!--
This can be removed once Buildalyzer and Statiq are updated to .NET 6
and the upstream Microsoft.Build reference in Buildalyzer are updated
-->
<PackageReference Include="Microsoft.Build" Version="16.10.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
Expand Down
11 changes: 10 additions & 1 deletion src/Statiq.Web/Statiq.Web.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,13 @@
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
<ItemGroup>
<!--
This can be removed once Buildalyzer and Statiq are updated to .NET 6
and the upstream Microsoft.Build reference in Buildalyzer are updated
-->
<PackageReference Include="Microsoft.Build" Version="16.10.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
</Project>

0 comments on commit bf711e8

Please sign in to comment.