From: Hyeongseok Oh Date: Wed, 5 Apr 2017 15:15:22 +0000 (+0900) Subject: [x86/Linux] Fix build error in nuget packaging (#10691) X-Git-Tag: accepted/tizen/base/20180629.140029~1573 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=93fd5fdf523df54945f36a1346e27dedbe1a2a4d;p=platform%2Fupstream%2Fcoreclr.git [x86/Linux] Fix build error in nuget packaging (#10691) * [x86/Linux] Fix build error in nuget packaging Fix build error in nuget packaging Modify condition for excluding libcoreclrtraceptprovider.so * Update runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props Fix typo --- diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props index 85e9f5e..db8b031 100644 --- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props +++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props @@ -3,10 +3,14 @@ <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'arm'">true <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'armel'">true + <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'x86'">true + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'arm'">true + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'armel'">true + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'x86'">true - +