Skip to content

Commit 8c98489

Browse files
committed
对下载器进行签名
1 parent 86b56a6 commit 8c98489

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

docs/tuto_D_make_release.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,8 @@ git push
241241

242242
### [发布到微软商城](https://blog.csdn.net/csdn_ad986ad/article/details/135417415)
243243

244+
[**对hutb_downloader.exe进行签名**](https://blog.csdn.net/dounick/article/details/105643285)
245+
244246
1. 打开操作系统的 [开发者选项](https://blog.csdn.net/2301_77171572/article/details/146528815)
245247

246248
2. 双击安装`.pfx`证书,必须放入`本地计算机`(而不是`当前用户`)的“受信任的根证书颁发机构”,然后选择`将所有的证书都放入下列存储(P)`->`受信任的根证书颁发机构`
@@ -256,7 +258,8 @@ C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64
256258
```
257259

258260

259-
[使用MSIX Packaging Tool工具修改msix程序包](https://www.cnblogs.com/oboth-zl/p/17638705.html)
261+
* [自签名](https://zhuanlan.zhihu.com/p/29736004658)
262+
* [使用MSIX Packaging Tool工具修改msix程序包](https://www.cnblogs.com/oboth-zl/p/17638705.html)
260263

261264

262265
### 自定义最小化 git

docs/tuto_D_windows_debug.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373

7474
CarlaUE4.sln配置为`Debug Editor`时编译报错:
7575

76-
* 错误 LNK2038 检测到“_ITERATOR_DEBUG_LEVEL(迭代的调试级别)”的不匹配项: 值“2(当前工程为Debug)”不匹配值“0(Release)”:引用了 release 的库
76+
* 错误 LNK2038 检测到“_ITERATOR_DEBUG_LEVEL(迭代的调试级别)”的不匹配项: 值“2(链接的库为Debug)”不匹配值“0(当前工程为Release)”:引用了 release 的库
7777
* LNK2038 检测到“RuntimeLibrary”的不匹配项: 值“MDd_DynamicDebug”不匹配值“MD_DynamicRelease”(SharedPCH.UnrealEd.h.obj 中) ;项目为 CarlaUE4; 文件为:`Unreal\CarlaUE4\Intermediate\ProjectFiles\rpc.lib(format.obj)` (引用的需要是 debug,但SharedPCH.UnrealEd.h设置成 release)
7878
```text
7979
LNK2038 mismatch detected for 'RuntimeLibrary':
@@ -83,12 +83,16 @@ value 'MD_DynamicRelease' 项目对应的,当前的lib,一般都要和文件
8383
```
8484
即:Release 库使用了 Debug 的库。
8585

86+
Examples\CppClient\out\build\x64-Debug\Detour-d.lib(DetourNavMesh.obj) : error LNK2038: 检测到“_ITERATOR_DEBUG_LEVEL”的不匹配项: 值“0”(链接的库位release)不匹配值“2”(当前工程为debug)(basic_usage.cpp.obj 中)
87+
8688

8789
解决:需要将虚幻的 SharedPCH.UnrealEd.h.obj [编译为 debug 模式](https://blog.csdn.net/mrbaolong/article/details/114947090)
8890
PCH (PreCompiled Headers) 是一种宏管理方法,
8991

9092
`\MDd` :Multi-threaded Debug DLL。
9193

94+
通过CppClient运行的客户端连接CarlaUE4.exe会显示`log_warning()`(LibCarla/source/carla/trafficmanager/InMemoryMap.cpp)的警告信息。
95+
9296

9397
1.打开`x64 Native Tools Command for VS 2019`
9498

0 commit comments

Comments
 (0)