Skip to content

Commit

Permalink
Putting setup snapshots under the Temp folder too
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Apr 14, 2022
1 parent ab6caff commit ce06581
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Lombiq.Tests.UI/Services/OrchardCoreSetupConfiguration.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using Lombiq.Tests.UI.Constants;
using System;
using System.IO;
using System.Threading.Tasks;

namespace Lombiq.Tests.UI.Services;
Expand Down Expand Up @@ -30,7 +31,8 @@ public class OrchardCoreSetupConfiguration
/// </summary>
public bool FastFailSetup { get; set; } = true;

public string SetupSnapshotDirectoryPath { get; set; } = DirectoryPaths.SetupSnapshot;
public string SetupSnapshotDirectoryPath { get; set; } =
Path.Combine(DirectoryPaths.Temp, DirectoryPaths.SetupSnapshot);

public BeforeSetupHandler BeforeSetup { get; set; }
}

0 comments on commit ce06581

Please sign in to comment.