引言:
使用 ant 让你愉快编程(3)
摘要: build.
摘要:
使用 ant 让你愉快编程(4)
摘要: checkstyle_checks.xml, java.header
现在已经有了目录结构, 有了 build_common.xml, common.xml, usage.txt,
build.xml, build.properties 等文件, 已经可以完成大部分任务了.
现在介绍如何进行辅助任务, 比如代码检查.
代码检查在 ......
摘要:this page contains sample ado connection strings for odbc dsn / dsn-less,ole db providers, remote data services (rds), ms remote, ms datashape.
also included are ado.net connection strings for each ......
使用 ant 让你愉快编程(3)
使用 ant 让你愉快编程(3)
摘要: build.xml, build.properties
2. 介绍 build.xml, build.properties
. 以下为 build.xml 文件内容.
<?xml version="1.0" encoding="iso-8859-1"?>
<!--
copyright 2004 camry.wu@gmail.com
this program is free software; you can redistribute it and/or modify
it under the terms of the gnu general public license as published by
the free software foundation; either version 2 of the license, or
(at your option) any later version.
this program is distributed in the hope that it will be useful,
but without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose. see the
gnu general public license for more details.
you should have received a copy of the gnu general public license
along with this program; if not, write to the free software
foundation, inc., 59 temple place, suite 330, boston, ma 02111-1307 usa
-->
<project name="app" basedir="." default="compile">
<property file="build.properties"/>
<!-- 载入 common build 内容 -->
<import file="${path.common}/build_common.xml"/>
<!--
...
下一页 摘要:asp.net中用javascript实现弹出窗口永远居中function showdialog(url) { var iwidth=600; //模态窗口宽度 var iheight=500;//模态窗口高度 var itop=(window.screen.height-iheight)/2; var ileft=(window.screen.width-iwidth)/2; window.op......