Skip to content

Commit

Permalink
Merge branch 'hotfix/0.24.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Apr 16, 2020
2 parents f0b63ae + aaad9da commit 9c52572
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [vNext]

## [0.24.9] / 2020-04-16
- Fixed MSBuild targets directories

## [0.24.8] / 2020-04-12
- Fixed publishing of global tool for `netcoreapp3.1`
- Fixed .NET Core SDK install script URL
Expand Down Expand Up @@ -568,7 +571,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Added CLT tasks for Git
- Fixed background color in console output

[vNext]: https://github.com/nuke-build/nuke/compare/0.24.8...HEAD
[vNext]: https://github.com/nuke-build/nuke/compare/0.24.9...HEAD
[0.24.9]: https://github.com/nuke-build/nuke/compare/0.24.8...0.24.9
[0.24.8]: https://github.com/nuke-build/nuke/compare/0.24.7...0.24.8
[0.24.7]: https://github.com/nuke-build/nuke/compare/0.24.6...0.24.7
[0.24.6]: https://github.com/nuke-build/nuke/compare/0.24.5...0.24.6
Expand Down
16 changes: 8 additions & 8 deletions source/Nuke.Common/Nuke.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == ''">
<None Include="$(MSBuildProjectName).props" PackagePath="build\netcore" Pack="true" />
<None Include="$(MSBuildProjectName).props" PackagePath="build\netfx" Pack="true" />
<None Include="$(MSBuildProjectName).targets" PackagePath="build\netcore" Pack="true" />
<None Include="$(MSBuildProjectName).targets" PackagePath="build\netfx" Pack="true" />
<None Include="..\Nuke.MSBuildTasks\Nuke.MSBuildTasks.targets" PackagePath="build\netcore" Pack="true" />
<None Include="..\Nuke.MSBuildTasks\Nuke.MSBuildTasks.targets" PackagePath="build\netfx" Pack="true" />
<None Include="..\Nuke.MSBuildTasks\bin\$(Configuration)\netcoreapp2.1\publish\**\*.*" PackagePath="build\netcore" Pack="true" />
<None Include="..\Nuke.MSBuildTasks\bin\$(Configuration)\net472\publish\**\*.*" PackagePath="build\netfx" Pack="true" />
<None Include="$(MSBuildProjectName).props" PackagePath="build\netcoreapp2.1" Pack="true"/>
<None Include="$(MSBuildProjectName).props" PackagePath="build\net472" Pack="true"/>
<None Include="$(MSBuildProjectName).targets" PackagePath="build\netcoreapp2.1" Pack="true"/>
<None Include="$(MSBuildProjectName).targets" PackagePath="build\net472" Pack="true"/>
<None Include="..\Nuke.MSBuildTasks\Nuke.MSBuildTasks.targets" PackagePath="build\netcoreapp2.1" Pack="true"/>
<None Include="..\Nuke.MSBuildTasks\Nuke.MSBuildTasks.targets" PackagePath="build\net472" Pack="true"/>
<None Include="..\Nuke.MSBuildTasks\bin\$(Configuration)\netcoreapp2.1\publish\**\*.*" PackagePath="build\netcoreapp2.1" Pack="true"/>
<None Include="..\Nuke.MSBuildTasks\bin\$(Configuration)\net472\publish\**\*.*" PackagePath="build\net472" Pack="true"/>
</ItemGroup>

</Project>

0 comments on commit 9c52572

Please sign in to comment.