2 writes to _install
Microsoft.Build.Tasks.Core (2)
ManifestUtil\DeployManifest.cs (2)
382
set =>
_install
= Convert.ToString(value, CultureInfo.InvariantCulture);
673
set =>
_install
= value;
3 references to _install
Microsoft.Build.Tasks.Core (3)
ManifestUtil\DeployManifest.cs (3)
381
get => ConvertUtil.ToBoolean(
_install
);
672
get => !String.IsNullOrEmpty(
_install
) ?
_install
.ToLower(CultureInfo.InvariantCulture) : "true"; // NOTE: Install attribute shouldn't be null in the manifest, so specify install="true" by default