Skip to content

Commit

Permalink
Project
Browse files Browse the repository at this point in the history
  • Loading branch information
FriggaHel committed Mar 22, 2024
1 parent 67c59a6 commit 1f7d8d7
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions visual-dotnet/SauceLabs.Visual/VisualClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,12 +198,10 @@ private async Task<VisualBuild> FindBuildById(string buildId)
/// <returns>a <c>VisualBuild</c> instance</returns>
private async Task<VisualBuild> CreateBuild(CreateBuildOptions? options = null)
{
var projectName = options?.Project ?? Assembly.GetExecutingAssembly().FullName;

var result = (await _api.CreateBuild(new CreateBuildIn
{
Name = options?.Name,
Project = projectName,
Project = options?.Project,
Branch = options?.Branch,
CustomId = options?.CustomId,
DefaultBranch = options?.DefaultBranch,
Expand Down

0 comments on commit 1f7d8d7

Please sign in to comment.