diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-10 21:18:28 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2011-10-10 21:18:28 -0700 |
commit | b8b3c1cf15fdcb612c72b30f21a523b6714fa54e (patch) | |
tree | 35eea80dd2325bb9ba64d60629b56a943b54bac1 /tools | |
parent | cb9ac7c41553b80b380b35d33ecb36222958c42f (diff) | |
parent | e28d275f1e328d1cc2939cfadb576db7ed7b56a3 (diff) | |
download | DotNetOpenAuth-b8b3c1cf15fdcb612c72b30f21a523b6714fa54e.zip DotNetOpenAuth-b8b3c1cf15fdcb612c72b30f21a523b6714fa54e.tar.gz DotNetOpenAuth-b8b3c1cf15fdcb612c72b30f21a523b6714fa54e.tar.bz2 |
Merging in build support for omitting the Diffie-Hellman algorithm.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/DotNetOpenAuth.targets | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/DotNetOpenAuth.targets b/tools/DotNetOpenAuth.targets index 955847f..6a8689e 100644 --- a/tools/DotNetOpenAuth.targets +++ b/tools/DotNetOpenAuth.targets @@ -18,6 +18,7 @@ <CodeContractsInstallDir>$(ProjectRoot)tools\Contracts\</CodeContractsInstallDir> <DefineConstants Condition=" '$(SignAssembly)' == 'true' ">$(DefineConstants);StrongNameSigned</DefineConstants> <DefineConstants Condition=" '$(ClrVersion)' == '4' ">$(DefineConstants);CLR4</DefineConstants> + <DefineConstants Condition=" '$(ExcludeDiffieHellman)' == 'true' ">$(DefineConstants);ExcludeDiffieHellman</DefineConstants> <AssemblySearchPaths>$(ProjectRoot)lib;$(AssemblySearchPaths)</AssemblySearchPaths> <AssemblySearchPaths Condition="Exists('$(ProjectRoot)lib\net-$(TargetFrameworkVersion)')">$(ProjectRoot)lib\net-$(TargetFrameworkVersion);$(AssemblySearchPaths)</AssemblySearchPaths> </PropertyGroup> |