Skip to content

Commit

Permalink
Change nuspec configuration's proto file path.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
deannagarcia authored and copybara-github committed Jan 19, 2023
1 parent f0c7559 commit 196193d
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions csharp/Google.Protobuf.Tools.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@
<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/macosx_x64/protoc" target="tools/macosx_x64/protoc"/>
<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/descriptor.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/field_mask.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/timestamp.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/any.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/duration.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/source_context.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/type.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="build"/>
</files>
Expand Down

0 comments on commit 196193d

Please sign in to comment.