30 references to ChangeExtension
PresentationBuildTasks (8)
BuildTasks\Microsoft\Build\Tasks\Windows\MarkupCompilePass1.cs (4)
727string buildCodeFile = OutputPath + Path.ChangeExtension(relativeFilePath, buildExtension); 728string intelCodeFile = OutputPath + Path.ChangeExtension(relativeFilePath, intellisenseExtension); 736bamlFile = OutputPath + Path.ChangeExtension(relativeFilePath, SharedStrings.BamlExtension); 1693locFile = Path.ChangeExtension(xamlRelativeFilePath, SharedStrings.LocExtension);
BuildTasks\Microsoft\Build\Tasks\Windows\MarkupCompilePass2.cs (1)
800string bamlFileName = Path.ChangeExtension(resolvedXamlfile, SharedStrings.BamlExtension);
BuildTasks\Microsoft\Build\Tasks\Windows\ResourcesGenerator.cs (1)
417path = Path.ChangeExtension(path, SharedStrings.BamlExtension);
BuildTasks\Microsoft\Build\Tasks\Windows\UidManager.cs (2)
375return Path.Combine(_backupPath, Path.ChangeExtension(Path.GetFileName(fileName), "uidtemp")); 380return Path.Combine(_backupPath, Path.ChangeExtension(Path.GetFileName(fileName), "uidbackup"));
PresentationFramework (3)
src\Framework\MS\Internal\AppModel\ResourcePart.cs (1)
164string newName = Path.ChangeExtension(_name, ResourceContainer.BamlExt);
src\Framework\System\Windows\Interop\DocobjHost.cs (2)
1353_applicationManifestPath = Path.ChangeExtension(path, ".exe.manifest"); 1354_exePath = Path.ChangeExtension(path, ".exe");
System (2)
services\monitoring\system\diagnosticts\Process.cs (1)
876processInfo.processName = Path.ChangeExtension(Path.GetFileName(mainModuleName), null);
services\monitoring\system\diagnosticts\ProcessManager.cs (1)
373processInfo.processName = Path.ChangeExtension(Path.GetFileName(name), null);
System.Data.Linq (1)
SqlClient\SqlProvider.cs (1)
642string createdb = SqlBuilder.GetCreateDatabaseCommand(catalog, filename, Path.ChangeExtension(filename, ".ldf"));
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Scripts.cs (1)
285asmPath = Path.ChangeExtension(asmPath, "." + GetLanguageName(lastScript.compilerInfo) + Path.GetExtension(asmPath));
System.Drawing (1)
commonui\System\Drawing\BitmapSelector.cs (1)
58return Path.ChangeExtension(filePath, Suffix + Path.GetExtension(filePath));
System.Web (2)
Compilation\BuildResultCache.cs (1)
372var pdbPath = Path.ChangeExtension(f.FullName, ".pdb");
Compilation\WebReferencesBuildProvider.cs (1)
115string fileName = System.IO.Path.ChangeExtension(UrlPath.GetFileName(child.VirtualPath), null);
System.Web.Entity.Design (1)
parent\parent\parent\parent\InternalApis\NDP_FX\inc\BitmapSelector.cs (1)
58return Path.ChangeExtension(filePath, Suffix + Path.GetExtension(filePath));
System.Web.Services (3)
System\Web\Services\Discovery\ContractReference.cs (1)
161return Path.ChangeExtension(fileName, ".wsdl");
System\Web\Services\Discovery\DiscoveryDocumentReference.cs (1)
69return Path.ChangeExtension(filename, ".disco"); // [Microsoft] change default extension
System\Web\Services\Discovery\SchemaReference.cs (1)
156return Path.ChangeExtension(fileName, ".xsd");
System.Windows.Forms (1)
parent\parent\parent\InternalApis\NDP_FX\inc\BitmapSelector.cs (1)
58return Path.ChangeExtension(filePath, Suffix + Path.GetExtension(filePath));
System.WorkflowServices (2)
System\ServiceModel\Activation\WorkflowServiceBuildProvider.cs (1)
28dependencies.Add(Path.ChangeExtension(base.VirtualPath, ruleFileExtension));
System\ServiceModel\Activation\WorkflowServiceHostFactory.cs (1)
66string ruleFilePath = Path.ChangeExtension(xomlVirtualPath, WorkflowServiceBuildProvider.ruleFileExtension);
XamlBuildTask (5)
Microsoft\Build\Tasks\Xaml\GenerateTemporaryAssemblyTask.cs (2)
115randomName = Path.ChangeExtension(randomName, ""); 116string filename = Path.ChangeExtension(randomName, ".tmp_proj");
Microsoft\Build\Tasks\Xaml\PartialClassGenerationTaskInternal.cs (3)
420string codeFileName = Path.ChangeExtension(outputFileName, GetGeneratedSourceExtension(codeDomProvider)); 421string markupFileName = Path.ChangeExtension(outputFileName, GeneratedSourceExtension + XamlBuildTaskServices.XamlExtension); 714string desiredSourceFilePath = Path.ChangeExtension(markupItemPath, "xaml." + codeDomProvider.FileExtension);