Exemplo n.º 1
0
 private static string GetPackagePath(Runtime.Project project, string outputPath, bool symbols = false)
 {
     string fileName = $"{project.Name}.{project.Version}{(symbols ? ".symbols" : string.Empty)}{NuGet.Constants.PackageExtension}";
     return Path.Combine(outputPath, fileName);
 }