Skip to content

Commit

Permalink
Changed the .props files to .targets for correct ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
daveaglick committed Jul 6, 2022
1 parent 0274ba2 commit 2f019b2
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 1.0.0-beta.62

- Changed `Statiq.App.props` to `Statiq.App.targets` to resolve some import ordering bugs.
- Added a `Keys.IgnoreExternalDestinations` setting to ignore when document destinations are not relative to the output path since some use cases may require writing documents elsewhere.

# 1.0.0-beta.61

- Updated the referenced version of ImageSharp in the Statiq.Images library (#242, thanks @olevett).
Expand Down
4 changes: 2 additions & 2 deletions src/core/Statiq.App/Statiq.App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
</PropertyGroup>

<ItemGroup>
<None Include="Statiq.App.props" Pack="true" PackagePath="build\$(TargetFramework)\" />
<None Include="Statiq.App.props" Pack="true" PackagePath="buildTransitive\$(TargetFramework)\" />
<None Include="Statiq.App.targets" Pack="true" PackagePath="build\$(TargetFramework)\" />
<None Include="Statiq.App.targets" Pack="true" PackagePath="buildTransitive\$(TargetFramework)\" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,10 @@
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup Condition="'$(Language)' == 'C#' AND ('$(ImplicitUsings)' == 'true' or '$(ImplicitUsings)' == 'enable')">
<Using Include="Statiq" />
<Using Include="Statiq.Common" />
<Using Include="Statiq.Core" />
<Using Include="Statiq.App" />
</ItemGroup>
</Project>

0 comments on commit 2f019b2

Please sign in to comment.