Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • The ASP application does not need to be compiled when first accessed. 
  • By deploying only compiled ASP applications, the ASPX source files do not need to be in the IIS virtual directories. 

User Interface

Compiler Options

Application

...

There are three ways to specify the path to your ASP.NET Application:

IIS virtual path with physical directory determined by IIS

The application will be located by using the IIS metabase and the default website. The physical (local) folder will be determined via the IIS metabase.

IIS virtual path

...

with using physical directory

The application will be compiled from the specified physical (local) directory, but as if it was installed at the IIS virtual directory given by the path. This is useful if you want to compile your ASP.NET application from one (offline) directory, but deploy the assemblies in another directory.

Full IIS metabase path

The application will be located by using a full IIS metabase path. The physical (local) folder will be determined via the IIS metabase.

...

This options specifies as whether to force the usage of 64-bit tools on a 64-bit system or not.  As FinalBuilder is currently a 32-bit application it will default to running the 32-bit version on a 64-bit system.  Check this option if you require the 64-bit version to be run.

Starting Directory

Starting Directory

 

Target

Target Output Directory

Compile the application in-place

The application will compile to the same directory as the source.

Fully rebuild target application

All sources will be rebuilt, not just those which have changed.

Compile the application to target directory

The application will compile to the specified target directory. Compiling to a target directory automatically implies "fully rebuild target application."

Create updatable application

The compiled application will be updatable.

Overwrite the target directory

If the target directory already exists, its contents will be overwritten.

Emit debug information

The compiler will emit debug information to the log during the compile process.

Use fixed names for compiled assemblies

The compiled assemblies will be given fixed names.

...