Wie kann ich eine .net 3.5-Klassenbibliothek mit Nant (0.86) in eine DLL kompilieren?
Dies ist mein bisheriger Stand:
Wie referenziere ich eine System-DLL in der GAC? Diese Zeile scheint zu funktionieren.
<include name="System.ComponentModel.DataAnnotations.dll"/>
Dies ist mein Skript:
<?xml version="1.0"?>
<project name="MyCorp.Data" default="all">
<property name="debug" value="true" />
<target name="all"/>
<target name="clean" description="remove all build products">
<delete dir="build" if="${directory::exists('build')}" />
</target>
<target name="init">
<mkdir dir="build" />
</target>
<target name="compile"
depends="init"
description="compiles the application">
<csc target="library" output="build\${project::get-name()}.dll" debug="${debug}">
<sources>
<include name="src\MyCorp.Data\**\*.cs" />
</sources>
<references>
<include name="tools\subsonic\subsonic.dll"/>
<include name="lib\log4net\log4net.dll"/>
<include name="System.ComponentModel.DataAnnotations.dll"/>
</references>
</csc>
</target>
</project>
Ich bin so weit gekommen, indem ich JP Boodhoos Beitrag