2 writes to _install
Microsoft.Build.Tasks.Core (2)
ManifestUtil\DeployManifest.cs (2)
383
set =>
_install
= Convert.ToString(value, CultureInfo.InvariantCulture);
680
set =>
_install
= value;
3 references to _install
Microsoft.Build.Tasks.Core (3)
ManifestUtil\DeployManifest.cs (3)
382
get => ConvertUtil.ToBoolean(
_install
);
679
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