-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
32 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,18 @@ | ||
<Project> | ||
<Import Project="$(MSBuildThisFileDirectory)..\..\Directory.Build.props"/> | ||
|
||
<PropertyGroup> | ||
<IsShipping>true</IsShipping> | ||
<NoPackageAnalysis>true</NoPackageAnalysis> | ||
<PackageDescription>Internal implementation package not meant for direct consumption. Please do not reference directly.</PackageDescription> | ||
<ExeSuffix Condition="$(PackageRID.StartsWith('win'))">.exe</ExeSuffix> | ||
<OsFolderName Condition="$(PackageRID.StartsWith('win'))">Windows_NT</OsFolderName> | ||
<OsFolderName Condition="$(PackageRID.StartsWith('linux-musl'))">Linux-musl</OsFolderName> | ||
<OsFolderName Condition="$(PackageRID.StartsWith('linux')) and '$(OsFolderName)' == ''">Linux</OsFolderName> | ||
<OsFolderName Condition="$(PackageRID.StartsWith('osx'))">OSX</OsFolderName> | ||
</PropertyGroup> | ||
|
||
<Choose> | ||
<When Condition="$(OutputRid.StartsWith('win'))"> | ||
<PropertyGroup> | ||
<OsFolderName>Windows_NT</OsFolderName> | ||
<ExeSuffix>.exe</ExeSuffix> | ||
<LibSuffix>.dll</LibSuffix> | ||
<StaticLibSuffix>.lib</StaticLibSuffix> | ||
<SymbolsSuffix>.pdb</SymbolsSuffix> | ||
</PropertyGroup> | ||
</When> | ||
<When Condition="$(OutputRid.StartsWith('osx'))"> | ||
<PropertyGroup> | ||
<OsFolderName>OSX</OsFolderName> | ||
<LibPrefix>lib</LibPrefix> | ||
<LibSuffix>.dylib</LibSuffix> | ||
<StaticLibSuffix>.a</StaticLibSuffix> | ||
<SymbolsSuffix>.dwarf</SymbolsSuffix> | ||
</PropertyGroup> | ||
</When> | ||
<Otherwise> | ||
<PropertyGroup> | ||
<OsFolderName>Linux</OsFolderName> | ||
<OsFolderName Condition="$(OutputRid.StartsWith('linux-musl'))">Linux-musl</OsFolderName> | ||
<LibPrefix>lib</LibPrefix> | ||
<LibSuffix>.so</LibSuffix> | ||
<StaticLibSuffix>.a</StaticLibSuffix> | ||
<SymbolsSuffix>.dbg</SymbolsSuffix> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
|
||
<PropertyGroup> | ||
<NativeBinDir>$(ArtifactsBinDir)\$(OsFolderName).$(PackageArch).$(Configuration)\</NativeBinDir> | ||
<NativeBinDir>$([MSBuild]::NormalizeDirectory('$(ArtifactsBinDir)', '$(OsFolderName).$(PackageArch).$(Configuration)'))</NativeBinDir> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/dbgshim/pkg/Microsoft.Diagnostics.DbgShim.linux-musl-arm64.proj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/dbgshim/pkg/Microsoft.Diagnostics.DbgShim.linux-musl-x64.proj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters