Граф коммитов

4274 Коммитов

Автор SHA1 Сообщение Дата
dotnet-maestro[bot] e34acdb8b6
Update dependencies from https://github.com/dotnet/coreclr build 20190204.71 (#5080)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27404-71
2019-02-04 14:09:56 +00:00
dotnet-maestro[bot] 60e1a64c45
Update dependencies from https://github.com/dotnet/coreclr build 20190203.72 (#5079)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27403-72
2019-02-04 02:10:40 +00:00
dotnet-maestro[bot] 3db567cac8
Update dependencies from https://github.com/dotnet/coreclr build 20190203.71 (#5078)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27403-71
2019-02-03 14:09:21 +00:00
dotnet-maestro[bot] 0dc6fbb105
Update dependencies from https://github.com/dotnet/coreclr build 20190202.72 (#5077)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27402-72
2019-02-03 02:22:56 +00:00
dotnet-maestro[bot] 1651ca3b4a
Update dependencies from https://github.com/dotnet/coreclr build 20190202.71 (#5075)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27402-71
2019-02-02 14:07:38 +00:00
dotnet-maestro[bot] 30f99cc927
Update dependencies from dotnet/coreclr (#5059)
* Update dependencies from https://github.com/dotnet/coreclr build 20190130.71

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27330-71

* Update dependencies from https://github.com/dotnet/coreclr build 20190130.72

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27330-72

* Update dependencies from https://github.com/dotnet/coreclr build 20190131.71

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27331-71

* Update dependencies from https://github.com/dotnet/coreclr build 20190131.72

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27331-72

* Update dependencies from https://github.com/dotnet/coreclr build 20190201.71

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27401-71

* Update dependencies from https://github.com/dotnet/coreclr build 20190201.72

This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27401-72
2019-02-02 03:47:05 +00:00
Davis Goodin b50554ac9a
Use self-hosted pool for Windows arm/arm64 CI (#5071) 2019-02-01 10:08:04 -07:00
Davis Goodin 49e3df7525
Add dotnet/versions publish as hosted job (#5069)
If dotnet/versions publish is enabled in the main finalize/publish job, it fails because VersionTools is an old version. The reason for the old VersionTools is unknown. To narrow it down or work around it, use a hosted agent to ensure machine state isn't a factor, such as previous builds' tooling carrying over somehow.
2019-02-01 09:03:50 -07:00
dotnet-maestro[bot] 75ccdb6828
Update dependencies from https://github.com/dotnet/arcade build 20190130.6 (#5063)
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19080.6
2019-01-31 13:25:52 +00:00
Christopher Costa 373df9c049 Add Authors to shipping packages (#5060) 2019-01-30 19:01:35 -07:00
William Godbe 47f0c3e32a
Merge pull request #5054 from dotnet-maestro-bot/master-UpdateDependencies
Update BuildTools to preview1-03617-02 (master)
2019-01-30 10:23:42 -08:00
Nickolena Fisher 711c79ae62 Fix spelling in README.md (#5057) 2019-01-30 07:23:03 -08:00
dotnet-maestro-bot 80ca8c4b15 Update BuildTools to preview1-03617-02 2019-01-30 07:12:39 -08:00
Vitek Karas 988132f2a8
Fix lookup of coreclr.dll in .deps.json to not rely on relative paths (#5050)
The existing code expects the .deps.json record for coreclr.dll (and clrjit.dll) to have at least one directory separator, since that was always the case up until now.
With recent changes to targeting packs, these records are just file names, and the above logic breaks.

Fix the logic by lookup at the resolved absolute path, which is guaranteed to have a directory separator before the library name (we need the separator to match whole file names).

Added a test which validates the new scenario.
2019-01-29 01:10:56 -08:00
Vitek Karas ed4f73a931
Fix the timestamp timezone in tracing in Windows (#5049)
It seems that printing out timezone information for a tm structure on Windows always shows the local timezone, even if the tm is returned by gmtime.
The simplest fix seems to be to simply print out GMT always, after all gmtime always returns GMT time.
This also makes the output match Linux formating as Windows otherwise uses verbose zone names, while Linux uses abbreviations.
2019-01-29 01:08:53 -08:00
Ahson Khan 45f9401bf6
Update M.E.DependencyModel to use S.T.Json source for netstandard2.0 (#5009)
* Update M.E.DependencyModel to use in-box S.T.Json for netstandard2.0

* Move StreamBufferWriter to a separate file.

* Return array back to the pool on success.

* Update test json and remove trailing commas to make it valid according
to RFC.

* Fix off-by-one error in skip, add a null string check, and remove other
trailing commas.

* Write end of object before flushing.

* Add missing write end array to close the array block.

* Update to latest source package with some API changes.

* Address PR feedback.

* Split DepContextJsonReader into common, newtonsoft, and netstandard.

* Try to minimize the diff between Newtonsoft and S.T.Json.

* Remove the .Common prefix for the source that is shared between the
impls.

* Explicitly add access modifiers and some code formatting fix.

* Add debug asserts and add comment to where ReadToEnd comes from.

* Mark methods as static where possible.

* Update code formatting (use var, inline outs, etc.)

* Use implicit cast to span and use try/finally block instead.

* Always check to resize in case stream.Length changes.

* Use an array-based buffer writer rather than one that supports stream.

* Add a unified json reader to reduce code duplication.

* Remove JsonTextReaderExtensions and cleanup some changes to keep the
diff cleaner.

* Skip comments by default.

* Allow comments on the reader but throw FormatException to mimic current
behavior.

* Adjust the exception message comparion assert.

* Use the latest LangVersion (7.3) required by the source package.

* Rename partial files using Utf8JsonReader/JsonTextReader suffixes.

* Address PR feedback - cleanup csproj and remove unused APIs.

* Use JsonTextWriter (instead of JObject) and extract out common code by
using UnifiedJsonWriter
extract out common code by using UnifiedJsonWriterr

* Rename Write to WriteCore to match the Read

* Explicitly disallow comments and update test to assert
JsonReaderException.

* Add source package version to Versions.props.
2019-01-28 22:14:35 -08:00
Vitek Karas c47fdfb502
Fix registry access on legacy windows (#5042)
The bug was that RRF_SUBKEY_WOW6432KEY is only supported on Win10. On legacy Windows it has no effect and 64bit registry is accessed.

The fix is to use RegOpenKeyEx which takes the access right parameter which can specify KEY_WOW64_32KEY. This makes 64bit app access the 32bit registry and this one is supported on anything above Windows 2000 (excluded).
2019-01-25 00:40:58 -08:00
Matt Mitchell 63a01b08e5
Merge pull request #5043 from dagood/disable-myget-publish
Disable MyGet publish to unblock build
2019-01-24 09:20:38 -08:00
Davis Goodin fd1342956d Disable MyGet publish to unblock build
Our MyGet quota is exceeded, and this endpoint shouldn't be necessary for 3.0 build flow.
2019-01-24 09:58:35 -06:00
Davis Goodin eccf319b05
Exclude SVG files from BAR manifest (#5037)
Fixes error in "Publish to Build Asset Registry Job" in official build.
2019-01-24 09:33:15 -06:00
dotnet-maestro[bot] 0842763407
Update dependencies from https://github.com/dotnet/arcade build 20190123.5 (#5041)
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19073.5
2019-01-24 13:25:41 +00:00
dotnet-maestro[bot] f62ec2837e
Update dependencies from https://github.com/dotnet/corefx build 20190123.11 (#5039)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19073.11
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19073.11
2019-01-24 10:08:58 +00:00
dotnet-maestro[bot] fc212e1e27
Update dependencies from https://github.com/dotnet/corefx build 20190123.7 (#5038)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19073.7
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19073.7
2019-01-24 07:25:20 +00:00
Davis Goodin b54833551f
Fix FreeBSD leg removal (#5036)
Delete lines rather than commenting to fix AzDO yaml parsing.
2019-01-23 16:40:44 -06:00
Davis Goodin 1cff68c625
Remove FreeBSD temporarily: unblock official build (#5035)
The FreeBSD agent is currently not available.
2019-01-23 16:27:11 -06:00
Vitek Karas e6d5776880
Improves the URLs reported in errors from the host (#5030)
Fixed the URL used when SDK commands fail to find SDK - this should point to the main download page.
Errors which talk about installing prerequisites now include platform specific URLs which point to the respective docs article for the correct platform.

The existing fwlink is now redirected to point to the Windows prereq page. Two new fwlinks were added to point to OSX and Linux pages.

Added simplistic tests for these changes.
2019-01-23 14:11:57 -08:00
Davis Goodin 0d8cb4c2c8
Disable UpdateVersionsRepo: unblock official build (#5033) 2019-01-23 13:20:58 -06:00
Davis Goodin 3d0f5a99a4
Update BuildTools to 3.0.0-preview1-03623-01 (#5032)
This uptakes a change to print the tree being submitted to dotnet/versions. This will confirm whether BuildTools isn't being uptaken correctly in the official build, or if there is a new/unknown additional bug with the request.
2019-01-23 13:11:35 -06:00
dotnet-maestro[bot] bc858ab0d6
Update dependencies from https://github.com/dotnet/corefx build 20190123.1 (#5031)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19073.1
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19073.1
2019-01-23 16:46:29 +00:00
dotnet-maestro[bot] 06292a87de
Update dependencies from https://github.com/dotnet/corefx build 20190122.2 (#5029)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19072.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19072.2
2019-01-23 02:29:08 +00:00
Davis Goodin 3de8cf726c
Use MSBuildDisableNodeReuse=1 in official builds (#5027) 2019-01-22 20:09:58 -06:00
Davis Goodin 91afac718f
Remove number from 3.0 Preview <number> branding (#5025) 2019-01-22 17:42:46 -06:00
dotnet-maestro[bot] 6ba53c1e33
Update dependencies from https://github.com/dotnet/coreclr build 20190122.72 (#5026)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27322-72
2019-01-22 23:34:53 +00:00
Davis Goodin 4fc4b6a836
Publish to dotnet/versions during official builds (#5024)
This reverts commit 5bdcd4b15d and disables MSBuild node reuse in the finalize step. This turns dotnet/versions publish back on and avoids a reused node having an old version of VersionTools loaded.
2019-01-22 16:47:32 -06:00
dotnet-maestro[bot] 992d8c19a4
Update dependencies from https://github.com/dotnet/corefx build 20190122.1 (#5023)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19072.1
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19072.1
2019-01-22 21:38:47 +00:00
dotnet-maestro[bot] 214fc1e5ca
Update dependencies from https://github.com/dotnet/corefx build 20190121.2 (#5022)
This change updates the following dependencies
- Microsoft.NETCore.Platforms - 3.0.0-preview.19071.2
- Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview.19071.2
2019-01-22 21:00:41 +00:00
dotnet-maestro[bot] 108365c2f4
Update dependencies from https://github.com/dotnet/coreclr build 20190122.71 (#5018)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27322-71
2019-01-22 14:17:48 +00:00
dotnet-maestro[bot] 9b55524cc9
Update dependencies from https://github.com/dotnet/coreclr build 20190121.72 (#5017)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27321-72
2019-01-22 02:12:33 +00:00
dotnet-maestro[bot] 5b8b41402c
Update dependencies from https://github.com/dotnet/coreclr build 20190121.71 (#5016)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27321-71
2019-01-21 14:09:58 +00:00
dotnet-maestro[bot] 82543af18c
Update dependencies from https://github.com/dotnet/arcade build 20190120.2 (#5015)
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19070.2
2019-01-21 13:25:49 +00:00
dotnet-maestro[bot] 3297320f52
Update dependencies from https://github.com/dotnet/coreclr build 20190120.72 (#5014)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27320-72
2019-01-21 02:17:11 +00:00
dotnet-maestro[bot] 30e15aaab8
Update dependencies from https://github.com/dotnet/coreclr build 20190120.71 (#5013)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27320-71
2019-01-20 14:09:19 +00:00
dotnet-maestro[bot] 8396c533fa
Update dependencies from https://github.com/dotnet/arcade build 20190119.2 (#5012)
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19069.2
2019-01-20 13:25:37 +00:00
dotnet-maestro[bot] 77066b3836
Update dependencies from https://github.com/dotnet/coreclr build 20190119.72 (#5011)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27319-72
2019-01-20 02:15:26 +00:00
dotnet-maestro[bot] 66bef64d51
Update dependencies from https://github.com/dotnet/coreclr build 20190119.71 (#5008)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27319-71
2019-01-19 14:11:45 +00:00
dotnet-maestro[bot] 9708a8ae11
Update dependencies from https://github.com/dotnet/arcade build 20190118.4 (#5007)
This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19068.4
2019-01-19 13:25:40 +00:00
Davis Goodin 5bdcd4b15d
Revert "Publish to dotnet/versions during official builds (#5003)" (#5004)
This reverts commit 7da36bad45.
2019-01-19 00:09:49 -06:00
dotnet-maestro[bot] c917e7973c
Update dependencies from https://github.com/dotnet/coreclr build 20190118.76 (#5006)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27318-76
2019-01-19 02:32:41 +00:00
dotnet-maestro[bot] 8f2a4c1212
Update dependencies from https://github.com/dotnet/coreclr build 20190118.75 (#5005)
This change updates the following dependencies
- Microsoft.NETCore.Runtime.CoreCLR - 3.0.0-preview-27318-75
2019-01-19 01:57:04 +00:00
Davis Goodin 7da36bad45
Publish to dotnet/versions during official builds (#5003) 2019-01-18 13:01:00 -06:00