Skip to content

Commit 1d227a8

Browse files
authored
Merge pull request #590 from hjgraca/fix-jmespath-dep
chore: Fix jmespath dependency
2 parents 7a10387 + 16667a0 commit 1d227a8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
<PackageReference Include="Amazon.Lambda.Core" />
1616
<PackageReference Include="AWSSDK.DynamoDBv2" />
1717
<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" />
18+
<ProjectReference Include="..\AWS.Lambda.Powertools.JMESPath\AWS.Lambda.Powertools.JMESPath.csproj" PrivateAssets="all"/>
1919
</ItemGroup>
20-
2120
</Project>

libraries/src/Directory.Build.targets

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,15 @@
1212
<Compile Remove="..\AWS.Lambda.Powertools.Common\obj\**" />
1313
</ItemGroup>
1414

15+
16+
<ItemGroup Condition="'$(MSBuildProjectName)' == 'AWS.Lambda.Powertools.Idempotency' AND '$(Configuration)'=='Release'">
17+
18+
<ProjectReference Remove="..\AWS.Lambda.Powertools.JMESPath\AWS.Lambda.Powertools.JMESPath.csproj" />
19+
20+
<Compile Include="..\AWS.Lambda.Powertools.JMESPath\**\*.cs">
21+
<Link>JMESPath\%(RecursiveDir)%(Filename)%(Extension)</Link>
22+
</Compile>
23+
<Compile Remove="..\AWS.Lambda.Powertools.JMESPath\obj\**" />
24+
</ItemGroup>
25+
1526
</Project>

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
},
77
"Utilities": {
88
"Parameters": "1.3.0",
9-
"Idempotency": "1.2.0",
9+
"Idempotency": "1.2.1",
1010
"BatchProcessing": "1.1.1"
1111
}
1212
}

0 commit comments

Comments
 (0)