Skip to content

Commit 1cde03e

Browse files
committed
fix packaging logic for non-core msbuilds
1 parent aaa6e4d commit 1cde03e

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.1.8] - 2022.03.31
4+
5+
### Changed
6+
7+
* Minor packaging fix for non-Core MSBuild versions
8+
39
## [0.1.7] - 2022.03.31
410

511
### Changed

src/Directory.Build.props

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>0.1.7</Version>
3+
<Version>0.1.8</Version>
44
<PackageReleaseNotes>
55
### Changed
66

7-
* Better packaging of the task to prevent task DLL dependencies from impacting your project's dependencies
8-
* Updated the parser to provide to `ToMarkdown()` member for more general use
7+
* Minor packaging fix for non-Core MSBuild versions
98
</PackageReleaseNotes>
109
</PropertyGroup>
1110
</Project>

src/Ionide.KeepAChangelog.Tasks/build/Ionide.KeepAChangelog.Tasks.targets

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
$(GetPackageVersionDependsOn);
1414
</GetPackageVersionDependsOn>
1515

16-
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' == 'Full' ">net472</_Ionide_KeepAChangelog_Tasks_TFM>
16+
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' != 'Core' ">net472</_Ionide_KeepAChangelog_Tasks_TFM>
1717
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' == 'Core' ">net6.0</_Ionide_KeepAChangelog_Tasks_TFM>
18-
<_Ionide_KeepAChangelog_Tasks_TFM Condition="'$(_Ionide_KeepAChangelog_Tasks_TFM)' == '' ">net6.0</_Ionide_KeepAChangelog_Tasks_TFM>
1918
</PropertyGroup>
2019

2120
<UsingTask

src/Ionide.KeepAChangelog.Tasks/buildMultiTargeting/Ionide.KeepAChangelog.Tasks.targets

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@
1313
$(GetPackageVersionDependsOn);
1414
</GetPackageVersionDependsOn>
1515

16-
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' == 'Full' ">net472</_Ionide_KeepAChangelog_Tasks_TFM>
16+
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' != 'Core' ">net472</_Ionide_KeepAChangelog_Tasks_TFM>
1717
<_Ionide_KeepAChangelog_Tasks_TFM Condition=" '$(MSBuildRuntimeType)' == 'Core' ">net6.0</_Ionide_KeepAChangelog_Tasks_TFM>
18-
<_Ionide_KeepAChangelog_Tasks_TFM Condition="'$(_Ionide_KeepAChangelog_Tasks_TFM)' == '' ">net6.0</_Ionide_KeepAChangelog_Tasks_TFM>
1918
</PropertyGroup>
2019

2120
<UsingTask

0 commit comments

Comments
 (0)