在预构建中生成代码的问题

时间:2019-04-11 22:11:17

标签: c# python

对于我的项目,我需要为GRPC自动生成的代码。我使用.bat / .sh文件生成此代码。

但是当我在预构建中生成代码时,代码失败,因为其中包含错误。

然后所有错误都显示为op,但很快就会消失,因为现在它正在查找生成的代码并且没有错误。

我尝试使用脚本的名称作为prebuild命令运行脚本,其中,构建确定脚本的扩展名。

我也尝试从python运行命令,甚至在生成完成后添加睡眠,但是可惜没有任何作用。

Visual Studio中的预构建版本:

python generate.py

python脚本:

import sys
import os
import time
print("Working dir: " + os.getcwd())
if("win" in sys.platform):
    os.system('generate.bat')
else:
    os.system("bash \"" + os.path.dirname(os.path.realpath(__file__)) + '/generate.sh' + "\"")
print("done installing")
time.sleep(5)
print("done finalising")

构建输出:

1>done installing
1>done finalising
1>CSharp\TimelineEvents.cs(18,32,18,48): error CS0246: The type or namespace name 'PayloadOneofCase' could not be found (are you missing a using directive or an assembly reference?)
1>CSharp\FrontendEndpointGrpc.cs(28,31,28,51): error CS0246: The type or namespace name 'RegisterFileResponse' could not be found (are you missing a using directive or an assembly reference?)
1>Done building project "Protocol.csproj" -- FAILED.

我希望构建会等待预构建,但事实并非如此,因为当您第一次运行generate时构建会失败,但是当我再次构建它时,它将运行得很好

1 个答案:

答案 0 :(得分:1)

我通过更改项目文件来解决此问题:

  <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
    <Exec Command="python generate.py" />

对此:

  <Target Name="Generate" BeforeTargets="BeforeBuild">
    <Message Text="Generating GRPC code" />
    <Exec Command="python generate.py" />
    <ItemGroup>
      <Compile Include="CSharp\**\*.cs" />
    </ItemGroup>

这为我解决了问题