1 write to TargetFramework
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
722ProcessToolArg(() => this.TargetFramework = TargetFrameworkHelper.GetValidFrameworkInfo(targetFrameworkMoniker));
8 references to TargetFramework
dotnet-svcutil-lib (8)
Bootstrapper\SvcutilBootstrapper.cs (1)
110bool isSupportedTFM = TargetFrameworkHelper.IsSupportedFramework(this.Options.TargetFramework.FullName, out var frameworkInfo);
CommandProcessorOptions.cs (6)
599this.RequiresBoostrapping = SvcutilBootstrapper.RequiresBootstrapping(this.TargetFramework, this.References); 618bool resolveReferences = this.Project != null && this.TargetFramework.IsDnx && this.NoBootstrapping != true && this.TypeReuseMode != Svcutil.TypeReuseMode.None && 684if (TargetFrameworkHelper.IsEndofLifeFramework(this.TargetFramework?.FullName)) 686this.AddWarning(string.Format(CultureInfo.CurrentCulture, SR.WrnOutOfSupportTargetFrameworkFormat, this.TargetFramework.FullName)); 690if (this.TargetFramework == null) 725AppSettings.Initialize(this.TargetFramework);
Tool.cs (1)
180{ "TargetFramework", options?.TargetFramework?.FullName },