gpt4 book ai didi

c# - dotnet run --project 不将项目路径作为工作目录

转载 作者:行者123 更新时间:2023-12-04 13:57:17 26 4
gpt4 key购买 nike

当使用 .NET 命令运行我存储在网络驱动器上的控制台应用程序时,它会将工作目录视为调用它的位置而不是项目路径。
dotnet run --project "\\network.drive\path\example\project"
我得到的输出如下:

WORKING DIRECTORY: C:\Windows\system32
Current Environment: DEV
Current Root URL: <API_URL>
Current Excel File:

Unhandled Exception: System.ArgumentNullException: Value cannot be null.
Parameter name: fileName
at System.IO.FileInfo..ctor(String originalPath, String fullPath, String fileName, Boolean isNormalized)
at System.IO.FileInfo..ctor(String fileName)
at MyProject.Reader.ReadAgentData(Int32 sheetIndex) in \\network.drive\path\example\project\Reader.cs:line 68
at MyProject.Program.Main(String[] args) in \\network.drive\path\example\project\Program.cs:line 119

错误是 Excel 文件变量是一个空字符串。由于工作目录不是项目的路径,而是 C:\Windows\system32它找不到从中提取信息的 appsettings.json 文件。

奇怪的是,使用命令 dotnet watch --project "\\network.drive\path\example\project" run导致进程正确运行,它具有正确的工作目录并读取 appsettings.json 文件没有问题,但显然它必须等待文件更改(监视的目的)。

使用 dotnet run --project 时,如何让我的应用程序将工作目录识别为项目文件夹的根目录?? (要清楚,除非我可以让它自动结束,否则我不想使用 watch )

最佳答案

从项目的文件夹运行 dontet。
因为 appsettings.json 和 ssh 证书是相对于 executiion 文件夹的。
不管 System.Reflection.Assembly.GetExecutingAssembly().Location

关于c# - dotnet run --project <PATH> 不将项目路径作为工作目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59829037/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com