Skip to content

Commit 0a6ab62

Browse files
committed
fix Idempotency jmespath dependency missing
1 parent 7a10387 commit 0a6ab62

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

libraries/src/AWS.Lambda.Powertools.Idempotency/AWS.Lambda.Powertools.Idempotency.csproj

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
<Description>Powertools for AWS Lambda (.NET) - Idempotency package.</Description>
77
<AssemblyName>AWS.Lambda.Powertools.Idempotency</AssemblyName>
88
<RootNamespace>AWS.Lambda.Powertools.Idempotency</RootNamespace>
9+
<Version>1.2.13</Version>
10+
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeInOutput</TargetsForTfmSpecificBuildOutput>
911
</PropertyGroup>
1012

1113

@@ -15,7 +17,12 @@
1517
<PackageReference Include="Amazon.Lambda.Core" />
1618
<PackageReference Include="AWSSDK.DynamoDBv2" />
1719
<ProjectReference Include="..\AWS.Lambda.Powertools.Common\AWS.Lambda.Powertools.Common.csproj" PrivateAssets="all" />
18-
<ProjectReference Include="..\AWS.Lambda.Powertools.JMESPath\AWS.Lambda.Powertools.JMESPath.csproj" />
20+
<ProjectReference Include="..\AWS.Lambda.Powertools.JMESPath\AWS.Lambda.Powertools.JMESPath.csproj" PrivateAssets="all"/>
1921
</ItemGroup>
20-
22+
23+
<Target Name="IncludeInOutput">
24+
<ItemGroup>
25+
<BuildOutputInPackage Include="$(OutputPath)\AWS.Lambda.Powertools.JMESPath.dll" />
26+
</ItemGroup>
27+
</Target>
2128
</Project>

0 commit comments

Comments
 (0)