创建自定义 MSBuild 任务时如何从 C# 代码中获取当前项目目录?
- 作者: 北京内涵帝
- 来源: 51数据库
- 2023-02-13
问题描述
我不想运行硬编码路径的外部程序,而是想要获取当前的项目目录.我正在使用自定义任务中的进程调用外部程序.
Instead of running an external program with its path hardcoded, I would like to get the current Project Dir. I'm calling an external program using a process in the custom task.
我该怎么做?AppDomain.CurrentDomain.BaseDirectory 只是给了我 VS 2008 的位置.
How would I do that? AppDomain.CurrentDomain.BaseDirectory just gives me the location of VS 2008.
推荐答案
你可以试试这两种方法之一.
You can try one of this two methods.
string startupPath = System.IO.Directory.GetCurrentDirectory(); string startupPath = Environment.CurrentDirectory;
告诉我,你觉得哪个更好
Tell me, which one seems to you better
推荐阅读
- C#通过fleck实现wss协议的WebSocket多人Web实时聊天(附源码)
- 团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
- 使用 MSBuild.exe 在发布模式下构建 C# 解决方案
- 当我发布 Web 应用程序时,AfterPublish 脚本不运行
- 构建时 T4 转换的产品仅在下一个构建中使用
- ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
- 新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
- 如何将条件编译符号(DefineConstants)传递给 msbuild
- MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
- NuGet 包还原找不到包,没有源
热点文章

团队城市未满足要求:MSBuildTools12.0_x86_Path 存在
0

使用 MSBuild.exe 在发布模式下构建 C# 解决方案
0

当我发布 Web 应用程序时,AfterPublish 脚本不运行
0

构建时 T4 转换的产品仅在下一个构建中使用
0

ASP.NET Core Application (.NET Framework) for Windows x64 only error in project.assets.json
0

新的 .csproj 格式 - 如何将整个目录指定为“链接文件"到子目录?
0

如何将条件编译符号(DefineConstants)传递给 msbuild
0

MSBuild 支持 Visual Studio 2017 RTM 中的 T4 模板
0

NuGet 包还原找不到包,没有源
0

使用 C# 6.0 功能运行 TFS 构建
0