19 references to PropertyNames
dotnet-watch (19)
Build\EvaluationResult.cs (8)
53.SetItem(PropertyNames.DotNetWatchBuild, "true") 54.SetItem(PropertyNames.DesignTimeBuild, "true") 55.SetItem(PropertyNames.SkipCompilerExecution, "true") 56.SetItem(PropertyNames.ProvideCommandLineArgs, "true") 97if (projectInstance.GetPropertyValue(PropertyNames.TargetFramework) == "") 102var customCollectWatchItems = projectInstance.GetStringListPropertyValue(PropertyNames.CustomCollectWatchItems); 128projectInstance.GetBooleanPropertyValue(PropertyNames.UsingMicrosoftNETSdkRazor) && 129projectInstance.GetBooleanPropertyValue(PropertyNames.DotNetWatchContentFiles, defaultValue: true))
Build\ProjectGraphUtilities.cs (11)
80=> projectNode.ProjectInstance.GetPropertyValue(PropertyNames.TargetFramework); 83=> projectNode.GetStringListPropertyValue(PropertyNames.TargetFrameworks); 86=> EnvironmentVariableNames.TryParseTargetFrameworkVersion(projectNode.ProjectInstance.GetPropertyValue(PropertyNames.TargetFrameworkVersion)); 89=> projectNode.GetStringListPropertyValue(PropertyNames.WebAssemblyHotReloadCapabilities); 98=> IsNetCoreApp(projectNode.ProjectInstance.GetPropertyValue(PropertyNames.TargetFrameworkIdentifier)); 107=> projectNode.ProjectInstance.GetPropertyValue(PropertyNames.TargetPath) is { Length: >0 } path ? Path.GetDirectoryName(Path.Combine(projectNode.ProjectInstance.Directory, path)) : null; 110=> projectNode.ProjectInstance.GetPropertyValue(PropertyNames.TargetName); 113=> projectNode.ProjectInstance.GetPropertyValue(PropertyNames.IntermediateOutputPath) is { Length: >0 } path ? Path.Combine(projectNode.ProjectInstance.Directory, path) : null; 119=> projectNode.GetBooleanPropertyValue(PropertyNames.HotReloadAutoRestart); 122=> projectNode.GetBooleanPropertyValue(PropertyNames.EnableDefaultItems); 125=> projectNode.GetStringListPropertyValue(PropertyNames.DefaultItemExcludes);