Skip to content

Commit

Permalink
Use forward slash instead of backslash in nuspec file (#11449)
Browse files Browse the repository at this point in the history
We are going to pack this on a linux machine now, so we need to use forward slashes.

Closes #11449

COPYBARA_INTEGRATE_REVIEW=#11449 from protocolbuffers:deannagarcia-patch-16 24a4ecf
PiperOrigin-RevId: 499512069
  • Loading branch information
deannagarcia authored and copybara-github committed Jan 4, 2023
1 parent c9c0a1c commit 724250d
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions csharp/Google.Protobuf.Tools.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@
<tags>Protocol Buffers Binary Serialization Format Google proto proto3</tags>
</metadata>
<files>
<file src="protoc\windows_x86\protoc.exe" target="tools\windows_x86\protoc.exe"/>
<file src="protoc\windows_x64\protoc.exe" target="tools\windows_x64\protoc.exe"/>
<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="protoc/windows_x86/protoc.exe" target="tools/windows_x86/protoc.exe"/>
<file src="protoc/windows_x64/protoc.exe" target="tools/windows_x64/protoc.exe"/>
<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="Google.Protobuf.Tools.targets" target="buildCrossTargeting"/>
<file src="Google.Protobuf.Tools.targets" target="build"/>
</files>
Expand Down

0 comments on commit 724250d

Please sign in to comment.