diff options
author | Hyeongseok Oh <hseok82.oh@samsung.com> | 2017-04-06 00:15:22 +0900 |
---|---|---|
committer | Gaurav Khanna <gkhanna@microsoft.com> | 2017-04-05 08:15:22 -0700 |
commit | 93fd5fdf523df54945f36a1346e27dedbe1a2a4d (patch) | |
tree | a0cd36567e1561c0efd4de88f984851c55e49b17 /src/.nuget | |
parent | 094a58c306543adca6f71d4ca8027e64474373af (diff) | |
download | coreclr-93fd5fdf523df54945f36a1346e27dedbe1a2a4d.tar.gz coreclr-93fd5fdf523df54945f36a1346e27dedbe1a2a4d.tar.bz2 coreclr-93fd5fdf523df54945f36a1346e27dedbe1a2a4d.zip |
[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
Diffstat (limited to 'src/.nuget')
-rw-r--r-- | src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props | 6 |
1 files changed, 5 insertions, 1 deletions
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 85e9f5e793..db8b03173b 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 @@ <PropertyGroup> <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'arm'">true</_PlatformDoesNotSupportNiFiles> <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'armel'">true</_PlatformDoesNotSupportNiFiles> + <_PlatformDoesNotSupportNiFiles Condition="'$(Platform)' == 'x86'">true</_PlatformDoesNotSupportNiFiles> + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'arm'">true</_PlatformDoesNotSupportEventTrace> + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'armel'">true</_PlatformDoesNotSupportEventTrace> + <_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'x86'">true</_PlatformDoesNotSupportEventTrace> </PropertyGroup> <ItemGroup> <NativeBinary Include="$(BinDir)libcoreclr.so" /> - <NativeBinary Condition="'$(_PlatformDoesNotSupportNiFiles)' != 'true'" Include="$(BinDir)libcoreclrtraceptprovider.so" /> + <NativeBinary Condition="'$(_PlatformDoesNotSupportEventTrace)' != 'true'" Include="$(BinDir)libcoreclrtraceptprovider.so" /> <NativeBinary Include="$(BinDir)libdbgshim.so" /> <NativeBinary Include="$(BinDir)libmscordaccore.so" /> <NativeBinary Include="$(BinDir)libmscordbi.so" /> |