Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Refactor coreclr packaging #9263

Merged
merged 22 commits into from
Feb 15, 2017
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1359351
Only consider /etc/os-release for distro info
ellismg Dec 12, 2016
9497910
Refactor coreclr packaging
chcosta Feb 1, 2017
b7bd7ff
Default runtimeos, remove unused variables from jit pkgproj
chcosta Feb 1, 2017
91dafc4
Cleanup jit package, remove redundant includes
chcosta Feb 1, 2017
12a37e3
Use __distrorid, distrorid is not set on osx
chcosta Feb 1, 2017
f20878d
add arm packageplatform for ubuntu 14.04 and 16.04
chcosta Feb 1, 2017
9d8b1f4
Add missing dependency to ilasm / ildasm packages, parse distrorid
chcosta Feb 1, 2017
ef57f44
Break projectreference traversal when building a lineup package
chcosta Feb 2, 2017
5bfce2c
Fix index logic bug
chcosta Feb 2, 2017
b93cbfe
Update usage info
chcosta Feb 2, 2017
8ce3fab
default derivedpackagetargetosgroup to __buildos
chcosta Feb 2, 2017
458a972
tweak derivedpackagetargetosgroup definition
chcosta Feb 2, 2017
6458745
Respond to PR feedback
chcosta Feb 14, 2017
cdb4728
Merge branch 'master' of https://github.com/dotnet/coreclr into refac…
chcosta Feb 14, 2017
7f2137c
Always specify a default for derivedpackagetargetosgroup
chcosta Feb 14, 2017
03a5ce1
Default distrorid on osx
chcosta Feb 14, 2017
409ba7e
Fix typo
chcosta Feb 14, 2017
f361873
Add arch to distrorid
chcosta Feb 14, 2017
8dcf966
Remove PackagePlatforms property
chcosta Feb 14, 2017
6a54a44
Exclude binaries not built on armel
chcosta Feb 15, 2017
5623099
change package_platform to platform
chcosta Feb 15, 2017
3ec9032
Rename dir.targets -> dir.traversal.targets
chcosta Feb 15, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix typo
  • Loading branch information
chcosta committed Feb 14, 2017
commit 409ba7ed064401a795dd4546052a11b00fa9b738
2 changes: 1 addition & 1 deletion src/.nuget/dir.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<PropertyGroup>
<!-- Distro rid is passed as runtimeos-arch-->
<_parseDistroRid>$(__DistroRid)</_parseDistroRid>
<_parseDistroRid Condition="'$(_parseDistroRid)' == '' and '$(__BuildOS)' == 'OSX'">osx.10.10<_parseDistroRid>
<_parseDistroRid Condition="'$(_parseDistroRid)' == '' and '$(__BuildOS)' == 'OSX'">osx.10.10</_parseDistroRid>
<_distroRidIndex>$(_parseDistroRid.IndexOfAny("-"))</_distroRidIndex>
<_archRidIndex>$([MSBuild]::Add($(_distroRidIndex), 1))</_archRidIndex>
<OSRid Condition="'$(OSRid)' == '' and '$(_distroRidIndex)' != '-1'">$(_parseDistroRid.SubString(0, $(_distroRidIndex)))</OSRid>
Expand Down