原文: 如何使用AdvancedInstaller在安装包中运行一个.bat文件 1, 首先要保证你的Files and Folders模块下的Application Folder文件夹下包含你要运行的.bat文件。 2, 在Custom Actions模块下的InstallExecuteSeque...
分类:
其他好文 时间:
2014-11-23 18:48:23
阅读次数:
914
原文:http://wiki.unity3d.com/index.php/Special_Folder_Names_in_your_Assets_Folder1.隐藏文件夹以.开头的文件夹会被Unity忽略。在这种文件夹中的资源不会被导入,脚本不会被编译。也不会出现在Project视图中。2.Sta...
分类:
编程语言 时间:
2014-11-22 00:34:16
阅读次数:
403
Grunt will clean up your build with the grunt-contrib-clean to make sure that no artifacts from previous builds are hanging around.Install:npm install...
分类:
其他好文 时间:
2014-11-17 19:14:46
阅读次数:
263
建立一个文本文件,取名为kill-svn-folders.reg(扩展名由txt改为reg),内容如下:Windows Registry Editor Version 5.00[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\DeleteSVN]@=...
问题描述:打开Visual Studio命令行工具后,输出的错误信息,并且无法直接使用VS自带的工具。原因分析:没有运行正确的命令行工具,导致环境变量设置脚本没有正确运行。解决方案:选择正确的命令行工具运行,如在Windows 8 64位系统Visual Studio 2013的环境下,选择“VS2...
分类:
其他好文 时间:
2014-11-15 21:46:44
阅读次数:
1041
1. Open a command console and go to the directory where you installed Postgre server.
e.g. D:\Program Files\PostgreSQL\9.3\bin>
2. Drill down into BIN folder and issue following command.
psql -d -...
分类:
其他好文 时间:
2014-11-12 19:51:25
阅读次数:
215
//删除文件夹
private void deleteDirectory(File folder) {
if (folder.exists()) {
File[] files = folder.listFiles();
if (files == null) {
return;
}
for (int i = 0; i < files.length; i++) {...
分类:
移动开发 时间:
2014-11-12 19:49:18
阅读次数:
211
JS Enhancements使用JS能像C#代码一样折叠成块Code Compare Code Compare is a powerful file and folder comparison tool that demonstrates new level of code compariso.....
分类:
其他好文 时间:
2014-11-11 16:13:25
阅读次数:
163
2种方法:
1.你用tortoiseSVN点版本库浏览,在需要建立分支的路径(比如trunk)点copy to + 新分支名称(注意:必须与trunk不能同名,你可以新建一个名称比如branch)
2.tortoiseSVN点版本库浏览,你在需要创建的路径下右键tortoiseSVN 选择create folder 然后创建新路径名称(文件夹)然后把主干或者其他分支路径的代码(拉分支这种情况估...
分类:
其他好文 时间:
2014-11-11 12:44:09
阅读次数:
321
要分析django的源码,来更深入的学习django,是一个不错的方法,可惜需要大量的时间。所以,能分析多少就是多少吧。本次源码分析以1.4.16为基础。用sublime 打开下载的源码,使用 Find in Folder,查找BigIntegerField在其中可以看到这样的代码:1 1005 ....
分类:
其他好文 时间:
2014-11-08 07:03:09
阅读次数:
215