1e21e33ade
Move SecureStoreManager project and tests to Deprecated folder and remove from solution. SecureStore functionality is now integrated into ConfigManager.
15 lines
422 B
C#
15 lines
422 B
C#
using Avalonia;
|
|
using Avalonia.Headless;
|
|
using JdeScoping.SecureStoreManager;
|
|
|
|
[assembly: AvaloniaTestApplication(typeof(JdeScoping.SecureStoreManager.Tests.TestAppBuilder))]
|
|
|
|
namespace JdeScoping.SecureStoreManager.Tests;
|
|
|
|
public class TestAppBuilder
|
|
{
|
|
public static AppBuilder BuildAvaloniaApp() =>
|
|
AppBuilder.Configure<App>()
|
|
.UseHeadless(new AvaloniaHeadlessPlatformOptions());
|
|
}
|