summaryrefslogtreecommitdiff
path: root/dir.targets
AgeCommit message (Collapse)AuthorFilesLines
2016-01-29update version of buildtoolsRahul Kumar1-117/+11
2015-07-09Move CoreCLR to the modern build tools and dnxMatt Mitchell1-22/+102
This changes moves coreclr onto DNX (same version as corefx). Theoretically, this should allow these tests to target the desktop CLR. All of the old package.config files are gone and replaced with corresponding project.json files. The up front restore behavior is retained. Tests are now buildable individually, though not runnable in a similar fashion.
2015-04-20Xplat build changesVal Menn1-1/+1
Move the path of the global packages.config into a separate property. This allows xplat MSBuild to detect the path and adjust for non-Win systems. Addtionally, trim backslash as it escapes quotes on Linux
2015-02-27Use HTTPS for fetching NuGet.exeMatt Ellis1-1/+1
2015-02-19Setup the CoreCLR repo to use the LocalPackagePublish mechanism.Alex Ghiondea1-0/+43
This will enable the 'local publish' of the CoreCLR package to a location where it can be picked up by the CoreFx build. What this means is that you will be able to build the CoreCLR package and use that to run the CoreFx tests on top of it. Changes required to make this happen: - Refactor the managed build to make sure the buildtools gets restored before we attempt to use the targets it provides. - Take a dependency to the Microsoft.DotNet.BuildTools to bring in the packages.targets - Update the $(PackagesDir) to point to the <repo root>\packages to make it consistent with CoreFx - Hook-up the LocalPackagePublish targets to the build of the CoreCLR NuGet packages