31 references to ProjectProperties
Microsoft.NET.ProjectData (31)
CacheFileReader.cs (2)
966
if (this.SliceDimensions.TryGetValue(
ProjectProperties
.TargetFramework, out string? targetFramework))
968
if (this.Properties.TryGetValue(
ProjectProperties
.TargetFramework, out targetFramework))
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\TypedProperties.g.cs (24)
16
public string AssemblyName => this.inner[
ProjectProperties
.AssemblyName] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.AssemblyName + "' is missing. The .lscache file may be incomplete or the property merge failed.");
18
public string OutputType => this.inner[
ProjectProperties
.OutputType] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.OutputType + "' is missing. The .lscache file may be incomplete or the property merge failed.");
20
public string TargetFramework => this.inner[
ProjectProperties
.TargetFramework] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.TargetFramework + "' is missing. The .lscache file may be incomplete or the property merge failed.");
22
public string TargetFrameworkIdentifier => this.inner[
ProjectProperties
.TargetFrameworkIdentifier] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.TargetFrameworkIdentifier + "' is missing. The .lscache file may be incomplete or the property merge failed.");
24
public string ProjectAssetsFile => this.inner[
ProjectProperties
.ProjectAssetsFile] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.ProjectAssetsFile + "' is missing. The .lscache file may be incomplete or the property merge failed.");
26
public string TargetPath => this.inner[
ProjectProperties
.TargetPath] ?? throw new InvalidOperationException("Required Data Model property '" +
ProjectProperties
.TargetPath + "' is missing. The .lscache file may be incomplete or the property merge failed.");
29
public string? RootNamespace => this.inner[
ProjectProperties
.RootNamespace];
31
public string? IsTestProject => this.inner[
ProjectProperties
.IsTestProject];
33
public string? TargetFrameworkVersion => this.inner[
ProjectProperties
.TargetFrameworkVersion];
35
public string? TargetRefPath => this.inner[
ProjectProperties
.TargetRefPath];
37
public string? MaxSupportedLangVersion => this.inner[
ProjectProperties
.MaxSupportedLangVersion];
39
public string? RunAnalyzers => this.inner[
ProjectProperties
.RunAnalyzers];
41
public string? RunAnalyzersDuringLiveAnalysis => this.inner[
ProjectProperties
.RunAnalyzersDuringLiveAnalysis];
43
public string? CompilerGeneratedFilesOutputPath => this.inner[
ProjectProperties
.CompilerGeneratedFilesOutputPath];
45
public string? BaseIntermediateOutputPath => this.inner[
ProjectProperties
.BaseIntermediateOutputPath];
47
public string? BaseOutputPath => this.inner[
ProjectProperties
.BaseOutputPath];
49
public string? SolutionPath => this.inner[
ProjectProperties
.SolutionPath];
51
public string? TemporaryDependencyNodeTargetIdentifier => this.inner[
ProjectProperties
.TemporaryDependencyNodeTargetIdentifier];
Model\ProjectDataSnapshotFactory.cs (5)
24
private static readonly KeySchema PropertySchema = new(
ProjectProperties
.All);
103
foreach (string requiredProp in
ProjectProperties
.Required)
108
string sliceLabel = snapshot.Dimensions.TryGetValue(
ProjectProperties
.TargetFramework, out string? tf) ? tf : "default";
118
string sliceLabel = snapshot.Dimensions.TryGetValue(
ProjectProperties
.TargetFramework, out string? tf) ? tf : "default";
244
if (PropertySchema.TryGetIndex(
ProjectProperties
.SolutionPath, out int solutionPathIndex))