0

我正在尝试让协议缓冲区与该 protobuf-csharp-port 一起使用。我想通过添加 .proto 文件并使用自定义工具进行自动构建,然后获取 .cs 文件。对于自定义工具,我被指示从 csharp-test 包中获取 CmdTool 并注册它。

那行得通,但是然后运行我得到的工具

System.InvalidOperationException: Before a project can be instantiated, Engine.BinPath 
must be set to the location on disk where MSBuild is installed. This is used to evaluate 
$(MSBuildBinPath).
at Microsoft.Build.Shared.ErrorUtilities.ThrowInvalidOperation(String resourceName, Object[] args)
at Microsoft.Build.BuildEngine.Project..ctor(Engine engine)
at CSharpTest.Net.CustomTool.VsInterop.CmdTool.GenerateCode(String defaultNamespace, 
  String inputFileName) in e:\Projects\Library\Tools\CmdTool\VsInterop\CustomTool.cs:line 50

我已经脱离了我的元素,似乎找不到任何线索该做什么,或者如何让 $(MSBuildBinPath) 或 Engine.BinPath 发生。

或者,即使有一种不太复杂的方法可以让 Progen 从 F7 运行,那也很好。

4

1 回答 1

1

我在 Visual Studio 2008 中遇到了完全相同的问题。我与该工具的作者合作以获得解决方案,他的步骤对我有用。

  1. 下载 Nuget 包“Csharptest.net.tools”

  2. 运行“tools/net40/CmdTool.exe注册”

  3. 重启 VStudio

于 2013-08-30T23:24:21.737 回答