forked from dotnet/sdk
-
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#149 from dotnet/more-msbuild-hosting
- Loading branch information
Showing
8 changed files
with
51 additions
and
21 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -96,4 +96,4 @@ private string Quote(string path) | |
|
||
return $"\"{path}\""; | ||
} | ||
} | ||
} |
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,33 @@ | ||
namespace Microsoft.NET.Build.Containers; | ||
|
||
public static class KnownStrings | ||
{ | ||
public static class Properties | ||
{ | ||
public static string ContainerBaseImage = nameof(ContainerBaseImage); | ||
public static string ContainerRegistry = nameof(ContainerRegistry); | ||
public static string ContainerImageName = nameof(ContainerImageName); | ||
public static string ContainerImageTag = nameof(ContainerImageTag); | ||
public static string ContainerImageTags = nameof(ContainerImageTags); | ||
public static string ContainerWorkingDirectory = nameof(ContainerWorkingDirectory); | ||
public static string ContainerEntrypoint = nameof(ContainerEntrypoint); | ||
public static string UseAppHost = nameof(UseAppHost); | ||
public static string ContainerLabel = nameof(ContainerLabel); | ||
public static string SelfContained = nameof(SelfContained); | ||
public static string ContainerPort = nameof(ContainerPort); | ||
public static string ContainerEnvironmentVariable = nameof(ContainerEnvironmentVariable); | ||
|
||
public static string ComputeContainerConfig = nameof(ComputeContainerConfig); | ||
public static string AssemblyName = nameof(AssemblyName); | ||
public static string ContainerBaseRegistry = nameof(ContainerBaseRegistry); | ||
public static string ContainerBaseName = nameof(ContainerBaseName); | ||
public static string ContainerBaseTag = nameof(ContainerBaseTag); | ||
} | ||
|
||
public static class ErrorCodes | ||
{ | ||
public static string CONTAINER001 = nameof(CONTAINER001); | ||
public static string CONTAINER004 = nameof(CONTAINER004); | ||
public static string CONTAINER005 = nameof(CONTAINER005); | ||
} | ||
} |
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
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
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