From 93fd5fdf523df54945f36a1346e27dedbe1a2a4d Mon Sep 17 00:00:00 2001 From: Hyeongseok Oh Date: Thu, 6 Apr 2017 00:15:22 +0900 Subject: [PATCH] [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 --- .../runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 - + -- 2.7.4