QualiSystems / FluentTc

:ocean: :two_men_holding_hands: :office: Integrate with TeamCity fluently
https://www.nuget.org/packages/fluenttc
Apache License 2.0
44 stars 36 forks source link

Implementing GetProject() with lambda calls #107

Open WiseLordship opened 7 years ago

WiseLordship commented 7 years ago

Issue details

Implementation for getting projects based on lambda expressions.

Relates to issue

102

Checklist

Example of using new/modified functionality

  var project = new RemoteTc(c=>c.ToHost("HOST").AsGuest())
     .GetProject(project => project.Id("FluentTc") );

  var project = new RemoteTc(c=>c.ToHost("HOST").AsGuest())
     .GetProject(project => project.Name("FluentTc") );
borismod commented 6 years ago

@WiseLordship what is the status of this PR?