summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-01-15 20:09:13 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2012-01-29 10:38:16 -0800
commit676f79d1cd23fc8ad6d547309bb18cea6a2c5fa4 (patch)
treeabcd259286345abb95e05f016596c7c8d3b5da60
parent9ce67cc4c574f5bbd0db2f82d5e012b5ed08c0c8 (diff)
downloadDotNetOpenAuth-676f79d1cd23fc8ad6d547309bb18cea6a2c5fa4.zip
DotNetOpenAuth-676f79d1cd23fc8ad6d547309bb18cea6a2c5fa4.tar.gz
DotNetOpenAuth-676f79d1cd23fc8ad6d547309bb18cea6a2c5fa4.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.proj3
1 files changed, 2 insertions, 1 deletions
diff --git a/nuget/nuget.proj b/nuget/nuget.proj
index a621cd1..d92e8b4 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>