Change nuspec configuration's proto file path.

The ../ was causing an error in how the targets were being copied over. Since we have to copy the files anyway, it doesn't matter where we expect the files.

PiperOrigin-RevId: 503259682
pull/11602/head
Deanna Garcia 2 years ago committed by Copybara-Service
parent f0c7559594
commit 196193d65c
  1. 22
      csharp/Google.Protobuf.Tools.nuspec

@ -21,17 +21,17 @@
<file src="protoc/linux_x86/protoc" target="tools/linux_x86/protoc"/> <file src="protoc/linux_x86/protoc" target="tools/linux_x86/protoc"/>
<file src="protoc/linux_x64/protoc" target="tools/linux_x64/protoc"/> <file src="protoc/linux_x64/protoc" target="tools/linux_x64/protoc"/>
<file src="protoc/macosx_x64/protoc" target="tools/macosx_x64/protoc"/> <file src="protoc/macosx_x64/protoc" target="tools/macosx_x64/protoc"/>
<file src="../src/google/protobuf/any.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/any.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/api.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/api.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/descriptor.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/descriptor.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/duration.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/duration.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/empty.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/empty.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/field_mask.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/field_mask.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/source_context.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/source_context.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/struct.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/struct.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/timestamp.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/timestamp.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/type.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/type.proto" target="tools/google/protobuf"/>
<file src="../src/google/protobuf/wrappers.proto" target="tools/google/protobuf"/> <file src="src/google/protobuf/wrappers.proto" target="tools/google/protobuf"/>
<file src="Google.Protobuf.Tools.targets" target="buildCrossTargeting"/> <file src="Google.Protobuf.Tools.targets" target="buildCrossTargeting"/>
<file src="Google.Protobuf.Tools.targets" target="build"/> <file src="Google.Protobuf.Tools.targets" target="build"/>
</files> </files>

Loading…
Cancel
Save