11 references to FileNameSuffixes
dotnet (11)
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 (3)
260var apphostTarget = Path.Join(binDir, $"{FileNameWithoutExtension}{FileNameSuffixes.CurrentPlatform.Exe}"); 264var apphostSource = Path.Join(SdkPath, "..", "..", "packs", $"Microsoft.NETCore.App.Host.{rid}", RuntimeVersion, "runtimes", rid, "native", $"apphost{FileNameSuffixes.CurrentPlatform.Exe}"); 272var runtimeConfig = Path.Join(binDir, $"{FileNameWithoutExtension}{FileNameSuffixes.RuntimeConfigJson}");
Commands\Run\RunCommand.cs (1)
670var exePath = Path.Join(artifactsPath, "bin", "debug", Path.GetFileNameWithoutExtension(entryPointFileFullPath) + FileNameSuffixes.CurrentPlatform.Exe);