You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert(dotnetVersion !=null&&!dotnetVersion.trim.isEmpty, "you must define the dotnet version via a jvm system property, e.g. via `-Ddotnet-version=1.0.0`")
41
41
println(s"building and publishing csharp proto version $dotnetVersion")
@@ -74,7 +74,7 @@ installProtoc := {
74
74
75
75
lazyvalgenerateGoBindings= taskKey[File]("generate go proto bindings (doesn't publish them anywhere)")
76
76
generateGoBindings := {
77
-
(Projects.codepropertygraph/generateProtobuf).value //ensures this is being run beforehand
77
+
valdependsOn=(Projects.codepropertygraph/generateProtobuf).value //ensures this is being run beforehand
78
78
valprotocBinary= installProtoc.value
79
79
// protoc requires a relative path...
80
80
valprotoFile="codepropertygraph/target/cpg.proto"
@@ -88,7 +88,7 @@ generateGoBindings := {
88
88
89
89
lazyvalgeneratePythonBindings= taskKey[File]("generate Python proto bindings")
90
90
generatePythonBindings := {
91
-
(Projects.codepropertygraph/generateProtobuf).value //ensures this is being run beforehand
91
+
valdependsOn=(Projects.codepropertygraph/generateProtobuf).value //ensures this is being run beforehand
0 commit comments