nant.build

来自「SharpDevelop2.0.0 c#开发免费工具」· BUILD 代码 · 共 41 行

BUILD
41
字号
<?xml version="1.0" ?>
<!--
Copyright 2004-2005 The Apache Software Foundation

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project name="net-1.0-extensions" default="compile" xmlnds="http://tempuri.org/nant-vs.xsd">
    <!-- include configuration file -->
    <include buildfile="nant.config" />
    <!-- compile all .NET Framework 1.0 extensions -->
    <target name="compile" description="Builds .NET Framework 1.0 extensions">
        <if test="${framework::exists(project.runtime.config + '-' + project.runtime.version)}">
            <nant target="compile">
                <buildfiles>
                    <include name="*/nant.build" />
                    <!-- exclude current build file -->
                    <exclude name="exclude.build" />
                </buildfiles>
            </nant>
        </if>
        <if test="${not framework::exists(project.runtime.config + '-' + project.runtime.version)}">
            <if test="${property::exists('project.build.package') and project.build.package}">
                <fail message="${project.runtime.description} is not available." />
            </if>
            <if test="${not(property::exists('project.build.package') and project.build.package)}">
                <echo message="${project.runtime.description} is not available. Examples skipped." />
            </if>
        </if>
    </target>
</project>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?