forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 dotnet/core-setup@f5776f8
- Loading branch information
Showing
3 changed files
with
70 additions
and
25 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
src/installer/managed/Microsoft.NET.HostModel/AppHost/FailedToDeleteApphostException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Licensed to the .NET Foundation under one or more agreements. | ||
// The .NET Foundation licenses this file to you under the MIT license. | ||
// See the LICENSE file in the project root for more information. | ||
|
||
using System; | ||
|
||
namespace Microsoft.NET.HostModel.AppHost | ||
{ | ||
/// <summary> | ||
/// Failed to delete apphost when trying to delete incomplete appphost | ||
/// </summary> | ||
public class FailedToDeleteApphostException : AppHostUpdateException | ||
{ | ||
public string ExceptionMessage { get; } | ||
public FailedToDeleteApphostException(string exceptionMessage) | ||
{ | ||
ExceptionMessage = exceptionMessage; | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters