将.NETCore 3.1依赖dll放入additionalProbingPaths
2021/12/24 23:07:52
本文主要是介绍将.NETCore 3.1依赖dll放入additionalProbingPaths,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
修改 .NET Core 3.1 项目 依赖dll加载路径
1. 修改runtimeconfig.json
添加runtimeconfig.template.json
依赖dll放入的文件夹名称
{ "additionalProbingPaths": [ "lib" ] }
2.根据deps.json
移动dll的位置
使用python脚本
moveDeps.py
点击查看代码
import json import os target_dir = "" target_dlls = [] def loadRuntimeConfigJson(): with open("runtimeconfig.template.json") as f: temp = json.load(f) global target_dir if type(temp["additionalProbingPaths"]) == list: target_dir = temp["additionalProbingPaths"][0] if type(temp["additionalProbingPaths"]) == str: target_dir = temp["additionalProbingPaths"] def loadDepJson(): dep_name = None for file in os.listdir(): if file.endswith(".deps.json"): dep_name = file dep={} if dep_name is not None: with open(dep_name) as f: dep = json.load(f) targets = dict(dict(dep["targets"]).popitem()[1]) libraries = dict(dict(dep["libraries"])) global target_dlls for k, v in targets.items(): if not v.get("compileOnly") and libraries[k].get("type") == "package": try: t = targets[k]["runtime"].popitem() target_path = os.path.join( os.path.join(target_dir, libraries[k]["path"]), t[0]) target_dlls.append((os.path.split(t[0])[-1], target_path)) except: pass def MoveDlls(): global target_dlls for i, j in target_dlls: dir = os.path.dirname(j) if not os.path.exists(dir): os.makedirs(dir) os.rename(i, j) if __name__ == '__main__': loadRuntimeConfigJson() loadDepJson() MoveDlls()
发布完成后将py文件放入发布后的文件夹使用python3 moveDeps.py
就会根据dep.json文件将配置移动到lib文件中
相关资料
https://stackoverflow.com/questions/48650348/additionalprobingpaths-not-respected-after-dotnet-publish
这篇关于将.NETCore 3.1依赖dll放入additionalProbingPaths的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#