Skip to content

Commit

Permalink
Specify PrivateAssets="all" for Macaroon
Browse files Browse the repository at this point in the history
  • Loading branch information
joemphilips committed Jun 8, 2020
1 parent 176587e commit 2d9903f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DotNetLightning.Core/DotNetLightning.Core.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<ProjectReference Condition="'$(BouncyCastle)'!='true'" Include="..\NSec\Experimental\NSec.Experimental.csproj" PrivateAssets="all" />
<ProjectReference Include="..\ResultUtils\ResultUtils.fsproj" PrivateAssets="all" />
<ProjectReference Include="..\InternalBech32Encoder\InternalBech32Encoder.csproj" PrivateAssets="all" />
<ProjectReference Include="..\Macaroons\Macaroons.csproj" />
<ProjectReference Include="..\Macaroons\Macaroons.csproj" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
Expand Down

3 comments on commit 2d9903f

@knocte
Copy link
Collaborator

@knocte knocte commented on 2d9903f Jun 8, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@joemphilips build broken? also this commit msg specifies the what but not the why

@joemphilips
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test is failing because of BouncyCastle build ... I'm trying to handle it right now.

@joemphilips
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed in #106

Please sign in to comment.