summaryrefslogtreecommitdiff
path: root/src/.nuget
diff options
context:
space:
mode:
authorMike McLaughlin <mikem@microsoft.com>2019-06-20 14:08:55 -0700
committerJan Vorlicek <janvorli@microsoft.com>2019-06-20 23:08:55 +0200
commit6b9a3d3a87825b1a34bd8f114c9b181ce75b3b2e (patch)
tree5a7abae1508a7b0aaf70926c1618c8d4e682a9f5 /src/.nuget
parentec2a74e7649f1c0ecff32ce86724bf3ca80bfd46 (diff)
downloadcoreclr-6b9a3d3a87825b1a34bd8f114c9b181ce75b3b2e.tar.gz
coreclr-6b9a3d3a87825b1a34bd8f114c9b181ce75b3b2e.tar.bz2
coreclr-6b9a3d3a87825b1a34bd8f114c9b181ce75b3b2e.zip
Remove SOS and lldb plugin (#25220)
* Remove SOS and lldb plugin Issue: https://github.com/dotnet/coreclr/issues/24092
Diffstat (limited to 'src/.nuget')
-rw-r--r--src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.FreeBSD.Microsoft.NETCore.Runtime.CoreCLR.props7
-rw-r--r--src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Linux.Microsoft.NETCore.Runtime.CoreCLR.props8
-rw-r--r--src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.OSX.Microsoft.NETCore.Runtime.CoreCLR.props6
-rw-r--r--src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props12
4 files changed, 14 insertions, 19 deletions
diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.FreeBSD.Microsoft.NETCore.Runtime.CoreCLR.props b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.FreeBSD.Microsoft.NETCore.Runtime.CoreCLR.props
index fcf0d78a0b..3219da6648 100644
--- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.FreeBSD.Microsoft.NETCore.Runtime.CoreCLR.props
+++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.FreeBSD.Microsoft.NETCore.Runtime.CoreCLR.props
@@ -6,12 +6,11 @@
<NativeBinary Include="$(BinDir)libdbgshim.so" />
<NativeBinary Include="$(BinDir)libmscordaccore.so" />
<NativeBinary Include="$(BinDir)libmscordbi.so" />
- <NativeBinary Include="$(BinDir)libsos.so" />
- <NativeBinary Condition="'$(_PlatformDoesNotSupportSosPlugin)' != 'true'" Include="$(BinDir)libsosplugin.so" />
<NativeBinary Include="$(BinDir)System.Globalization.Native.so" />
- <NativeBinary Include="$(BinDir)sosdocsunix.txt" />
+ <File Include="$(BinDir)SOS_README.md">
+ <TargetPath>runtimes\$(PackageTargetRuntime)\native</TargetPath>
+ </File>
<CrossGenBinary Include="$(BinDir)System.Private.CoreLib.dll" />
- <ArchitectureSpecificLibFile Include="$(BinDir)SOS.NETCore.dll" />
<ArchitectureSpecificToolFile Include="$(BinDir)crossgen" />
<CrossArchitectureSpecificToolFile Condition="'$(HasCrossTargetComponents)' == 'true'" Include="$(BinDir)$(CrossTargetComponentFolder)\crossgen" />
</ItemGroup>
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 d74974ddd7..a046f0ba18 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
@@ -5,7 +5,6 @@
<_PlatformDoesNotSupportCreatedump Condition="'$(_runtimeOSFamily)' == 'tizen'">true</_PlatformDoesNotSupportCreatedump>
<_PlatformDoesNotSupportEventTrace Condition="'$(_runtimeOSFamily)' == 'tizen'">true</_PlatformDoesNotSupportEventTrace>
<_PlatformDoesNotSupportEventTrace Condition="'$(Platform)' == 'x86'">true</_PlatformDoesNotSupportEventTrace>
- <_PlatformDoesNotSupportSosPlugin Condition="'$(_runtimeOSFamily)' == 'android'">true</_PlatformDoesNotSupportSosPlugin>
</PropertyGroup>
<ItemGroup>
<NativeBinary Include="$(BinDir)libcoreclr.so" />
@@ -13,13 +12,12 @@
<NativeBinary Include="$(BinDir)libdbgshim.so" />
<NativeBinary Include="$(BinDir)libmscordaccore.so" />
<NativeBinary Include="$(BinDir)libmscordbi.so" />
- <NativeBinary Include="$(BinDir)libsos.so" />
- <NativeBinary Condition="'$(_PlatformDoesNotSupportSosPlugin)' != 'true'" Include="$(BinDir)libsosplugin.so" />
<NativeBinary Include="$(BinDir)System.Globalization.Native.so" />
- <NativeBinary Include="$(BinDir)sosdocsunix.txt" />
+ <File Include="$(BinDir)SOS_README.md">
+ <TargetPath>runtimes\$(PackageTargetRuntime)\native</TargetPath>
+ </File>
<NativeBinary Condition="'$(_PlatformDoesNotSupportCreatedump)' != 'true'" Include="$(BinDir)createdump" />
<CrossGenBinary Include="$(BinDir)System.Private.CoreLib.dll" />
- <ArchitectureSpecificLibFile Include="$(BinDir)SOS.NETCore.dll" />
<ArchitectureSpecificToolFile Include="$(BinDir)crossgen" />
<CrossArchitectureSpecificToolFile Condition="'$(HasCrossTargetComponents)' == 'true'" Include="$(BinDir)$(CrossTargetComponentFolder)\crossgen" />
</ItemGroup>
diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.OSX.Microsoft.NETCore.Runtime.CoreCLR.props b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.OSX.Microsoft.NETCore.Runtime.CoreCLR.props
index 9a641975ff..7fa9c74bf2 100644
--- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.OSX.Microsoft.NETCore.Runtime.CoreCLR.props
+++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.OSX.Microsoft.NETCore.Runtime.CoreCLR.props
@@ -5,11 +5,11 @@
<NativeBinary Include="$(BinDir)libdbgshim.dylib" />
<NativeBinary Include="$(BinDir)libmscordaccore.dylib" />
<NativeBinary Include="$(BinDir)libmscordbi.dylib" />
- <NativeBinary Include="$(BinDir)libsos.dylib" />
+ <File Include="$(BinDir)SOS_README.md">
+ <TargetPath>runtimes\$(PackageTargetRuntime)\native</TargetPath>
+ </File>
<NativeBinary Include="$(BinDir)System.Globalization.Native.dylib" />
- <NativeBinary Include="$(BinDir)sosdocsunix.txt" />
<CrossGenBinary Include="$(BinDir)System.Private.CoreLib.dll" />
- <ArchitectureSpecificLibFile Include="$(BinDir)SOS.NETCore.dll" />
<ArchitectureSpecificToolFile Include="$(BinDir)crossgen" />
</ItemGroup>
</Project>
diff --git a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
index 58912b85de..3e006903d4 100644
--- a/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
+++ b/src/.nuget/Microsoft.NETCore.Runtime.CoreCLR/runtime.Windows_NT.Microsoft.NETCore.Runtime.CoreCLR.props
@@ -18,15 +18,15 @@
<NativeBinary Include="$(BinDir)mscordbi.dll" />
<NativeBinary Include="$(BinDir)mscorrc.debug.dll" />
<NativeBinary Include="$(BinDir)mscorrc.dll" />
- <NativeBinary Include="$(BinDir)sos.dll" />
+ <File Include="$(BinDir)SOS_README.md">
+ <TargetPath>runtimes\$(PackageTargetRuntime)\native</TargetPath>
+ </File>
<NativeBinary Include="$(BinDir)Redist\ucrt\DLLs\$(BuildArch)\*.dll" Condition="'$(BuildType)'=='Release' AND '$(BuildArch)' != 'arm64'" />
<CrossGenBinary Include="$(BinDir)System.Private.CoreLib.dll" />
- <ArchitectureSpecificLibFile Include="$(BinDir)SOS.NETCore.dll" />
<ArchitectureSpecificToolFile Include="$(BinDir)crossgen.exe" />
<CrossArchitectureSpecificToolFile Include="$(BinDir)$(CrossTargetComponentFolder)\crossgen.exe" />
<CrossArchitectureSpecificToolFile Include="$(BinDir)$(CrossTargetComponentFolder)\mscordaccore.dll" />
<CrossArchitectureSpecificToolFile Include="$(BinDir)$(CrossTargetComponentFolder)\mscordbi.dll" />
- <CrossArchitectureSpecificToolFile Include="$(BinDir)$(CrossTargetComponentFolder)\sos.dll" />
<!-- prevent accidental inclusion in AOT projects. -->
<File Include="$(PlaceholderFile)">
@@ -37,12 +37,10 @@
</File>
<!-- Create long-name files by including the same files again with a different target path. -->
- <LongNameFile Include="$(BinDir)mscordaccore.dll;
- $(BinDir)sos.dll">
+ <LongNameFile Include="$(BinDir)mscordaccore.dll">
<TargetPath>runtimes\$(PackageTargetRuntime)\native\%(FileName)$(LongNameSuffix)%(Extension)</TargetPath>
</LongNameFile>
- <LongNameFile Include="$(BinDir)$(CrossTargetComponentFolder)\mscordaccore.dll;
- $(BinDir)$(CrossTargetComponentFolder)\sos.dll"
+ <LongNameFile Include="$(BinDir)$(CrossTargetComponentFolder)\mscordaccore.dll"
Condition="'$(HasCrossTargetComponents)'=='true'">
<TargetPath>tools\$(CrossTargetComponentFolder)_$(Platform)\%(FileName)$(CrossTargetLongNameSuffix)%(Extension)</TargetPath>
</LongNameFile>