Skip to content

Commit 29d74b4

Browse files
committed
Add deps.json to package
1 parent 8311a5f commit 29d74b4

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
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.5] - 2022.03.31
4+
5+
### Fixed
6+
7+
- Embed a deps.json file in the package.
8+
39
## [0.1.4] - 2022.03.20
410

511
### Fixed

src/Directory.Build.props

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

7-
- Support supplying package versions for project-to-project references in multitargeting scenarios.
7+
- Embed a deps.json file in the package.
88
</PackageReleaseNotes>
99
</PropertyGroup>
1010
</Project>

src/Ionide.KeepAChangelog.Tasks/Ionide.KeepAChangelog.Tasks.fsproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<DebugType>embedded</DebugType>
99
<IsPackable>true</IsPackable>
1010
<Description>MSBuild Tasks and Targets that set your Assembly Version, Package Version, and Package Release Notes from your KeepAChangelog-compatible Changelogs.</Description>
11+
<EnableDynamicLoading>true</EnableDynamicLoading>
1112
</PropertyGroup>
1213

1314
<ItemGroup>
@@ -31,6 +32,7 @@
3132

3233
<Target Name="CopyProjectReferencesToPackage" DependsOnTargets="ResolveReferences">
3334
<ItemGroup>
35+
<BuildOutputInPackage Include="$(OutputPath)/*.deps.json" />
3436
<!-- the dependencies of your MSBuild task must be packaged inside the package, they cannot be expressed as normal PackageReferences -->
3537
<BuildOutputInPackage Include="$(MSBuildThisProject)../Ionide.KeepAChangelog/bin/$(Configuration)/$(TargetFramework)/Ionide.KeepAChangelog.dll" />
3638
<BuildOutputInPackage Include="$(PkgSemanticVersion)/lib/netstandard2.0/SemanticVersion.dll" />

0 commit comments

Comments
 (0)