Skip to content

Commit

Permalink
[bug] Use Identity instead of FullPath on _CompressObjCBindingNativeF…
Browse files Browse the repository at this point in the history
…rameworkResources target (#2498)

Using the FullPath property breaks the build from Windows, since the metadata will contain a Windows path.

Partial fix for Bug #51759 - Getting build error for iOS sample 'Simpleapp-with-framework'

https://bugzilla.xamarin.com/show_bug.cgi?id=51759
  • Loading branch information
emaf authored and spouliot committed Aug 16, 2017
1 parent be6d27d commit 35e1985
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Copyright (C) 2013-2016 Xamarin Inc. All rights reserved.
Symlinks="true"
Sources="%(ObjCBindingNativeFramework.Identity)"
OutputFile="$(IntermediateOutputPath)%(ObjCBindingNativeFramework.Filename)%(ObjCBindingNativeFramework.Extension)"
WorkingDirectory="%(ObjCBindingNativeFramework.FullPath)" >
WorkingDirectory="%(ObjCBindingNativeFramework.Identity)" >
</Zip>

<CreateItem Include="$(IntermediateOutputPath)%(ObjCBindingNativeFramework.Filename)%(ObjCBindingNativeFramework.Extension)">
Expand Down

0 comments on commit 35e1985

Please sign in to comment.