hi everyone i try to execute with msbuild multiple .proto files in the same 
command

here's my code it is pretty simple but I can't see what I'm doing wrong

Thanks


<Target Name = "Main">
      
                 <Message Text="Generating DTO  for c++"/>
      
     <ItemGroup>
        <ProtoFiles
          Include="test1.proto"/>
        <ProtoFiles
          Include="test2.proto"/>
     </ItemGroup>


      <Exec Command="$(THISPATH)\protobuff\protoc.exe --cpp_out=. 
@(ProtoFiles)"/>   


    

       />

                </Target>

-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en.

Reply via email to