Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Web.build « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d5bb1ef8840f6c67500f29b0aa2ca7338f542e9 (plain)
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
<?xml version="1.0" encoding="iso-8859-1"?>

<!-- NAnt build file for System.Web.dll -->

<project name="System" default="build">
	<property name="debug" value="false"/>

	<target name="build">
		<mkdir dir="../lib"/>
		<csc target="library" output="../lib/System.Web.dll" debug="${debug}">
			<arg value="/nowarn:1595"/>
			<arg value="/nowarn:0169"/>
			<arg value="/nowarn:0679"/> <!-- internal virual -->
			<arg value="/nowarn:0168"/> <!-- never used variable -->
			<arg value="/nowarn:0162"/> <!-- unreachable code -->
			<arg value="/unsafe"/>
			<arg value="/noconfig"/>
			<arg value="/debug"/>
			<arg value="/r:System.dll"/>
			<arg value="/r:System.Drawing.dll"/>
			<arg value="/r:System.Xml.dll"/>
			<sources>
				<includes name="**/*.cs"/> 
				<excludes name="Test/**"/>
				<includes name="System.Web.Hosting/ApplicationHost.cs"/> 
				<includes name="System.Web.Hosting/SimpleWorkerRequest.cs.cs"/> 
				<excludes name="System.Web.Hosting/ISAPIRuntime.cs"/>
				<excludes name="System.Web.Hosting/IISAPIRuntime.cs"/>
				<excludes name="System.Web.Hosting/IAppDomainFactory.cs"/>
				<excludes name="System.Web.Hosting/AppDomainFactory.cs"/>
				<!--<excludes name="System.Web.UI/**"/>-->
				<!--<excludes name="System.Web.UI.HtmlControls/**"/>-->
				<!--<excludes name="System.Web.UI.WebControls/**"/>-->
				<excludes name="System.Web/HttpCacheValidateHandler.cs"/>
			</sources>
		</csc>
	</target>
</project>