14 references to FileNameSuffixes
dotnet (10)
CommandFactory\CommandResolution\AppBaseDllCommandResolver.cs (1)
19if (commandResolverArguments.CommandName.EndsWith(FileNameSuffixes.DotNet.DynamicLib))
CommandFactory\CommandResolution\PackagedCommandSpecFactory.cs (1)
101if (commandExtension == FileNameSuffixes.DotNet.DynamicLib)
CommandFactory\CommandResolution\PackagedCommandSpecFactoryWithCliRuntime.cs (1)
20var runtimeConfigFile = Path.ChangeExtension(commandPath, FileNameSuffixes.RuntimeConfigJson);
CommandFactory\CommandResolution\ProjectDependenciesCommandResolver.cs (1)
162allowedCommandExtensions.Add(FileNameSuffixes.DotNet.DynamicLib);
CommandFactory\CommandResolution\ProjectToolsCommandResolver.cs (2)
22private readonly List<string> _allowedCommandExtensions = [FileNameSuffixes.DotNet.DynamicLib]; 289toolLibrary.Name + FileNameSuffixes.DepsJson);
CommandFactory\CommandResolution\PublishPathCommandSpecFactory.cs (1)
33if (commandExtension == FileNameSuffixes.DotNet.DynamicLib)
Commands\Run\CSharpCompilerCommand.cs (1)
265var apphostSource = Path.Join(SdkPath, "..", "..", "packs", $"Microsoft.NETCore.App.Host.{rid}", RuntimeVersion, "runtimes", rid, "native", $"apphost{FileNameSuffixes.CurrentPlatform.Exe}");
Commands\Run\FileBasedAppRunPlan.cs (2)
347Path.Join(binDirectory, fileNameWithoutExtension + FileNameSuffixes.CurrentPlatform.Exe), 349Path.Join(binDirectory, fileNameWithoutExtension + FileNameSuffixes.RuntimeConfigJson));
dotnet-aot (4)
src\sdk\src\Cli\dotnet\CommandFactory\CommandResolution\AppBaseDllCommandResolver.cs (1)
19if (commandResolverArguments.CommandName.EndsWith(FileNameSuffixes.DotNet.DynamicLib))
src\sdk\src\Cli\dotnet\CommandFactory\CommandResolution\PublishPathCommandSpecFactory.cs (1)
33if (commandExtension == FileNameSuffixes.DotNet.DynamicLib)
src\sdk\src\Cli\dotnet\Commands\Run\FileBasedAppRunPlan.cs (2)
347Path.Join(binDirectory, fileNameWithoutExtension + FileNameSuffixes.CurrentPlatform.Exe), 349Path.Join(binDirectory, fileNameWithoutExtension + FileNameSuffixes.RuntimeConfigJson));