diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-15 20:09:13 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2012-01-15 20:10:18 -0800 |
commit | 522e1c9fc7be5c3519a6cf83f221e71362f9245d (patch) | |
tree | 84be6afe1b9f57d4fcffbc79f3ed6336a150b06d | |
parent | 8546025da00e0d6e6c909c7061e3c3f3ff646e6f (diff) | |
download | DotNetOpenAuth-522e1c9fc7be5c3519a6cf83f221e71362f9245d.zip DotNetOpenAuth-522e1c9fc7be5c3519a6cf83f221e71362f9245d.tar.gz DotNetOpenAuth-522e1c9fc7be5c3519a6cf83f221e71362f9245d.tar.bz2 |
NuGet package now built with lib\full subdirectory so nuget knows that the full .NET framework profile is required.
Fixes #54
-rw-r--r-- | nuget/nuget.proj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nuget/nuget.proj b/nuget/nuget.proj index f8b8e93..5ace1ac 100644 --- a/nuget/nuget.proj +++ b/nuget/nuget.proj @@ -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> |