12 references to RuntimeFlavor
Microsoft.AspNetCore.Server.IntegrationTesting (12)
Common\DeploymentParameters.cs (2)
52
RuntimeFlavor
runtimeFlavor,
100
public
RuntimeFlavor
RuntimeFlavor { get; set; }
Deployers\ApplicationDeployer.cs (4)
37
if (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.None && !string.IsNullOrEmpty(DeploymentParameters.TargetFramework))
58
private static
RuntimeFlavor
GetRuntimeFlavor(string tfm)
62
return
RuntimeFlavor
.Clr;
64
return
RuntimeFlavor
.CoreClr;
Deployers\NginxDeployer.cs (1)
58
if (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.CoreClr
Deployers\RemoteWindowsDeployer\RemoteWindowsDeploymentParameters.cs (1)
12
RuntimeFlavor
runtimeFlavor,
Deployers\SelfHostDeployer.cs (4)
39
if (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.Clr
46
if (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.CoreClr
97
?? (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.Clr ? Tfm.Net462 : Tfm.NetCoreApp22);
105
if (DeploymentParameters.RuntimeFlavor ==
RuntimeFlavor
.CoreClr && DeploymentParameters.ApplicationType == ApplicationType.Portable)