summaryrefslogtreecommitdiff
path: root/dir.props
AgeCommit message (Collapse)AuthorFilesLines
2018-04-16Merge commit 'master' into release/2.1Russ Keldorph1-1/+1
2018-03-31[Arm64] Add x64_arm64 crossgen to tools packageSteve MacLean1-1/+1
2018-03-17Merge commit 'cea438a8e885cc11f96671367bebf23137f45a5a' into release/2.1Russ Keldorph1-0/+1
2018-03-14Include Linux/cross-arch components into NuGet packages (#16859)Egor Chesakov1-0/+1
* Add __DoCrossArchBuild settings to config.json * HasCrossTargetComponents computes to 'true' on Linux when __DoCrossArchBuild is 1 in dir.props * Include cross-architecture libclrjit.so crossgen into NuGet props files when HasCrossTargetComponents is 'true' * Pass $__DoCrossArchBuild to run.sh when generating NuGet packages in build.sh
2018-01-24Disable the default interface methods featureMichal Strehovský1-1/+1
This feature is not shipping in 2.1.
2017-12-05Remove unwanted changesMichal Strehovský1-1/+0
2017-12-05Put default interfaces behind a define (#15358)Michal Strehovský1-0/+5
This is needed so that we can turn default interfaces off in release branches. I can't find a central location where the PRERELEASE flag could be defined because native and managed builds seem to be completely disconnected. To limit the risk of only flipping the flag in one build type, I'm adding a test that verifies being able to load an interface with default methods matches what RuntimeFeature says.
2017-11-02Merge branch 'master' into master-mergeMichal Strehovský1-6/+13
2017-10-30Implement auto dependency flow Repo API (#14518)Wes Haggard1-2/+2
2017-10-30Remove coreclr patches from source-build repoWes Haggard1-2/+3
Updates the branch to include patches that were applied in source-build: 0001-Respect-NUGET_PACKAGES-if-it-is-set.patch 0002-Unify-CLI-and-BuildTools-Versions.patch 0003-Add-clear-to-NuGet.config.patch 0004-PATCH-Use-clang-3.9-by-default.patch
2017-10-27Enable Portable Pdb generation (#14721)Vance Morrison1-2/+0
When https://github.com/dotnet/corefx/pull/24025 goes through to change coreFX over to use portable PDBs we want to do the same for System.private.Corelib.pdb in CoreCLR. This change does this.
2017-10-10Turn on source link support (#14399)Vance Morrison1-0/+8
* Use Portable PDBs and turn on SourceLink This makes us uniform. Allows VSCode (which does not suport MSPdbs) use on Windows. * Allow DebugType to be overridden (on the command line) * Turn off portable PDB support for now
2017-10-03Update Buildtools and Roslyn (#14228)Jose Perez Rodriguez1-2/+2
* Update Buildtools and Roslyn * Fixing importing of the roslyn files on msbuild 14.0 * Correctly looking for the latest VS Installation
2017-09-29Merge branch 'master' into merge_masterDavid Wrighton1-6/+6
2017-09-18Correct typos in reporoot/dir.propsJacek Blaszczynski1-6/+6
2017-09-13Merge branch 'master' into update_from_masterDavid Wrighton1-11/+8
2017-09-09Enable auto-update for PGO data (#13883)Daniel Podder1-6/+0
Move PgoDataPackageVersion into dependencies.props, which enables auto-update functionality. Also, update optdata version to 20170908-1805.
2017-08-31Update optdata to version 20170830-0123 (#13717)Daniel Podder1-1/+1
2017-08-28Fix dir.props BuildVersionFile overrideDavis Goodin1-4/+5
The override needs to be before the Build.Common.props import, because BuildVersion.targets is in Build.Common.props and it's what's responsible for importing BuildVersionFile if it exists.
2017-08-22Disable default BuildNumberMajorwtgodbe1-1/+0
2017-08-18Update optdata in master to version 20170817-0120Michelle McDaniel1-1/+1
2017-08-18Revert "Update optdata in master to version 20170817-0120"Michelle McDaniel1-1/+1
This reverts commit 694eb48ae21ae79ca745fa3448be87d144ff912d.
2017-08-18Update optdata in master to version 20170817-0120Michelle McDaniel1-1/+1
2017-08-14Add full URL to the FileVersion information created a build time (#13352)Vance Morrison1-1/+4
* Tag dlls with the URL of the github commit * Fix name of BuildVersion file for non-official builds This fix does something very safe (only overrides the name of the buildVersionFile with a name from the OfficialBuildId variable if that variable is non-empty. This is importnat because otherwise is that the override ALWAYS kicks in and sometimes corrupts the name, which has the effect of throwning the information in the BuildVersionFile (namely the version number) out * Update to latest build tools.
2017-07-19Enable official builds from dev/defaultintfJC Aguilera1-0/+1
Updating the PreReleaseLabel name so we get official Default Interface's builds.
2017-07-19Fix errors in MSBuild prperties initialization in ↵Jacek Blaszczynski1-1/+2
System.Private.CoreLib.csproj (#12356) Fixes issue #12355 Project System.Private.CoreLib.csproj imports directly Microsoft.Net.Compilers.props at line# 4 before including dir.props from repo root. $(RepoRoot)/dir.props imports Microsoft.Net.Compilers.props at line# 186. As a result of this sequence of duplicated project imports and lack of safeguards against importing the same .props file twice MSBuild reports that Microsoft.Net.Compilers.props file is included twice with warning that second import will be ignored - in this case not evaluated. This results in initialization of Microsoft.Net.Compilers.props values to defaults because MSBuild evaluates Microsoft.Net.Compilers.props only once before $(RepoRoot)/dir.props are included. Removing import of Microsoft.Net.Compilers.props from System.Private.CoreLib.csproj and moving $(RepoRoot)/dir.props file import to top of System.Private.CoreLib.csproj solves these problems by ensuring expected order of evaluation of Microsoft.Net.Compilers.props file by MSBuild after all project wide values are initialized in $(RepoRoot)/dir.props.
2017-07-12Update optdata in master to version 20170712-0121 (#12770)Daniel Podder1-1/+1
2017-06-30Update optdata to version 20170630-0138Daniel Podder1-1/+1
2017-06-13Fix Linux PGO optdata consumption + PGO count update (#12239)Daniel Podder1-1/+1
* Update PGO package version to 20170612-1411 * Fix PGO optdata path issue on Linux
2017-06-10Update PGO counts to version 20170609-1125 (#12201)Daniel Podder1-1/+1
2017-06-06Test packages from current build in pipelinewtgodbe1-8/+4
2017-06-01Fix optdata restore functionality (#11935)Daniel Podder1-0/+6
Fix optdata restore functionality (#11935) Bring back optdata restore functionality following the move to 2.0 BuildTools and csproj-based CLI. Disable a harmless warning that broke the Linux build when consuming PGO counts due to -Werr. Fix #11796 for master
2017-06-01Merge pull request #11860 from rartemev/fix_tests_build_4Roman Artemev1-3/+7
Fixed tests build on Linux
2017-05-31Default to portable build in dev and official builds (#11985)Gaurav Khanna1-0/+3
2017-05-29Make linux test build workedRoman Artemev1-3/+7
2017-05-22Revert "Fixed tests build on Linux"Russ Keldorph1-8/+4
2017-05-19Test build fixes for LinuxRoman Artemev1-4/+8
2017-05-19Clean up 2.0.0 BuildTools PRwtgodbe1-28/+0
2017-05-18Get rid of double-import of Buildversion.targetswtgodbe1-2/+0
2017-05-17Move master to 2.1 Preview1 (#11662)Gaurav Khanna1-2/+2
2017-05-16Update Coreclr to 2.0.0 buildtoolswtgodbe1-4/+7
2017-05-15Update License Info (#11617)Tarek Mahmoud Sayed1-3/+3
2017-05-10Add version.txt to the coreclr transport package (#11497)Jose Perez Rodriguez1-0/+1
* Add version.txt to the coreclr transport package * PR Feedback
2017-05-10Update the License to MIT for coreclr repo (#11482)Tarek Mahmoud Sayed1-0/+1
2017-04-21Move CoreCLR to Preview2 (#11146)Gaurav Khanna1-1/+1
2017-03-29Switch to produce Preview1 packages (#9886)Gaurav Khanna1-1/+1
2017-03-23Use roslyn common props (#10430)chcosta1-0/+4
2017-03-08Update to buildtools version 1.0.27-prerelease-01407-02, and enable creating ↵chcosta1-1/+6
transport packages (#10020) * Update BuildTools fixes * Update to buildtools version 1.0.27-prerelease-01407-02, and enable building transport packages * fix netcore project * Avoid msb3644 error * Fix bad copy
2017-02-14Remove PackagePlatforms propertyChristopher Costa1-1/+0
2017-02-10remove additional slashChristopher Costa1-1/+1