本文整理汇总了C#中Microsoft.Build.Evaluation.Project.GetOutputSrcSrvFile方法的典型用法代码示例。如果您正苦于以下问题:C# Project.GetOutputSrcSrvFile方法的具体用法?C# Project.GetOutputSrcSrvFile怎么用?C# Project.GetOutputSrcSrvFile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Build.Evaluation.Project
的用法示例。
在下文中一共展示了Project.GetOutputSrcSrvFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: LinkProject
private static bool LinkProject(Context context, Project project, string shaHash)
{
Argument.IsNotNull(() => context);
Argument.IsNotNull(() => project);
try
{
var projectName = project.GetProjectName();
Log.Info("Handling project '{0}'", projectName);
Log.Indent();
var compilables = project.GetCompilableItems().Select(x => x.GetFullFileName());
var projectPdbFile = Path.GetFullPath(project.GetOutputPdbFile());
var projectStcSrvFile = Path.GetFullPath(project.GetOutputSrcSrvFile());
if (!File.Exists(projectPdbFile))
{
Log.Warning("No pdb file found for '{0}', is project built in '{1}' mode with pdb files enabled? Expected file is '{2}'", projectName, context.ConfigurationName, projectPdbFile);
return false;
}
Log.Info("Verifying pdb file");
var missingFiles = project.VerifyPdbFiles(compilables);
foreach (var missingFile in missingFiles)
{
Log.Warning("Missing file '{0}' or checksum '{1}' did not match", missingFile.Key, missingFile.Value);
}
var rawUrl = string.Format("{0}/{{0}}/%var2%", context.Provider.RawGitUrl);
var paths = new Dictionary<string, string>();
foreach (var compilable in compilables)
{
var relativePathForUrl = compilable.Replace(context.SolutionDirectory, string.Empty).Replace("\\", "/");
while (relativePathForUrl.StartsWith("/"))
{
relativePathForUrl = relativePathForUrl.Substring(1, relativePathForUrl.Length - 1);
}
paths.Add(compilable, relativePathForUrl);
}
project.CreateSrcSrv(rawUrl, shaHash, paths);
Log.Debug("Created source server link file, updating pdb file '{0}'", context.GetRelativePath(projectPdbFile));
PdbStrHelper.Execute(projectPdbFile, projectStcSrvFile);
}
catch (Exception ex)
{
Log.Warning(ex, "An error occurred while processing project '{0}'", project.GetProjectName());
throw;
}
finally
{
Log.Unindent();
Log.Info(string.Empty);
}
return true;
}