forked from nhibernate/nhibernate-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNHibernate.build
125 lines (109 loc) · 5.22 KB
/
NHibernate.build
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?xml version="1.0" ?>
<project
name="NHibernate"
default="build"
xmlns="http://nant.sf.net/release/0.85-rc3/nant.xsd"
>
<!--
Required properties:
* build.dir - (path) root level to build to, assemblies will go in ${build.dir}/bin
* build.debug - (true|false) debug build?
* current.build.defines - framework-specific build defines
* project.version - full project version
* project.version.major - the major number of the build
* project.version.minor - the minor number of the build
* project.version.build - the build number
* sign - (true|false) indicates if the Assembly should be signed.
* clover.enabled - (true|false) indicates if Clover.NET should handle the build
* clover.src - location of the clovered source to be stored at from the root of nhibernate
* clover.db - location of the coverage db from the root of nhibernate
* clover.assembly - assembly that contains clover tasks for this version of NAnt
-->
<if test="${clover.enabled}">
<loadtasks assembly="${clover.home}/${clover.assembly}" />
</if>
<property name="keyFile" value="..\NHibernate.snk" />
<target name="build" description="Build NHibernate">
<if test="${clover.enabled}">
<clover-setup
initstring="..\..\${clover.db}"
builddir="..\..\${clover.src}\${nant.project.name}"
enabled="${clover.enabled}"
flushinterval="1000"
/>
</if>
<!-- ensure the AssemblyInfo is writable -->
<attrib file="AssemblyInfo.cs" readonly="false" />
<asminfo output="AssemblyInfo.cs" language="CSharp">
<imports>
<import namespace="System" />
<import namespace="System.Reflection" />
<import namespace="System.Runtime.CompilerServices" />
<import namespace="System.Runtime.InteropServices" />
</imports>
<attributes>
<attribute type="CLSCompliantAttribute" value="true" />
<attribute type="ComVisibleAttribute" value="false" />
<attribute type="AssemblyTitleAttribute" value="${nant.project.name} for ${current.runtime.description}" />
<attribute type="AssemblyDescriptionAttribute" value="An object persistence library for relational databases." />
<attribute type="AssemblyCompanyAttribute" value="nhibernate.sourceforge.net" />
<attribute type="AssemblyProductAttribute" value="${nant.project.name}" />
<attribute type="AssemblyCopyrightAttribute" value="Licensed under LGPL." />
<attribute type="AssemblyVersionAttribute" value="${project.version}" />
<attribute type="AssemblyInformationalVersionAttribute" value="${project.version.major}.${project.version.minor}" />
<attribute type="AssemblyFileVersionAttribute" value="${project.version}" />
<attribute type="AssemblyKeyFileAttribute" value="${keyFile}" if="${sign}"/>
</attributes>
</asminfo>
<csc
target="library"
define="${current.build.defines}"
debug="${build.debug}"
output="${build.dir}/bin/${nant.project.name}.dll"
doc="${build.dir}/bin/${nant.project.name}.xml"
>
<nowarn>
<warning number="1573" />
<warning number="1591" />
</nowarn>
<!--
Documentation related warnings. Basically it's not going to output a warning when there
is no attempt at documentation. If the code has documentation but there is a problem with
it then lets warn the developer during the build.
CS1571: XML comment on 'construct' has a duplicate param tag for 'parameter'
CS1572: XML comment on 'construct' has a param tag for 'parameter', but there is no parameter by that name
CS1573: Parameter 'parameter' has no matching param tag in XML comment (but other parameters do)
CS1574: XML comment on 'construct' has cref attribute 'item' that could not be found
CS1580: Invalid type for parameter 'parameter number' in XML comment cref attribute
CS1581: Invalid return type in XML comment cref attribute
CS1584: XML comment on 'member' has syntactically incorrect cref attribute 'invalid_syntax'
CS1587: XML comment is not placed on a valid language element
CS1589: Unable to include XML fragment 'fragment' of file 'file' - reason
CS1590: Invalid XML include element - Missing file attribute
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
CS1592: Badly formed XML in included comments file - 'reason'
-->
<sources failonempty="true">
<include name="**/*.cs" />
<exclude name="Dialect/HSQLDialect.cs" />
<exclude name="Dialect/InterbaseDialect.cs" />
<exclude name="Dialect/SAPDBDialect.cs" />
<exclude name="Tool/hbm2net/*.cs" />
</sources>
<resources prefix="NHibernate" dynamicprefix="true">
<include name="*.xsd" />
<include name="**/*.xml" />
<exclude name="bin/**/*.xml" />
</resources>
<references basedir="${build.dir}/bin">
<include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.dll" />
<include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.XML.dll" />
<include name="${nant.settings.currentframework.frameworkassemblydirectory}/System.Data.dll" />
<include name="Iesi.Collections.dll" />
<include name="log4net.dll" />
<include name="HashCodeProvider.dll" />
<include name="Castle.DynamicProxy.dll" />
</references>
</csc>
</target>
</project>