nuget-extensions/nuget-commands/src.5.8/NuGetTeamCityListPackagesCommand.cs [18:32]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [Command("TeamCity.ListPackages", "Lists packages for given xml list of packages")] public class NuGetTeamCityListPackagesCommand : ListCommandBase { [Option("Path to file containing package-version pairs to check for updates")] public string Request { get; set; } [Option("Path to file to write result of update check")] public string Response { get; set; } protected override void ExecuteCommandImpl() { if (string.IsNullOrEmpty(Request) || !File.Exists(Request)) { var message = string.Format("Request file '{0}' was not found", Request); System.Console.Error.WriteLine(message); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - nuget-extensions/nuget-commands/src/NuGetTeamCityListPackagesCommand.cs [16:30]: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - [Command("TeamCity.ListPackages", "Lists packages for given xml list of packages")] public class NuGetTeamCityListPackagesCommand : ListCommandBase { [Option("Path to file containing package-version pairs to check for updates")] public string Request { get; set; } [Option("Path to file to write result of update check")] public string Response { get; set; } protected override void ExecuteCommandImpl() { if (string.IsNullOrEmpty(Request) || !File.Exists(Request)) { var message = string.Format("Request file '{0}' was not found", Request); System.Console.Error.WriteLine(message); - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -