Open Source .NET Development [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Open Source .NET Development [Electronic resources] - نسخه متنی

Brian Nantz

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید


<attrib>Changes the file attributes of a file or set of files.


The attrib task does not have the concept of turning file attributes off. Instead you specify all the attributes that you want turned on, and the rest are turned off by default.

Attribute

Description

Required

file

The name of the file that will have its attributes set. This is provided as an alternative to using the task's fileset.

False

archive

Set the archive attribute. Default is "false."

False

hidden

Set the hidden attribute. Default is "false."

False

normal

Set the normal file attributes. This attribute is valid only if used alone. Default is "false."

False

readonly

Set the read only attribute. Default is "false."

False

system

Set the system attribute. Default is "false."

False

failonerror

Determines whether task failure stops the build or is just reported. Default is "true."

False

verbose

Task reports detailed build log messages. Default is "false."

False

if

If true then the task will be executed; otherwise skipped. Default is "true."

False

unless

Opposite of if. If false then the task will be executed; otherwise skipped. Default is "false."

False

Example


<attrib normal="true">
<fileset>
<includes name="**/*.exe"/>
<includes name="**/*.dll"/>
</fileset>
</attrib>


    / 275