Skip to content

Commit

Permalink
fix: csharp example RandomWriter does not build
Browse files Browse the repository at this point in the history
CDK and JSII versions were not pinned and the latest release included breaking changes.
Also modified the dependencies to be pinned to the latest version
  • Loading branch information
shivlaks committed Mar 25, 2020
1 parent 4feeaa1 commit 8492843
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions csharp/random-writer/src/RandomWriter/RandomWriter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Amazon.CDK" Version="*" />
<PackageReference Include="Amazon.CDK.AWS.DynamoDb" Version="*" />
<PackageReference Include="Amazon.CDK.AWS.Events" Version="*" />
<PackageReference Include="Amazon.CDK.AWS.Events.Targets" Version="*" />
<PackageReference Include="Amazon.CDK.AWS.Lambda" Version="*" />
<PackageReference Include="Amazon.CDK" Version="1.31.0" />
<PackageReference Include="Amazon.CDK.AWS.DynamoDb" Version="1.31.0" />
<PackageReference Include="Amazon.CDK.AWS.Events" Version="1.31.0" />
<PackageReference Include="Amazon.CDK.AWS.Events.Targets" Version="1.31.0" />
<PackageReference Include="Amazon.CDK.AWS.Lambda" Version="1.31.0" />

<PackageReference Include="Amazon.JSII.Analyzers" Version="*" />
<PackageReference Include="Amazon.JSII.Analyzers" Version="1.1.0" />
</ItemGroup>
</Project>

0 comments on commit 8492843

Please sign in to comment.