Prep for .NET 4.0 security model:

- modified build to run peverify on IKVM.Runtime.dll
This commit is contained in:
jfrijters 2010-04-12 06:37:18 +00:00
Родитель 562b15ceb2
Коммит c8619421d1
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -109,6 +109,15 @@
<include name="${framework::get-assembly-directory(framework::get-target-framework())}/System.Configuration.dll" />
</references>
</csc>
<if test="${not first-pass}">
<if test="${platform::is-win32()}">
<exec program="peverify" commandline="-nologo IKVM.Runtime.dll">
<environment>
<variable name="DEVPATH" value="${path::get-full-path('../bin/')}" />
</environment>
</exec>
</if>
</if>
<copy file="IKVM.Runtime.dll" todir="../bin" />
</target>
</project>