Skip to content

Commit

Permalink
trying to fix up nuget embedded content
Browse files Browse the repository at this point in the history
  • Loading branch information
ebekker committed Oct 9, 2019
1 parent a5ee030 commit 24188b7
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions src/Zyborg.AWS.Lambda.Kerberos/Zyborg.AWS.Lambda.Kerberos.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,30 @@
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

<PropertyGroup>
<PackageId>Zyborg.AWS.Lambda.Kerberos</PackageId>
<!-- <PackageVersion>$(VersionPrefix)</PackageVersion> -->
<Authors>EBekker</Authors>
<PackageTags>aws lambda kerberos</PackageTags>
<RepositoryUrl>https://github.com/zyborg/Zyborg.AWS.Lambda.Kerberos</RepositoryUrl>
<!-- <PackageLicenseUrl>https://github.com/zyborg/Zyborg.AWS.Lambda.Kerberos/blob/master/LICENSE</PackageLicenseUrl> -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
<!-- Native Kerberos support for Linux -->
<Content Include="lib/libkadm5*">
<Content Include="lib/libkadm5*" PackageCopyToOutput="true">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="local/k*">
<Content Include="local/k*" PackageCopyToOutput="true">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="etc/lambda*">
<!-- <Content Include="etc/lambda*" PackageCopyToOutput="true">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</Content> -->
<None Include="etc/lambda*" Pack="true" PackageCopyToOutput="true">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>


Expand Down

0 comments on commit 24188b7

Please sign in to comment.