summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-08-25 17:05:14 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-08-25 17:05:14 -0700
commitc0fc74c3de4e8a8ebaf471e6fd4f77952d3d69fa (patch)
treea72da8a9e5c5298237734d967ebe98654d9ec375
parent0db73bcf5d94b4817bc0828e5f3b85d300614c97 (diff)
downloadDotNetOpenAuth-c0fc74c3de4e8a8ebaf471e6fd4f77952d3d69fa.zip
DotNetOpenAuth-c0fc74c3de4e8a8ebaf471e6fd4f77952d3d69fa.tar.gz
DotNetOpenAuth-c0fc74c3de4e8a8ebaf471e6fd4f77952d3d69fa.tar.bz2
Fixed strong name skip verification which was missing for some built assemblies.
-rw-r--r--build.proj4
1 files changed, 1 insertions, 3 deletions
diff --git a/build.proj b/build.proj
index a2c39d1..0411f66 100644
--- a/build.proj
+++ b/build.proj
@@ -48,9 +48,7 @@
</Target>
<Target Name="SkipVerification" Condition="'$(IsElevated)' == 'true'">
- <SignatureVerification SkipVerification="true" AssemblyName="$(ProductName)" PublicKeyToken="$(PublicKeyToken)" />
- <SignatureVerification SkipVerification="true" AssemblyName="$(ProductName)_Accessor" PublicKeyToken="$(PublicKeyToken)" />
- <SignatureVerification SkipVerification="true" AssemblyName="$(ProductName).Test" PublicKeyToken="$(PublicKeyToken)" />
+ <SignatureVerification SkipVerification="true" AssemblyName="*" PublicKeyToken="$(PublicKeyToken)" />
</Target>
<Target Name="BuildProduct" DependsOnTargets="SkipVerification">