2019-08-15 04:30:37 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Wabbajack.Common;
|
2019-09-26 03:18:36 +00:00
|
|
|
|
using Microsoft.Win32;
|
2019-11-05 04:14:31 +00:00
|
|
|
|
using System.Reactive;
|
2019-08-15 04:30:37 +00:00
|
|
|
|
|
|
|
|
|
namespace VirtualFileSystem.Test
|
|
|
|
|
{
|
2019-09-14 04:35:42 +00:00
|
|
|
|
internal class Program
|
2019-08-15 04:30:37 +00:00
|
|
|
|
{
|
2019-09-14 04:35:42 +00:00
|
|
|
|
private static void Main(string[] args)
|
2019-08-15 04:30:37 +00:00
|
|
|
|
{
|
2019-09-26 03:18:36 +00:00
|
|
|
|
var result = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\7-zip\");
|
|
|
|
|
|
2019-11-05 04:14:31 +00:00
|
|
|
|
Utils.LogMessages.Subscribe(s => Console.WriteLine(s));
|
|
|
|
|
Utils.StatusUpdates.Subscribe((i) => Console.Write(i.Message + "\r"));
|
2019-09-24 11:27:43 +00:00
|
|
|
|
VFS.VirtualFileSystem.VFS.AddRoot(@"D:\tmp\archivetests");
|
2019-08-15 04:30:37 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-14 04:35:42 +00:00
|
|
|
|
}
|