Skip to content
This repository has been archived by the owner on Mar 20, 2019. It is now read-only.

Commit

Permalink
NuGet package now built with lib\full subdirectory so nuget knows tha…
Browse files Browse the repository at this point in the history
…t the full .NET framework profile is required.

Fixes #54
  • Loading branch information
AArnott committed Jan 16, 2012
1 parent 8546025 commit 522e1c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nuget/nuget.proj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
<ItemGroup>
<NuGetSource Include="%(ResignedAssembliesOutputs.Identity)" Condition=" '%(FileName)%(Extension)' == 'DotNetOpenAuth.dll' "/>
<NuGetSource>
<TargetPath>$(NuGetLayoutPath)lib\%(FileName)%(Extension)</TargetPath>
<TargetPath Condition=" '$(ClrVersion)' == '2' ">$(NuGetLayoutPath)lib\full\%(FileName)%(Extension)</TargetPath>
<TargetPath Condition=" '$(ClrVersion)' == '4' ">$(NuGetLayoutPath)lib\net40-full\%(FileName)%(Extension)</TargetPath>
</NuGetSource>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 522e1c9

Please sign in to comment.