21 references to FullPath
dotnet-svcutil-lib (10)
CommandProcessorOptions.cs (5)
328var projectFile = this.Project?.FullPath; 509throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrNoUpdateParamsFileFoundFormat, this.Project.FullPath)); 517throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrMoreThanOneUpdateParamsFilesFoundFormat, this.Project.FullPath, Switches.Update.Name, svcRefNames)); 531throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrServiceReferenceNotFoundUnderProjectFormat, this.UpdateServiceReferenceFolder, this.Project.FullPath)); 539throw new ToolArgumentException(string.Format(CultureInfo.CurrentCulture, SR.ErrNoUpdateParamsFileFoundFormat, this.Project.FullPath));
Shared\MSBuildProj.cs (4)
693using (await SafeLogger.WriteStartOperationAsync(logger, $"Saving project file: \"{this.FullPath}\"").ConfigureAwait(false)) 701using (StreamWriter writer = File.CreateText(this.FullPath)) 976propertyTable = await _propertyResolver.EvaluateProjectPropertiesAsync(this.FullPath, this.TargetFramework, propertyNames, this.GlobalProperties, logger, cancellationToken).ConfigureAwait(false); 1020return this.FullPath;
Shared\Options\OptionValueParser.cs (1)
122value = proj.FullPath.Replace("\\", "/");
dotnet-svcutil-lib.Tests (11)
ProjectUtils.cs (5)
87Assert.True(File.Exists(project?.FullPath), $"{nameof(project)} is not initialized!"); 100string srcPath = project.FullPath.Replace("csproj", "cs"); 142using (var sr2 = new StreamReader(project.FullPath)) 149using (var sw2 = new StreamWriter(project.FullPath)) 175Assert.True(File.Exists(project?.FullPath), $"{nameof(project)} is not initialized!");
TestInit.cs (3)
115File.Copy(project.FullPath, projectPath); 167Assert.True(File.Exists(g_StarterProject.FullPath), $"{nameof(g_StarterProject)} is not initialized!"); 528WriteLog("Test project: " + this_TestCaseProject?.FullPath);
UnitTest.cs (3)
240.Replace("$projectPath$", this_TestCaseProject.FullPath) 332File.WriteAllText(jsonFileDstPath, File.ReadAllText(jsonFileDstPath).Replace("$testCaseProject$", this_TestCaseProject.FullPath.Replace("\\", "/"))); 349var optionsJson = options.Json.Replace(this_TestCaseProject.FullPath.Replace("\\", "/"), "$testCaseProject$");