1 write to TargetFramework
dotnet-svcutil-lib (1)
CommandProcessorOptions.cs (1)
715ProcessToolArg(() => 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)
592this.RequiresBoostrapping = SvcutilBootstrapper.RequiresBootstrapping(this.TargetFramework, this.References); 611bool resolveReferences = this.Project != null && this.TargetFramework.IsDnx && this.NoBootstrapping != true && this.TypeReuseMode != Svcutil.TypeReuseMode.None && 677if (TargetFrameworkHelper.IsEndofLifeFramework(this.TargetFramework?.FullName)) 679this.AddWarning(string.Format(CultureInfo.CurrentCulture, SR.WrnOutOfSupportTargetFrameworkFormat, this.TargetFramework.FullName)); 683if (this.TargetFramework == null) 718AppSettings.Initialize(this.TargetFramework);
Tool.cs (1)
180{ "TargetFramework", options?.TargetFramework?.FullName },