~ubuntu-branches/ubuntu/feisty/nant/feisty

« back to all changes in this revision

Viewing changes to src/NAnt.Resources/NAnt.Resources.build

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2006-06-12 23:30:36 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060612233036-a1uwh0949z0218ep
Tags: 0.84+0.85-rc4-1
* New upstream release
* Acknowledge NMU (Closes: #372588)
* Standards-Version 3.7.2
* Update to latest CLI policy package split.  Build-Depends-Indep: on
  cli-common-dev, libmono-winforms1.0-cil, libmono-winforms2.0-cil and
  mono-gmcs to get 1.0 and 2.0 packages
* Removed patches no longer needed:
  - 01-AssemblyInfoTask.cs.patch
  - 02-ScriptTask.cs.patch
  - 03-XmlResultFormatter.cs.patch
  - 04-SourceControl.patch
  - 05-ExceptionTest.cs

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?xml version="1.0"?>
2
 
<project name="NAnt.Resources" default="build">
3
 
    <!--
4
 
        Required properties:
5
 
            * build.dir             - (path) root level to build to, assemblies will go in ${build.dir}/bin
6
 
            * build.debug           - (true|false) debug build?
7
 
            * current.build.defines - framework-specific build defines
8
 
            
9
 
            * This is a resource-only assembly for common/shared resources. All other resources
10
 
            will be stored with the assembly that uses them.
11
 
    -->
12
 
    <target name="build">
13
 
 
14
 
        <!-- build main assembly ( don't need defines or debug as this is a resource-only assembly ) -->
15
 
        <csc target="library" output="${build.dir}/bin/${nant.project.name}.dll" >
16
 
            <sources>
17
 
                <!-- common assembly-level attributes (the only source we need ) -->
18
 
                <include name="../CommonAssemblyInfo.cs" />
19
 
            </sources>
20
 
            <resources>
21
 
               <include name="Resources/*.resx" />
22
 
            </resources>
23
 
        </csc>
24
 
    </target>
25
 
</project>