platform/upstream/dotnet/runtime.git
5 years agoSingle-File: MemoryMap the bundle file (dotnet/core-setup#6576)
Swaroop Sridhar [Mon, 19 Aug 2019 18:52:03 +0000 (11:52 -0700)]
Single-File: MemoryMap the bundle file (dotnet/core-setup#6576)

* Single-File: MemoryMap the bundle file

This changes makes a few changes in preparation for
loading IL files from the single-file bundle.

**Memory Mapping**

At startup, the entire bundle-file is memory mapped.
The individual embedded files are then extracted out to actual files on disk on startup.
However, this change will facilitate later checkins to:
* Loading files directly from bundle (ex: IL files using PELoader, config files using memory-streams, etc ).
* Extracting out files to disk lazily
Further details are available in [this document](https://github.com/dotnet/designs/blob/master/accepted/single-file/design.md#the-host)

**Refactoring**

* Static bundle_runner: The bundle_runner is made a static class that holds a global pointer
  to the memory-mapped application bundle, and meta-data about the contents.
  This facilitates the implementation of call-backs for accessing content directly from the bundle,
  as explained in [this document](https://github.com/dotnet/designs/blob/master/accepted/single-file/direct.md)

* A few new classes are created by factoring out functionality from bundle_runner
   * Extractor: Functionality for extracting contents of a bundle to files on disk.
   * Reader: This is a helper class that implements sequentional reading on memory-mapped bundle file.
   * dir-Util: Extraction directory handling utilities that assist in processing the bundle.

* Naming: bundle::bundle_runner is renamed as bundle::runner to remove the redundancy.
  Similarly, the newly refactored classes are named bundle::extractor and bundle::reader.

Commit migrated from https://github.com/dotnet/core-setup/commit/9bb119b2a4b82d54e73669928a3b831cc07a1291

5 years agoIncrease bundle's button size: avoid loc clipping (dotnet/core-setup#7757)
Davis Goodin [Mon, 19 Aug 2019 16:51:06 +0000 (11:51 -0500)]
Increase bundle's button size: avoid loc clipping (dotnet/core-setup#7757)

Commit migrated from https://github.com/dotnet/core-setup/commit/6762e5be2e74bcf35a38a1c1cd842d1ac61e0357

5 years agoadding ci legs to release 3.1 (dotnet/core-setup#7756)
Anirudh Agnihotry [Mon, 19 Aug 2019 16:29:33 +0000 (09:29 -0700)]
adding ci legs to release 3.1 (dotnet/core-setup#7756)

Commit migrated from https://github.com/dotnet/core-setup/commit/b5212c7d4d0a0c6a8b2cdb310f377653e509f9ac

5 years agoAdd single quotes to warnAsError:false (dotnet/core-setup#7765)
Davis Goodin [Sun, 18 Aug 2019 21:48:06 +0000 (16:48 -0500)]
Add single quotes to warnAsError:false (dotnet/core-setup#7765)

Commit migrated from https://github.com/dotnet/core-setup/commit/8a5f710c474a955ae82ce449fb9185a781782558

5 years agoUse existing Runtime loc for WD Runtime (dotnet/core-setup#7758)
Davis Goodin [Fri, 16 Aug 2019 21:35:14 +0000 (16:35 -0500)]
Use existing Runtime loc for WD Runtime (dotnet/core-setup#7758)

Copy over branding from .NET Core Runtime bundle installer to Windows Desktop Runtime bundle installer, then remove the "WelcomeHeaderMessage" and "WelcomeDescription" strings that could be confusing in the WD context. The result is a WindowsDesktop bundle installer with no useful description, but with UI localization.

Commit migrated from https://github.com/dotnet/core-setup/commit/00dfc821b3ba4a56add8161ad6549e8f70ae5add

5 years agoSharedHost always installs to 'ProgramFiles'\dotnet (dotnet/core-setup#7658)
John Beisner [Fri, 16 Aug 2019 02:08:39 +0000 (19:08 -0700)]
SharedHost always installs to 'ProgramFiles'\dotnet (dotnet/core-setup#7658)

* When installing the SharedHost; copy all files to the traditional default install location: 'ProgramFiles'\dotnet

Commit migrated from https://github.com/dotnet/core-setup/commit/36894a82f9c0a24d4142b48597e764fd722a9c20

5 years agoHostModel:Enable TestWithAdditionalContentAfterBundleMetadata (dotnet/core-setup...
Swaroop Sridhar [Thu, 15 Aug 2019 19:41:01 +0000 (12:41 -0700)]
HostModel:Enable TestWithAdditionalContentAfterBundleMetadata (dotnet/core-setup#6968)

The above test was disabled in PR dotnet/core-setup#6885 because the lab runs
showed failures because of "not enough disk space"

This PR now enables the test, since the test job no longer uses the hosted pool.

Commit migrated from https://github.com/dotnet/core-setup/commit/b44e5a25b376cfa6e0581cd69af05ce655d72f40

5 years ago Switch to Arcade yaml stage-based publishing with custom steps (dotnet/core-setup...
Davis Goodin [Thu, 15 Aug 2019 18:18:20 +0000 (13:18 -0500)]
 Switch to Arcade yaml stage-based publishing with custom steps (dotnet/core-setup#7725)

* Switch to stage-based publishing with custom steps

* Workaround: allow known symbol publisher warnings

Use Arcade-supported symbol publish workaround

* Workaround: run gather drop dry to avoid flakiness

* Use hosted pool for custom publish

Commit migrated from https://github.com/dotnet/core-setup/commit/002bc9ef5d0d6d433321df325b5928aaf80282a4

5 years agoEnable hosted builds on arm64 (dotnet/core-setup#7696)
Omair Majid [Thu, 15 Aug 2019 16:51:43 +0000 (12:51 -0400)]
Enable hosted builds on arm64 (dotnet/core-setup#7696)

To enable building core-setup on arm64 (hosted, not cross compiled), we
need to do a few things:

- Set the right TargetArchitecture

  Use the currently running architecture to decide the HostArch. Use that
  as the default value of TargetArchitecture, unless another value was
  provided by the build configuration.

- Use the right coreclr JIT

  If we are cross-compiling, we need to use the x86_arm64 libclrjit.so.
  But if we are building on an arm64 host, we need to pick the normal-RID
  (eg, linux-arm64) libclrjit.so from the two:

    ./.packages/transport.runtime.linux-arm64.microsoft.netcore.jit/###/runtimes/linux-arm64/native/libclrjit.so
    ./.packages/transport.runtime.linux-arm64.microsoft.netcore.jit/###/runtimes/x64_arm64/native/libclrjit.so

- Use a version of SourceLink that supports arm64

  We need to upgrade SourceLink to a version that contains
  https://github.com/dotnet/sourcelink/pull/288. This commit just
  updates it to the latest version.

Fixes dotnet/core-setup#7653

Commit migrated from https://github.com/dotnet/core-setup/commit/4b82b1edad5fb7b1f9e865a8429c2da33c921854

5 years agoAdd HostModel AppHost tests (dotnet/core-setup#7586)
Swaroop Sridhar [Wed, 14 Aug 2019 14:41:30 +0000 (07:41 -0700)]
Add HostModel AppHost tests (dotnet/core-setup#7586)

This change ports the Import [AppHost updater tests](https://github.com/dotnet/sdk/blob/dotnet/core-setup@a1cc8ec5a9741a5a2191fe022e12dd8a7f7348c7/src/Tasks/Microsoft.NET.Build.Tasks.UnitTests/GivenAnAppHost.cs) previously in SDK branch to work with HostModel library.

Commit migrated from https://github.com/dotnet/core-setup/commit/aae3e31d0011b09c8277d2f06f00b07e1fba8cb5

5 years agoHostModel: Retry ResourceUpdate on Win32 File-Lock error (dotnet/core-setup#7665)
Swaroop Sridhar [Mon, 12 Aug 2019 19:38:21 +0000 (12:38 -0700)]
HostModel: Retry ResourceUpdate on Win32 File-Lock error (dotnet/core-setup#7665)

* HostModel: Retry ResourceUpdate on Win32 File-Lock error

On Win32 PE files, the SDK copies resources on the AppHost binary
from the intermediate assembly.

This update is performed using native Win32 operations.
This change retries the resource update if the operation fails
because the file is locked (say because of AntiVirus scan).

This change is similar to: https://github.com/dotnet/core-setup/pull/7617
which handles failures in managed code via IOException.

The Retry logic is factored out to the RetryUtil class. Currently the
HostWriter is the only client for the class. But it is made public
because other components (like Bundler) may use it in future.

Commit migrated from https://github.com/dotnet/core-setup/commit/6f3ead36128f5ef3287a847fe9f4cf0d1177a057

5 years agoMinor fix in Native Hosting doc (dotnet/core-setup#7647)
Next Turn [Sat, 10 Aug 2019 02:48:21 +0000 (10:48 +0800)]
Minor fix in Native Hosting doc (dotnet/core-setup#7647)

Commit migrated from https://github.com/dotnet/core-setup/commit/0bd21a0ed332e425a708237d93d0e115acbd3885

5 years agoAdds PresentationUI.dll to WPF Profile (dotnet/core-setup#7661)
Vatsan Madhavan [Fri, 9 Aug 2019 22:52:20 +0000 (15:52 -0700)]
Adds PresentationUI.dll to WPF Profile (dotnet/core-setup#7661)

* Fixes https://github.com/dotnet/wpf/issues/1423

Add PresentationUI.dll to WPF profile

* Update WPF Dependencies

Commit migrated from https://github.com/dotnet/core-setup/commit/0588e55d5e1401e8b4e43ebcdef4d992c9bd451b

5 years agoHostWriter: Update Retry-count (dotnet/core-setup#7654)
Swaroop Sridhar [Fri, 9 Aug 2019 21:00:02 +0000 (14:00 -0700)]
HostWriter: Update Retry-count (dotnet/core-setup#7654)

Update Retry counters in HostWriter to match the
retry numbers in AppHost.

Commit migrated from https://github.com/dotnet/core-setup/commit/98b76e058ed209f98e56627da08afb032d22a0a4

5 years agoHostModel: Retry updates on IO error (dotnet/core-setup#7617)
Swaroop Sridhar [Thu, 8 Aug 2019 22:09:23 +0000 (15:09 -0700)]
HostModel: Retry updates on IO error (dotnet/core-setup#7617)

* HostModel: Retry updates on IO error

The HostModel implements services for updating the AppHost DLL
- Write App-dll name
- Set GUI/CUI bit
- Read/Write BundleHeader marker

These updates involve multiple file open/close operations.
An Antivirus scanner may intercept in-between and cause these operations
to fail with IO-Error.

So, this change adds a few retries to the IO operations, similar to
https://github.com/dotnet/core-setup/pull/7135

Fix for dotnet/core-setup#7597

Commit migrated from https://github.com/dotnet/core-setup/commit/f19be99463d48d2fae98030d26c5f394a18d7df6

5 years agoSkip framework validation for secondary components loaded into a self-contained app...
Elinor Fung [Thu, 8 Aug 2019 17:40:42 +0000 (10:40 -0700)]
Skip framework validation for secondary components loaded into a self-contained app (dotnet/core-setup#7618)

* Skip framework validation for secondary components loaded into a
self-contained app

* Add tests for loading a component in a self-contained app

Commit migrated from https://github.com/dotnet/core-setup/commit/4789e65dc121d81431d88ef2a7377be735d51a10

5 years agoReference WPF theme assemblies by default (dotnet/core-setup#7601)
Davis Goodin [Wed, 7 Aug 2019 18:58:53 +0000 (13:58 -0500)]
Reference WPF theme assemblies by default (dotnet/core-setup#7601)

* Reference WPF theme assemblies by default

* Fix test expecting >0 ReferencedByDefault attrs

Commit migrated from https://github.com/dotnet/core-setup/commit/6f12a57e3c1a5e0bc592745b2648b041819ae4ed

5 years agoAdd root "shared" dir to WindowsDesktop zip (dotnet/core-setup#7581)
Davis Goodin [Tue, 6 Aug 2019 19:39:47 +0000 (14:39 -0500)]
Add root "shared" dir to WindowsDesktop zip (dotnet/core-setup#7581)

Also fix a small bug where both the new and old infrastructure were creating a zip for the NETCoreApp sfx. This wasn't causing a problem in parallel because they are ordered, but it made it unclear to a reader which infra was responsible for the zip.

Commit migrated from https://github.com/dotnet/core-setup/commit/732ef42a49e82b1bfbe1363fa6799b34d7e8ef34

5 years agoAdd support for ProgID registration (dotnet/core-setup#7551)
Aaron Robinson [Mon, 5 Aug 2019 20:55:07 +0000 (13:55 -0700)]
Add support for ProgID registration (dotnet/core-setup#7551)

* Add support for ProgID registration

* Update COM activation documentation

Commit migrated from https://github.com/dotnet/core-setup/commit/490c40397e4645cf0c47e528466b6d4a301cc04c

5 years agoRemove WindowsDesktop bundle WelcomeDescription (dotnet/core-setup#7569)
Davis Goodin [Mon, 5 Aug 2019 19:24:50 +0000 (14:24 -0500)]
Remove WindowsDesktop bundle WelcomeDescription (dotnet/core-setup#7569)

Commit migrated from https://github.com/dotnet/core-setup/commit/edd4598118afda2032bb58b4be5fcfff5fcfc335

5 years agoUse Prod pool provider (dotnet/core-setup#7571)
Matt Mitchell [Mon, 5 Aug 2019 19:17:55 +0000 (12:17 -0700)]
Use Prod pool provider (dotnet/core-setup#7571)

Commit migrated from https://github.com/dotnet/core-setup/commit/362cc2a93cfceaeb5e135503123eb7f09586bd03

5 years agoExplicitly set DOTNET_MULTILEVEL_LOOKUP in tests (dotnet/core-setup#7541)
Elinor Fung [Fri, 2 Aug 2019 17:06:15 +0000 (10:06 -0700)]
Explicitly set DOTNET_MULTILEVEL_LOOKUP in tests (dotnet/core-setup#7541)

Commit migrated from https://github.com/dotnet/core-setup/commit/9b9814cc595dce09a126186d5926b1b19e8a09f3

5 years agoCreate WindowsDesktop sharedfx bundle installer (dotnet/core-setup#7540)
Davis Goodin [Fri, 2 Aug 2019 16:00:46 +0000 (11:00 -0500)]
Create WindowsDesktop sharedfx bundle installer (dotnet/core-setup#7540)

* Copy ExecWithRetries from BuildTools

Adds working dir, log importance to ExecWithRetries. Also Inline attemptMessage and add log importance comment.

* Add WindowsDesktop sfx bundle installer, refactor

Adds bundle creation support to the packaging-tools, and factors the framework pack and runtime WiX files into a single, more flexible, "product" set of WiX files.

The old MSI generation directory is removed entirely: with the new "product" WiX files, the host and hostfxr MSI creation can move to the new system. The VS insertion nupkg generation code is also ported from PowerShell to MSBuild to fit the new system.

The old system is still used for some macOS pkgs and the macOS bundle installer, some Debian/RPM packages, and some tarballs/zips.

Commit migrated from https://github.com/dotnet/core-setup/commit/ccf0024ba099103a5b759613c48b8cd46af8754a

5 years agoMove DisableVSPublish out of template (dotnet/core-setup#7542)
Davis Goodin [Thu, 1 Aug 2019 21:10:23 +0000 (16:10 -0500)]
Move DisableVSPublish out of template (dotnet/core-setup#7542)

Commit migrated from https://github.com/dotnet/core-setup/commit/9e5e0e555fe309c3ad749615969b1ae7b65afeb1

5 years agoFix how we determine line/column from a JsonReaderState (dotnet/core-setup#7510)
Vitek Karas [Tue, 30 Jul 2019 21:23:43 +0000 (14:23 -0700)]
Fix how we determine line/column from a JsonReaderState (dotnet/core-setup#7510)

Previously these fields were public and so simple `.GetField("name")` worked. Now they are internal, so we need to use the overload which takes `BindingFlags` and ask for private reflection.

Commit migrated from https://github.com/dotnet/core-setup/commit/907f46239dd63de667797504fdb7fadbf8424a37

5 years agoMerge pull request dotnet/core-setup#7398 from tlakollo/visualstudiopreview
Tlakaelel Axayakatl Ceja [Mon, 29 Jul 2019 21:33:54 +0000 (14:33 -0700)]
Merge pull request dotnet/core-setup#7398 from tlakollo/visualstudiopreview

Support Visual Studio Preview Install Path discovery at Build

Commit migrated from https://github.com/dotnet/core-setup/commit/be08a953bf365d9c52dddbcaa38745dbc39e198c

5 years agoTested that non preview Visual Studio versions work with the -prerelease
Tlakaelel Ceja [Sat, 27 Jul 2019 00:04:14 +0000 (17:04 -0700)]
Tested that non preview Visual Studio versions work with the -prerelease
flag. Changing the code to match corefx implementation.

Commit migrated from https://github.com/dotnet/core-setup/commit/e0bd8f304182d4e25bd96252468063c2ecffb790

5 years agoMake apphost.exe and comhost.dll MSI id stable (dotnet/core-setup#7387)
Davis Goodin [Fri, 26 Jul 2019 22:28:26 +0000 (17:28 -0500)]
Make apphost.exe and comhost.dll MSI id stable (dotnet/core-setup#7387)

* Make apphost.exe and comhost.dll MSI id stable

Commit migrated from https://github.com/dotnet/core-setup/commit/5ce778beaf29a76d48c09713d951440ef610af4c

5 years agoEnabling and conditioning the 'NuGetCommand' task. (dotnet/core-setup#7397)
John Beisner [Fri, 26 Jul 2019 21:58:28 +0000 (14:58 -0700)]
Enabling and conditioning the 'NuGetCommand' task. (dotnet/core-setup#7397)

* Enabling and conditioning the 'NuGetCommand' task.

* Update eng/jobs/windows-build.yml

Co-Authored-By: Davis Goodin <dagood@users.noreply.github.com>
* Update eng/jobs/windows-build.yml

Co-Authored-By: Davis Goodin <dagood@users.noreply.github.com>
* Updates per code review.

Commit migrated from https://github.com/dotnet/core-setup/commit/38fa929b45d17e98120f31643e79598c13592f40

5 years agoNew code snippet to support Visual Studio Install Path discovery at
Tlakaelel Ceja [Thu, 25 Jul 2019 22:34:34 +0000 (15:34 -0700)]
New code snippet to support Visual Studio Install Path discovery at
build

Commit migrated from https://github.com/dotnet/core-setup/commit/98c47d473b4f751fd84019713c252e939b2c4415

5 years agoMerge pull request dotnet/core-setup#7375 from wli3/port-fixes2
Nick Guerrera [Thu, 25 Jul 2019 01:52:31 +0000 (18:52 -0700)]
Merge pull request dotnet/core-setup#7375 from wli3/port-fixes2

Simply aggregate exception happens in failed apphost deletion

Commit migrated from https://github.com/dotnet/core-setup/commit/0e8f2ed755a65bb52edbd6390ea8a35845999239

5 years agoSimply aggregate exception happens in failed apphost deletion
William Li [Wed, 24 Jul 2019 23:58:48 +0000 (16:58 -0700)]
Simply aggregate exception happens in failed apphost deletion

Commit migrated from https://github.com/dotnet/core-setup/commit/bad4dd11c3fcb1fd685008da33841b82aa195ef2

5 years agoMerge pull request dotnet/core-setup#7373 from wli3/port-fixes
Jeff Schwartz [Wed, 24 Jul 2019 23:51:48 +0000 (23:51 +0000)]
Merge pull request dotnet/core-setup#7373 from wli3/port-fixes

port changes in SDK after Microsoft.NET.HostModel.AppHost is created

Commit migrated from https://github.com/dotnet/core-setup/commit/f5776f8b584d91b647306376bab5c9e8a75c6f92

5 years agoAdd targeting pack data/PackageOverrides.txt files (dotnet/core-setup#7369)
Davis Goodin [Wed, 24 Jul 2019 23:14:24 +0000 (18:14 -0500)]
Add targeting pack data/PackageOverrides.txt files (dotnet/core-setup#7369)

Commit migrated from https://github.com/dotnet/core-setup/commit/c2aa08390bbfe2b3dc8bee2210d9379b4bea4372

5 years agoDelete output apphost upon failure of the CreateAppHost task.
William Li [Wed, 24 Jul 2019 22:24:04 +0000 (15:24 -0700)]
Delete output apphost upon failure of the CreateAppHost task.

Port https://github.com/dotnet/sdk/pull/3427 by @peterhuene with my edit

This commit deletes the output apphost when the CreateAppHost task fails from
an exception.

Partially fixes dotnet/core-setup#2989

-------------
* deletes the output apphost when the `CreateAppHost` task fails from
an exception.

* aggreates the Exception for future logging from deleting the failed apphost

Commit migrated from https://github.com/dotnet/core-setup/commit/7f0eb2869f2f37a899cdd02b7bbc4bd78e4e7038

5 years agoFix P/Invoke signatures for the resource updater.
William Li [Wed, 24 Jul 2019 21:51:40 +0000 (14:51 -0700)]
Fix P/Invoke signatures for the resource updater.

Port https://github.com/dotnet/sdk/pull/3310 by @peterhuene

The resource updater was not specifying a CharSet for the Windows API
P/Invoke signatures and therefore the ANSI versions of the APIs were
being used.

This caused an unhandled exception when customizing the apphost on
Windows when the intermediate apphost path contained Unicode characters
because the ANSI resource updating API couldn't find the file.

Fixes ABdotnet/core-setup#900429.

Commit migrated from https://github.com/dotnet/core-setup/commit/0059721f0532ae386341fa15eccb7c0d37e5a6f3

5 years agoAlways build full platform manifest (dotnet/core-setup#7341)
Davis Goodin [Tue, 23 Jul 2019 16:18:12 +0000 (11:18 -0500)]
Always build full platform manifest (dotnet/core-setup#7341)

Unless intentionally disabled or building from source, always create the full platform manifest that lists assets from all platforms. With the platform manifest included in runtime packs, it needs to be generated the same across all official build jobs. Producing it locally during a default build also reduces the diff from dev to official builds.

Commit migrated from https://github.com/dotnet/core-setup/commit/1bac3a54fe65834258718fbbc6c62369f0cbebf7

5 years agoFix platform manifest package id column (dotnet/core-setup#7322)
Davis Goodin [Tue, 23 Jul 2019 15:10:07 +0000 (10:10 -0500)]
Fix platform manifest package id column (dotnet/core-setup#7322)

Fixes "__PackageId__" placeholder appearing in outputs. Added test to ensure this doesn't happen.

Also adds platform manifest to runtime packs.

Commit migrated from https://github.com/dotnet/core-setup/commit/7e3b0d0caf21b89608a3373e040041cc458722ba

5 years agoDisable overriding CentOS as RHEL. (dotnet/core-setup#7318)
Davis Goodin [Mon, 22 Jul 2019 19:45:44 +0000 (14:45 -0500)]
Disable overriding CentOS as RHEL. (dotnet/core-setup#7318)

Commit migrated from https://github.com/dotnet/core-setup/commit/daeb68797d196f14368d8ec23aafb545e1c0f94e

5 years agoRemove DiaSymReader prebuilt in source-build (dotnet/core-setup#7319)
Davis Goodin [Mon, 22 Jul 2019 19:45:35 +0000 (14:45 -0500)]
Remove DiaSymReader prebuilt in source-build (dotnet/core-setup#7319)

Commit migrated from https://github.com/dotnet/core-setup/commit/22326dadefcc7115c0edbd41450dca65b8d163f8

5 years agoAdd ReferencedByDefault=false to WD theme DLLs (dotnet/core-setup#7320)
Davis Goodin [Mon, 22 Jul 2019 19:06:15 +0000 (14:06 -0500)]
Add ReferencedByDefault=false to WD theme DLLs (dotnet/core-setup#7320)

Commit migrated from https://github.com/dotnet/core-setup/commit/0366d3f06d9dadbf1c1253e8b975ce6cb3a317d5

5 years agoMerge pull request dotnet/core-setup#7277 from AaronRobinsonMSFT/comhost_errorinfo_te...
Aaron Robinson [Fri, 19 Jul 2019 22:11:55 +0000 (15:11 -0700)]
Merge pull request dotnet/core-setup#7277 from AaronRobinsonMSFT/comhost_errorinfo_test_5113

Comhost IErrorInfo test

Commit migrated from https://github.com/dotnet/core-setup/commit/e3135aa808ffbbd9316d3e660b03b407a678a2eb

5 years agoAdd test for IErrorInfo propagation during COM activation failure.
Aaron Robinson [Thu, 18 Jul 2019 22:40:42 +0000 (15:40 -0700)]
Add test for IErrorInfo propagation during COM activation failure.

Commit migrated from https://github.com/dotnet/core-setup/commit/a480b039445763a942746f32aa173fdfc40d2276

5 years agoPropagate error writer to hostfxr during delegate acquisition.
Aaron Robinson [Thu, 18 Jul 2019 22:39:36 +0000 (15:39 -0700)]
Propagate error writer to hostfxr during delegate acquisition.

Commit migrated from https://github.com/dotnet/core-setup/commit/92fb649965eb488cf5918d371cc1d73d323af2ff

5 years agoMerge pull request dotnet/core-setup#7293 from dagood/arcade-merge/master
Davis Goodin [Fri, 19 Jul 2019 19:57:51 +0000 (14:57 -0500)]
Merge pull request dotnet/core-setup#7293 from dagood/arcade-merge/master

# Conflicts:
# eng/Version.Details.xml
# eng/Versions.props

Commit migrated from https://github.com/dotnet/core-setup/commit/970b3a5143dfda81556f2b5efc4bfc9c053465eb

5 years agoUse access(2) to determine if a file/directory exists
Leandro Pereira [Thu, 13 Jun 2019 18:02:32 +0000 (11:02 -0700)]
Use access(2) to determine if a file/directory exists

access(2) does not need to validate and fill in the buffer passed to the
kernel, so it's slightly faster.

Commit migrated from https://github.com/dotnet/core-setup/commit/7d70bbe81b4b86d491e30f957551441464c85375

5 years agoConstruct directory entry in place while reading directories
Leandro Pereira [Thu, 13 Jun 2019 17:52:54 +0000 (10:52 -0700)]
Construct directory entry in place while reading directories

Commit migrated from https://github.com/dotnet/core-setup/commit/44650f0cdc1307f7d0a451a227a1b8d75f42a3fe

5 years agoUse fstatat() in pal::readdir() instead of building a std::string
Leandro Pereira [Thu, 13 Jun 2019 17:44:46 +0000 (10:44 -0700)]
Use fstatat() in pal::readdir() instead of building a std::string

fstatat(2) is equivalent to stat(2), but it takes a file descriptor for
a directory, so that lookups are always relative to that file
descriptor.  There's no need to construct a temporary std::string.

Commit migrated from https://github.com/dotnet/core-setup/commit/6a6266a1ab4ba99b3c42b16cc8dc822db35fb45f

5 years agoMerge branch 'master' into arcade-merge/master
Davis Goodin [Fri, 19 Jul 2019 17:25:39 +0000 (12:25 -0500)]
Merge branch 'master' into arcade-merge/master

# Conflicts:
# eng/Version.Details.xml
# eng/Versions.props

Commit migrated from https://github.com/dotnet/core-setup/commit/5e8221cfd2da93462ba35dc0c4bc23b0d6d3fd32

5 years agoFix up tests for 5.0
Davis Goodin [Fri, 19 Jul 2019 04:46:04 +0000 (23:46 -0500)]
Fix up tests for 5.0

Commit migrated from https://github.com/dotnet/core-setup/commit/3b8cebc9528342972f0229314aa375f9b09d0038

5 years agoFix up 5.0 alpha 1 versioning w/ SemVer v2
Davis Goodin [Fri, 19 Jul 2019 03:48:43 +0000 (22:48 -0500)]
Fix up 5.0 alpha 1 versioning w/ SemVer v2

Commit migrated from https://github.com/dotnet/core-setup/commit/cafcf54a8caccf388715618943cb641fd49f912f

5 years agoUse tracing infrastructure to log realpath() and getcwd() errors
Leandro Pereira [Tue, 9 Jul 2019 19:55:27 +0000 (12:55 -0700)]
Use tracing infrastructure to log realpath() and getcwd() errors

Add some more context to them (whenever possible, too).

Commit migrated from https://github.com/dotnet/core-setup/commit/053fa0473d74176fd4aca2e4ab12d47fbd787791

5 years agoMerge branch 'master' into dev/dagood/into-master
Davis Goodin [Fri, 19 Jul 2019 03:43:36 +0000 (22:43 -0500)]
Merge branch 'master' into dev/dagood/into-master

# Conflicts:
# BranchInfo.props
# dir.props
# src/managed/CommonManaged.props
# src/test/HostActivation.Tests/DependencyResolution/PortableAppRidAssetResolution.cs
# src/test/HostActivation.Tests/DependencyResolution/ResolveComponentDependencies.cs
# tools-local/setuptools/dotnet-deb-tool/dotnet-deb-tool.csproj

Commit migrated from https://github.com/dotnet/core-setup/commit/76796fa18c0d23279f0d92205eaf3b8b62cd1a73

5 years ago[dev/arcade-migration] Fix Linux package versions (dotnet/core-setup#7261)
Davis Goodin [Thu, 18 Jul 2019 22:18:28 +0000 (17:18 -0500)]
[dev/arcade-migration] Fix Linux package versions (dotnet/core-setup#7261)

* Fix dev deb/rpm build script

* Fix deb/rpm versions: use --ci, fix version props

Commit migrated from https://github.com/dotnet/core-setup/commit/8f90d9b792b3da42df518da28468ef1677107113

5 years agoyaml updates for building snaps (dotnet/core-setup#7272)
Lee Coward [Thu, 18 Jul 2019 21:56:18 +0000 (14:56 -0700)]
yaml updates for building snaps (dotnet/core-setup#7272)

Commit migrated from https://github.com/dotnet/core-setup/commit/5057bc7688b810721b13ae8e0fc1df54cd79c809

5 years ago[dev/arcade-migration] Fix package and shared framework diffs (dotnet/core-setup...
Davis Goodin [Thu, 18 Jul 2019 19:31:57 +0000 (14:31 -0500)]
[dev/arcade-migration] Fix package and shared framework diffs (dotnet/core-setup#7259)

* Always include CoreCLR in NCA versions txt file

This makes it appear where it's expected. It shouldn't be a problem that it now appears in a package that doesn't truly use CoreCLR. If anything, it makes it easier to find, which could be useful.

* Fix M.NETCore.App.Internal build file differences

Fix GetDependencyDataFileInclusionDefaults to actually affect the condition.

Use a template for the props file and have each pkgproj fill it, so that each pkgproj can configure it. Use non-".Internal" name to refer to platform manifest to keep that filename consistent.

* Fix latest commit usage

* Fix names of deps.json and runtimeconfig.json

* Remove Packaging tools package from sfx deps json

* Add comment about props file placeholders

Commit migrated from https://github.com/dotnet/core-setup/commit/32d0950119e1537f136efc5ee5bb13b800f4bda0

5 years ago[dev/arcade-migration] Fix regressions found in MSI diff (dotnet/core-setup#7238)
Davis Goodin [Thu, 18 Jul 2019 16:39:37 +0000 (11:39 -0500)]
[dev/arcade-migration] Fix regressions found in MSI diff (dotnet/core-setup#7238)

* Fix VersionComparisonDate: copy from buildtools

* Adjust ShortFrameworkName placement for sfxproj

Fixes MSIs missing the framework name. This commit also adds a check to prevent regression.

* Move ProductVersion usage from static to target

Fixes the netstandard package version and the version used for the layout, which fixes its install location in the MSI. Adds regression test.

Commit migrated from https://github.com/dotnet/core-setup/commit/11c7fb051ae5a3a417990008965168dc6acd887b

5 years agoSpecify /Zi and -g compile options to enable debugging information (dotnet/core-setup...
Elinor Fung [Wed, 17 Jul 2019 19:55:53 +0000 (12:55 -0700)]
Specify /Zi and -g compile options to enable debugging information (dotnet/core-setup#7248)

Commit migrated from https://github.com/dotnet/core-setup/commit/27f0bb094c4ed99fdb44fa81ea8248ff4b21bc14

5 years agoFixes couple of places in the bundle runner where we might leak memory. (dotnet/core...
Vitek Karas [Wed, 17 Jul 2019 19:54:36 +0000 (12:54 -0700)]
Fixes couple of places in the bundle runner where we might leak memory. (dotnet/core-setup#7171)

Note that in reality this is a non-issue: The leaks are only present if something fails and in case of failure the process will immediately exit anyway.

I did this mostly for my own education on how to write this correctly. And since I had the changes read, we might as well merge it.

The structures are simple enough that we can rely on RVO alone. In one case there will be a copy (when inserting the files into the list), but that should be lot faster than explicit allocation.

Also remove any default ctors defined as they don't add any value.

Commit migrated from https://github.com/dotnet/core-setup/commit/e02bb0a4fa18355495e6af653de92d75d5a26ad3

5 years agoUse a relaxed JavaScriptEncoder for writing JSON to disk. (dotnet/core-setup#7241)
Ahson Khan [Wed, 17 Jul 2019 18:05:31 +0000 (11:05 -0700)]
Use a relaxed JavaScriptEncoder for writing JSON to disk. (dotnet/core-setup#7241)

Commit migrated from https://github.com/dotnet/core-setup/commit/43118387f9edb83f0abe12120a071c988b8b9e04

5 years agoTest component dependency resolution via native host tests (dotnet/core-setup#6919)
Vitek Karas [Wed, 17 Jul 2019 10:49:01 +0000 (03:49 -0700)]
Test component dependency resolution via native host tests (dotnet/core-setup#6919)

Change component dependency resolution tests to not use managed test app which requires full framework to run (and is slow). Instead implement component dependency resolution into native host test app and change all tests to use that.

This makes the tests much faster and it also allows for more flexible tests (it's easy to mock shared frameworks now).

Notable refactorings:

Implement error writer redirector in the native tests - this is necessary to correctly handle multi-threaded error redirection. Using C++ templates to get multiple distinct function pointers (for each thread separately)
Split hostfxr exports into its own class which can be reused by multiple tests
Introduce hostpolicy exports
Implement case class for component dependency resolution tests with helpers and such
Added test which validates per-assembly version resolution behavior

Commit migrated from https://github.com/dotnet/core-setup/commit/2870b217650af9f49ffa1b835b998d58e25638c8

5 years agoMerge pull request dotnet/core-setup#7221 from wtgodbe/50
William Godbe [Tue, 16 Jul 2019 22:48:22 +0000 (15:48 -0700)]
Merge pull request dotnet/core-setup#7221 from wtgodbe/50

Update branding to 5.0

Commit migrated from https://github.com/dotnet/core-setup/commit/6bc158d4eb36a742a7926f85f12a0d3b8b3e9c0a

5 years ago[dev/arcade-migration] Improve dev scenarios (dotnet/core-setup#7233)
Davis Goodin [Tue, 16 Jul 2019 22:23:58 +0000 (17:23 -0500)]
[dev/arcade-migration] Improve dev scenarios (dotnet/core-setup#7233)

* Add '/p:Subset=' support for dev scenarios

* Fix readme table generation

* Improve VS build: update helper projects, doc

* Document Subsets better; add polish and safety

* Update windows-instructions.md, add Subsets hint

Commit migrated from https://github.com/dotnet/core-setup/commit/c9c64e72f18b6bf16a07dffa0a60fcee8477ea98

5 years agoUpdate Prerelease to alpha1
William Godbe [Tue, 16 Jul 2019 17:31:13 +0000 (10:31 -0700)]
Update Prerelease to alpha1

Commit migrated from https://github.com/dotnet/core-setup/commit/a77adb256164ad9028f8cd5d49427fd770539f77

5 years agoRemove AppWithSubDirs hard-coded netcoreapp3.0
Davis Goodin [Mon, 15 Jul 2019 22:12:46 +0000 (17:12 -0500)]
Remove AppWithSubDirs hard-coded netcoreapp3.0

Commit migrated from https://github.com/dotnet/core-setup/commit/5b613dcbf66aeb7f5a694b9fad0ec740d95ea62f

5 years agoUse SemVer v2 versioning
Davis Goodin [Mon, 15 Jul 2019 21:31:48 +0000 (16:31 -0500)]
Use SemVer v2 versioning

Commit migrated from https://github.com/dotnet/core-setup/commit/cf79d6fce1b6f2f9557caf2ddb4a10d1583da585

5 years agoUpdate branding to 5.0
wtgodbe [Mon, 15 Jul 2019 21:29:59 +0000 (14:29 -0700)]
Update branding to 5.0

Commit migrated from https://github.com/dotnet/core-setup/commit/21217b1f4078188f9c2f1ac8390ee774db243ab1

5 years agoDon't always skip sourcelink: use a targeted fix (dotnet/core-setup#7219)
Davis Goodin [Mon, 15 Jul 2019 20:49:46 +0000 (15:49 -0500)]
Don't always skip sourcelink: use a targeted fix (dotnet/core-setup#7219)

Commit migrated from https://github.com/dotnet/core-setup/commit/ff7422d7346979b44e3cc3a9ec1235c62a57ac9e

5 years agoEnable BAR publish (dotnet/core-setup#7217)
Davis Goodin [Mon, 15 Jul 2019 20:25:41 +0000 (15:25 -0500)]
Enable BAR publish (dotnet/core-setup#7217)

Commit migrated from https://github.com/dotnet/core-setup/commit/3fbed74b39cd63761b9981dea4f983b678a62fce

5 years agoMerge pull request dotnet/core-setup#7216 from dagood/dev-merge-from-master
Davis Goodin [Mon, 15 Jul 2019 19:54:14 +0000 (14:54 -0500)]
Merge pull request dotnet/core-setup#7216 from dagood/dev-merge-from-master

Merge branch 'master' => 'dev/arcade-migration'

Commit migrated from https://github.com/dotnet/core-setup/commit/d7b62c4b66063d6ec7e77460d1d7587e71c48dab

5 years agoMerge branch 'master' into dev/arcade-migration
Davis Goodin [Mon, 15 Jul 2019 19:03:39 +0000 (14:03 -0500)]
Merge branch 'master' into dev/arcade-migration

# Conflicts:
# BuildToolsVersion.txt
# NuGet.config
# dependencies.props
# eng/Versions.props
# eng/jobs/bash-build.yml
# eng/jobs/windows-build.yml

Commit migrated from https://github.com/dotnet/core-setup/commit/a0c4047ed17874f72af66cb26085821b1649d8f8

5 years agoMerge pull request dotnet/core-setup#7210 from dagood/fix-arcade-platformmanifest
Davis Goodin [Mon, 15 Jul 2019 19:01:36 +0000 (14:01 -0500)]
Merge pull request dotnet/core-setup#7210 from dagood/fix-arcade-platformmanifest

[dev/arcade-migration] Add simple sharedfx package test project, fix PlatformManifest creation

Commit migrated from https://github.com/dotnet/core-setup/commit/99d2a27673278823e11c39d57ac25ce925fd89a5

5 years agoAvoid building WD on non-supported platforms
Davis Goodin [Fri, 12 Jul 2019 21:15:09 +0000 (16:15 -0500)]
Avoid building WD on non-supported platforms

Commit migrated from https://github.com/dotnet/core-setup/commit/c823497b00d73f33e2d55626ebda090c8db42a4e

5 years agoAdd platform manifest, simpler set of RID props
Davis Goodin [Fri, 12 Jul 2019 21:05:03 +0000 (16:05 -0500)]
Add platform manifest, simpler set of RID props

Commit migrated from https://github.com/dotnet/core-setup/commit/a61c69df207317e6de0c18cc4e66835b71ccf06b

5 years agoUse file, not env, for test context variables
Davis Goodin [Fri, 12 Jul 2019 20:55:21 +0000 (15:55 -0500)]
Use file, not env, for test context variables

This is the recommended Arcade way to transfer this information. The Arcade SDK doens't support passing env vars while running tests.

Commit migrated from https://github.com/dotnet/core-setup/commit/fb43a6a3abab1b25356b7ee146586d14bb20b195

5 years agoAdd simple sfx packaging tests
Davis Goodin [Fri, 12 Jul 2019 20:51:35 +0000 (15:51 -0500)]
Add simple sfx packaging tests

Commit migrated from https://github.com/dotnet/core-setup/commit/e611ece7a0313320b96eeea376a97219f901a8e1

5 years agoMinor fixes to the native hosting doc (dotnet/core-setup#7122)
Vitek Karas [Thu, 11 Jul 2019 04:50:38 +0000 (21:50 -0700)]
Minor fixes to the native hosting doc (dotnet/core-setup#7122)

The main part is to remove the `.a` file reference since we don't actually need or produce it.

Commit migrated from https://github.com/dotnet/core-setup/commit/622202134ce0103c953714879c0bb1746aaac434

5 years agoMerge pull request dotnet/core-setup#7153 from jcagme/restoreSources
JC Aguilera [Wed, 10 Jul 2019 23:30:13 +0000 (16:30 -0700)]
Merge pull request dotnet/core-setup#7153 from jcagme/restoreSources

Copy sources from Versions.props to NuGet.config

Commit migrated from https://github.com/dotnet/core-setup/commit/99c7780cb9e40835278152d23909c3079367b39d

5 years agoImplement roll-forward policies for .NET Core SDK resolution. (dotnet/core-setup...
Peter Huene [Wed, 10 Jul 2019 08:59:28 +0000 (01:59 -0700)]
Implement roll-forward policies for .NET Core SDK resolution. (dotnet/core-setup#6953)

Implements additional roll-forward policies for resolving a .NET
Core SDK based upon new SDK settings in `global.json`.

Two new values are now supported in `global.json` in the `sdk` settings:

* `rollForward` - the roll-forward policy to use (see below).
* `allowPrerelease` - controls whether or not preview SDKS may be resolved
(defaults to `true` to allow resolving prerelease SDKs).

The new roll-forward policies are:

* `patch` - If the requested SDK is installed, use it. Otherwise, use the
  latest installed patch level that matches the requested major, minor, and
  feature band.
* `feature` - If the requested major, minor, and feature band is installed, use
the latest patch level for the specified feature band.  Otherwise, roll-forward
to the next available feature band and use the latest patch level for that
feature band.
* `minor` - If the requested major, minor, and feature band is installed, use
the latest patch level for the specified feature band.  Otherwise, roll-forward
to the next available feature band available for the same major version and use
the latest patch level for that feature band.
* `major` - If the requested major, minor, and feature band is installed, use
the latest patch level for the specified feature band.  Otherwise, roll-forward
to the next available feature band available without restriction and use the
latest patch level for that feature band.
* `latestPatch` - Use the latest installed patch level that matches the
requested major, minor, and feature band.
* `latestFeature` - Use the latest installed patch level for the latest
installed feature band that matches the requested major and minor version.
* `latestMinor` - Use the latest installed patch level for the latest installed
feature band for the latest installed minor version that matches the requested
major version.
* `latestMajor` - Use the absolutely latest .NET Core SDK available.

For backwards compatibility, the policy when a `version` is not specified in
`global.json` will be `latestMajor`.  The default policy when a `version` is
specified but `rollForward` is not specified will be `patch`.

Commit migrated from https://github.com/dotnet/core-setup/commit/5cd0245860335e0b307f6a46b99c6f9244887318

5 years agoRetry extraction of bundle to avoid issues with locked files by AV (dotnet/core-setup...
Vitek Karas [Wed, 10 Jul 2019 04:00:23 +0000 (21:00 -0700)]
Retry extraction of bundle to avoid issues with locked files by AV (dotnet/core-setup#7135)

Retry extraction of bundle to avoid issues with locked files by AV software
Address some memory leaks

Commit migrated from https://github.com/dotnet/core-setup/commit/552dba193c0f21a03687d2f14861c7a4dcf8dd0f

5 years agoSkip pal::realpath() error logging while probing directories
Leandro Pereira [Tue, 9 Jul 2019 19:48:12 +0000 (12:48 -0700)]
Skip pal::realpath() error logging while probing directories

Both paths calling pal::realpath() and check its return value to see if
the probed paths actually exist in the filesystem; they do have logic
to handle those paths not existing, and printing error messages while
doing so isn't helpful for the user.

This happens when an application is published with one user but is
executed with another user -- for instance, when using containers (see
issue dotnet/core-setup#4038 for details).

Fixes dotnet/core-setup#4038.

Commit migrated from https://github.com/dotnet/core-setup/commit/024d2c0150c1ea356cfb33b2bcec91b39509084c

5 years agoMerge pull request dotnet/core-setup#7084 from dagood/arcade-sign-publish
Davis Goodin [Tue, 9 Jul 2019 20:02:04 +0000 (15:02 -0500)]
Merge pull request dotnet/core-setup#7084 from dagood/arcade-sign-publish

[dev/arcade-migration] Sign and publish using Arcade SDK

Commit migrated from https://github.com/dotnet/core-setup/commit/8d445c071754cbb95b28b7b84d066adf92689660

5 years agoAdd publish to official build
Davis Goodin [Fri, 5 Jul 2019 18:30:32 +0000 (13:30 -0500)]
Add publish to official build

This also modernizes publish flow. Each job stores bits in build artifacts, rather than using the dotnetcli blob storage account as an intermediate location.

Some leftover code from ProdCon v1 that was difficult to follow is also removed.

Dev "mock" official builds are also made less risky by accepting override variables and adding a safety that skips official variable groups when the build pipeline name is changed.

Commit migrated from https://github.com/dotnet/core-setup/commit/30f9f19d905ccd63f178af5a326629ad98c73159

5 years agoUpdate issue-guide.md (dotnet/core-setup#7117)
William Godbe [Mon, 8 Jul 2019 21:46:23 +0000 (14:46 -0700)]
Update issue-guide.md (dotnet/core-setup#7117)

Commit migrated from https://github.com/dotnet/core-setup/commit/c4105af1c2255a2eb390d08aac4bf8272c3554da

5 years agoAdd BuildTools publish step tasks and dependencies
Davis Goodin [Fri, 5 Jul 2019 18:24:25 +0000 (13:24 -0500)]
Add BuildTools publish step tasks and dependencies

Copies the closure of C# code from the BuildTools repo that's necessary for the Core-Setup publish tasks. There are no changes except automatically removing and sorting the using statements.

Source: https://github.com/dotnet/buildtools/tree/dotnet/core-setup@55d43483866c7caeeace96355add3a9b12fa5795

Using the existing BuildTools code reduces the risk of behavior differences vs. trying to find equivalents in Arcade. The upcoming new Arcade-powered publish functionality makes short-term effort to deduplicate these tasks throwaway work.

Commit migrated from https://github.com/dotnet/core-setup/commit/ea269ba71cc53b8bf217f20953fcbad85647033b

5 years agoUpdate BuildTools to preview4-04104-01 (dotnet/core-setup#6671)
dotnet-maestro-bot [Mon, 8 Jul 2019 16:08:41 +0000 (09:08 -0700)]
Update BuildTools to preview4-04104-01 (dotnet/core-setup#6671)

Commit migrated from https://github.com/dotnet/core-setup/commit/3a2d0293bc7717a6fa038f2a12a9a91391205b06

5 years agoAdd signing using Arcade SDK infrastructure
Davis Goodin [Fri, 5 Jul 2019 18:17:06 +0000 (13:17 -0500)]
Add signing using Arcade SDK infrastructure

Arcade SDK doesn't support signing the containers that this repo produces, so this commit adds a structure that allows projects to depend on signed assets. This involves adding signing/*.proj projects for other projects to depend on, and implementing signing in a way that allows multiple passes.

Commit migrated from https://github.com/dotnet/core-setup/commit/29414edc1132925e64e703f377b308695c5b64ba

5 years agoAdd parameters struct to nethost get_hostfxr_path (dotnet/core-setup#7020)
Elinor Fung [Thu, 4 Jul 2019 16:28:17 +0000 (09:28 -0700)]
Add parameters struct to nethost get_hostfxr_path (dotnet/core-setup#7020)

Allow specifying dotnet_root to find the appropriate hostfxr under the
specified root

Commit migrated from https://github.com/dotnet/core-setup/commit/4ecb63fde6338bb8659c76ec21239bb165f8c2a4

5 years agoAdd FileUtils.CopyIntoDirectory for CoreFX change
Davis Goodin [Wed, 3 Jul 2019 17:57:55 +0000 (12:57 -0500)]
Add FileUtils.CopyIntoDirectory for CoreFX change

Commit migrated from https://github.com/dotnet/core-setup/commit/228c1b004d846767b640bacb58431abe687ad973

5 years agoLeave any cross-targeting file off RuntimeList.xml (dotnet/core-setup#7041)
Davis Goodin [Tue, 2 Jul 2019 22:31:52 +0000 (17:31 -0500)]
Leave any cross-targeting file off RuntimeList.xml (dotnet/core-setup#7041)

Commit migrated from https://github.com/dotnet/core-setup/commit/32cdcac88710b83a83c25dd1e2be946e3c180931

5 years agoUpdate timeouts to 120 minutes for all jobs (dotnet/core-setup#7040)
William Godbe [Tue, 2 Jul 2019 21:57:28 +0000 (14:57 -0700)]
Update timeouts to 120 minutes for all jobs (dotnet/core-setup#7040)

* Update timeouts to 120 minutes for all jobs

* Use default value of 120 in Windows & Linux jobs

* Revert OSX change

Commit migrated from https://github.com/dotnet/core-setup/commit/97997f0c2429898dbf46124d39da872c3665ef18

5 years agoMake Microsoft.NET.HostModel.AppHost.ResourceUpdater public (dotnet/core-setup#6989)
Swaroop Sridhar [Tue, 2 Jul 2019 21:36:23 +0000 (14:36 -0700)]
Make Microsoft.NET.HostModel.AppHost.ResourceUpdater public (dotnet/core-setup#6989)

Make Microsoft.NET.HostModel.AppHost.ResourceUpdater class public,
so that it can be consumed from the SDK repo.

Commit migrated from https://github.com/dotnet/core-setup/commit/1d808bfb7cacb5ad6234a2f658d3fcd7d1ec5229

5 years agoFix test project restore for Preview 6 SDK
Davis Goodin [Tue, 2 Jul 2019 20:49:01 +0000 (15:49 -0500)]
Fix test project restore for Preview 6 SDK

Preview 5 automatically added some daily build restore sources, but Preview 6 doesn't. This commit adds one back manually.

Commit migrated from https://github.com/dotnet/core-setup/commit/8cba83adbff69b28d4474b33156776699955061e

5 years agoMerge 'master' into dev/arcade-migration
Davis Goodin [Tue, 2 Jul 2019 19:15:18 +0000 (14:15 -0500)]
Merge 'master' into dev/arcade-migration

# Conflicts:
# build.proj
# eng/Versions.props

Commit migrated from https://github.com/dotnet/core-setup/commit/457e30a2ddde823477f245f3bde4e38a765b8332

5 years agoMerge pull request dotnet/core-setup#6967 from dagood/arcade-reviewable
Davis Goodin [Tue, 2 Jul 2019 18:48:40 +0000 (13:48 -0500)]
Merge pull request dotnet/core-setup#6967 from dagood/arcade-reviewable

[dev/arcade-migration] Fix tests for CI platforms, add PR validation

Commit migrated from https://github.com/dotnet/core-setup/commit/ed69566cc944a319eb23b8281456e658d7ba822f

5 years agoFix official build MSI signing (dotnet/core-setup#7032)
Davis Goodin [Tue, 2 Jul 2019 18:41:37 +0000 (13:41 -0500)]
Fix official build MSI signing (dotnet/core-setup#7032)

Removes GenerateVSNugetPackages target dependencies causing MSIs to be built again after they were signed, overwriting the signed copies.

Commit migrated from https://github.com/dotnet/core-setup/commit/a2d5b0faba873d09b0c00918366799c5e2b102f3

5 years agoAdd dev/arcade-migration PR trigger
Davis Goodin [Thu, 27 Jun 2019 18:31:12 +0000 (13:31 -0500)]
Add dev/arcade-migration PR trigger

Commit migrated from https://github.com/dotnet/core-setup/commit/8d78a214ae6687ce1a8927ccf42952b7745f77c8

5 years agoFix Deb/RPM package build
Davis Goodin [Thu, 27 Jun 2019 17:31:52 +0000 (12:31 -0500)]
Fix Deb/RPM package build

This includes simplifying dotnet-deb-tool from a tool package to an ordinary project. This avoids two complications: tool packages used by DotNetCliToolReference can only target .NET Core 2.2 and below, and the Pack requirements are more involved with the new SDK.

Adds some new '<project> -> <artifact>' log lines. It was previously hard to tell what the build was producing; this output clarifies in the usual MSBuild project style.

Commit migrated from https://github.com/dotnet/core-setup/commit/58efb317558e34b805ec8e8650a3b3dcede21fcd

5 years agoFix build on macOS
Davis Goodin [Thu, 27 Jun 2019 16:25:58 +0000 (11:25 -0500)]
Fix build on macOS

Commit migrated from https://github.com/dotnet/core-setup/commit/09d46b89a25abfcbd20a425ce018d27950fb082a

5 years agoFix yaml CI definitions
Davis Goodin [Thu, 27 Jun 2019 15:24:45 +0000 (10:24 -0500)]
Fix yaml CI definitions

Commit migrated from https://github.com/dotnet/core-setup/commit/4fc3d0f65b69c418daf663dfc350c02dfb84382e