1 write to FullName
dotnet-svcutil-lib (1)
Shared\FrameworkInfo.cs (1)
99fxInfo.FullName = fullFrameworkName;
9 references to FullName
dotnet-svcutil-lib (9)
Bootstrapper\SvcutilBootstrapper.cs (2)
110bool isSupportedTFM = TargetFrameworkHelper.IsSupportedFramework(this.Options.TargetFramework.FullName, out var frameworkInfo); 126var targetFramework = frameworkInfo.FullName;
Shared\FrameworkInfo.cs (1)
125return this.FullName;
Shared\MSBuildProj.cs (3)
144_packageReferenceGroup.Add(new XAttribute("Condition", $"'$(TargetFramework)' != '{netfxInfo.FullName}'")); 241msbuildProj._targetFramework = fxInfo.FullName; 552this.ReferenceGroup.Add(new XElement("Reference", new XAttribute("Condition", $"'$(TargetFramework)' == '{netfxInfo.FullName}'"), new XAttribute("Include", dependency.AssemblyName), new XElement("HintPath", dependency.FullPath)));
Shared\Options\OptionValueParser.cs (2)
126value = fx.FullName; 194value = fx.FullName;
Tool.cs (1)
180{ "TargetFramework", options?.TargetFramework?.FullName },