?? samples.build
字號:
<?xml version="1.0"?>
<project name="Samples" default="build">
<!--
Required properties:
* bin.dir - bin directory
* src.dir - source location(build) or target(copy)
* build.debug - (true|false) debug build?
* build.defines.csc - build defines for build config
* runtime.defines.csc - build defines for target framework
-->
<target name="build" depends="copy">
<nant buildfile="cpp-sample/cpp-sample.build" target="build"/>
<nant buildfile="csharp/csharp-sample.build" target="build"/>
<nant buildfile="vb/vb-sample.build" target="build"/>
<nant buildfile="money/money.build" target="build"/>
<nant buildfile="money-port/money-port.build" target="build"/>
<nant buildfile="jsharp/jsharp.build" target="build"/>
</target>
<target name="copy">
<copy file="samples.sln" tofile="${src.dir}/samples/samples.sln"/>
<copy file="samples.build" tofile="${src.dir}/samples/samples.build"/>
</target>
<target name="copy-all" depends="copy">
<nant buildfile="cpp-sample/cpp-sample.build" target="copy"/>
<nant buildfile="csharp/csharp-sample.build" target="copy"/>
<nant buildfile="vb/vb-sample.build" target="copy"/>
<nant buildfile="money/money.build" target="copy"/>
<nant buildfile="money-port/money-port.build" target="copy"/>
<nant buildfile="jsharp/jsharp.build" target="copy"/>
</target>
</project>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -