namespace Amazon.Lambda.Tools.TemplateProcessor { /// /// Properties to use when building the current project which might have come from the command line. /// public class DefaultLocationOption { /// /// Build Configuration e.g. Release /// /// public string Configuration { get; set; } /// /// .NET Target Framework e.g. netcoreapp3.1 /// public string TargetFramework { get; set; } /// /// Additional parameters to pass when invoking dotnet publish /// public string MSBuildParameters { get; set; } /// /// If true disables checking for correct version of Microsoft.AspNetCore.App. /// public bool DisableVersionCheck { get; set; } /// /// If the current project is already built pass in the current compiled package zip file. /// public string Package { get; set; } } }