diff --git a/docs/manual/OptionalTasks/dotnet.html b/docs/manual/OptionalTasks/dotnet.html index 3d549f3af..8a021b0d5 100644 --- a/docs/manual/OptionalTasks/dotnet.html +++ b/docs/manual/OptionalTasks/dotnet.html @@ -64,7 +64,7 @@ can, however, be done if absolutely necessary. -
+
Attribute | +Description | +Required | +
File | +the resource to include | +Yes | +
name | +the name of the resource. + Optional unless the resource is + marked as public or private | +No | +
embed | +flag to control whether the resource + is embedded in the assembly, or just linked to it | +No -default is true | +
public | +VB only: flag to control if a resource should be + public or private. Set to true for public, false for private + and leave undefined for for neither. | +No | +
+<resource file="app.ico" name="icon" /> +<resource file="splash.jpg"/> +<resource name="splash" file="splash.jpg" public="false"/> ++ +
+ +Dependency Logic: the tasks are not (yet) clever enough to remember what +the last definitions were and trigger a rebuild when they change. Clean +build the code when the defines are likely to be different. +
+
Attribute | +Description | +Required | +
name | +the name of the definition | +Yes | +
if | +name of a ant property to test for; + the definition is only set if this property is defined. | +No | +
unless | +name of a ant property to test for; + the definition is only set if this property is undefined. | +No | +
+<define name="unsafe" /> +<define name="debug" if="build.debug"/> +<define name="dotnet" unless="build.mono"/> +