
VS
TimeFuture2017
这个作者很懒,什么都没留下…
展开
-
C++ 获得文件夹中所有文件个数
#include <string>#include<io.h>#include<queue>class GetFileNumTool{public: //获得所有文件个数 static int GetFileNum(const std::string& inPath) { int fileNum = 0; std::vector<std::string> pathVec; .原创 2021-12-09 09:53:28 · 4734 阅读 · 0 评论 -
VS2019 菜单中缺少 Architecture (体系结构)
在安装VS2019时,保证安装了 “.NET desktop development”下的“Architecture and analysis tools”原创 2021-10-26 17:07:59 · 1492 阅读 · 0 评论 -
github Repository not found 解决办法
git pull的时候遇到下面的报错。 1 2 remote: Repository not found fatal: repository'https://github.com/MyRepo/project.git/'not found 解决办法如下,然后再执行git pull就会让你输入账号密码。就可以正常使用啦。 1 2 3 $ git credential-manager uninstal..转载 2021-08-13 13:43:44 · 2018 阅读 · 0 评论 -
vs 后生成事件
XCOPY "$(ProjectDir)..\data\iniList\*.*" "$(TargetDir)*.*" /I /Y /SXCOPY "$(ProjectDir)..\data\NameList\*.*" "$(TargetDir)NameList\*.*" /I /Y /S原创 2020-11-17 11:39:03 · 192 阅读 · 0 评论 -
VS Visual studio 本地管理代码 git
新建项目看图一;为现有项目添加本地git管理看图二;转载 2020-08-08 16:12:21 · 469 阅读 · 0 评论 -
VS C# 中使用番茄助手
原创 2020-05-09 13:30:11 · 758 阅读 · 2 评论 -
windows下使用vs查看dll依赖关系
1、在vs的菜单-工具-命令行;2、cd到dll所在目录;3、输入命令:dumpbin /dependents myDll.dll;原创 2020-04-13 00:56:42 · 1434 阅读 · 0 评论 -
VC++ & MFC实现的优秀的开源项目
List of Best Open Souce projects written in VC++/MFC 1. 7-Zip (http://sourceforge.net/projects/sevenzip/) : 压缩软件。7-Zip is a file archiver with the high compression ratio. The program supports 7z,...转载 2020-01-27 17:06:34 · 913 阅读 · 0 评论 -
无法识别的标志 -FitObjData p2
我遇到这个问题的时候,是在使用lib的时候,原因是lib库的编译“平台工具集”不统一导致的。路径为:配置属性\常规\平台工具集。原创 2020-01-16 23:37:15 · 2453 阅读 · 0 评论 -
vs C++ 中定义调试时才执行的代码
#ifdef _DEBUG//todo#endif原创 2019-12-23 13:28:56 · 379 阅读 · 0 评论