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

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

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

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

Brian Nantz

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

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

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


<regasm>


Register an assembly for use from COM clients.

Attribute

Description

Required

regfile

Registry file to export to instead of entering the types directly into the registry. If a fileset is used. then the entries are all collated into this file.

False

codebase

Set the code base registry setting.

False

silent

Silent mode. Prevents displaying of success messages. Default is "false."

False

exporttypelib

Export a typelib and register it. The typelib will have the same name as the source assembly unless the "typelib" attribute is used.

False

registered

Only refer to already registered type libraries.

False

typelib

Export the assembly to the specified type library and register it (ignored when a fileset is specified).

False

unregister

Unregistering this time. ( /u parameter )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


<regasm unregister="false" codebase="true" >
<fileset>
<includes name="**/*.dll"/>
<excludes name="notanassembly.dll"/>
</fileset>
</regasm>


    / 275