Add Views namespace
This commit is contained in:
@@ -1,65 +1,65 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class DataDisplay : Toplevel
|
public class DataDisplay : Toplevel
|
||||||
{
|
{
|
||||||
private string _title;
|
private string _title;
|
||||||
private byte[] _data;
|
private byte[] _data;
|
||||||
|
|
||||||
public DataDisplay(string title, byte[] data)
|
public DataDisplay(string title, byte[] data)
|
||||||
{
|
{
|
||||||
_title = title;
|
_title = title;
|
||||||
_data = data;
|
_data = data;
|
||||||
|
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
Modal = true;
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.TopLevel;
|
ColorScheme = Colors.TopLevel;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
var win = new Window(_title)
|
var win = new Window(_title)
|
||||||
{
|
{
|
||||||
X = 0,
|
X = 0,
|
||||||
Y = 0,
|
Y = 0,
|
||||||
|
|
||||||
// By using Dim.Fill(), it will automatically resize without manual intervention
|
// By using Dim.Fill(), it will automatically resize without manual intervention
|
||||||
Width = Dim.Fill(),
|
Width = Dim.Fill(),
|
||||||
Height = Dim.Fill()
|
Height = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
||||||
|
|
||||||
Add(win);
|
Add(win);
|
||||||
|
|
||||||
var quitButton = new Button("_Ok")
|
var quitButton = new Button("_Ok")
|
||||||
{
|
{
|
||||||
X = Pos.Right(this) - 9,
|
X = Pos.Right(this) - 9,
|
||||||
Y = Pos.Bottom(this) - 2
|
Y = Pos.Bottom(this) - 2
|
||||||
};
|
};
|
||||||
quitButton.Clicked += () => Application.RequestStop();
|
quitButton.Clicked += () => Application.RequestStop();
|
||||||
|
|
||||||
var stream = new MemoryStream(_data);
|
var stream = new MemoryStream(_data);
|
||||||
var text = new HexView(stream)
|
var text = new HexView(stream)
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Center(),
|
Y = Pos.Center(),
|
||||||
Height = Dim.Fill() - 5,
|
Height = Dim.Fill() - 5,
|
||||||
Width = Dim.Fill() - 2,
|
Width = Dim.Fill() - 2,
|
||||||
AllowEdits = false
|
AllowEdits = false
|
||||||
};
|
};
|
||||||
|
|
||||||
Add(text, quitButton);
|
Add(text, quitButton);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,87 +1,87 @@
|
|||||||
using NStack;
|
using NStack;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class EntryDialog : Dialog
|
public class EntryDialog : Dialog
|
||||||
{
|
{
|
||||||
private Func<ustring, bool> _validator;
|
private Func<ustring, bool> _validator;
|
||||||
private bool _success;
|
private bool _success;
|
||||||
private string _title;
|
private string _title;
|
||||||
private string _errorMessage;
|
private string _errorMessage;
|
||||||
|
|
||||||
public EntryDialog(string title, Func<ustring, bool> validator = null, string errorMessage = "") : base(title, 60, 7)
|
public EntryDialog(string title, Func<ustring, bool> validator = null, string errorMessage = "") : base(title, 60, 7)
|
||||||
{
|
{
|
||||||
_title = title;
|
_title = title;
|
||||||
_errorMessage = errorMessage;
|
_errorMessage = errorMessage;
|
||||||
|
|
||||||
_validator = validator;
|
_validator = validator;
|
||||||
|
|
||||||
ColorScheme = Colors.ColorSchemes["Menu"];
|
ColorScheme = Colors.ColorSchemes["Menu"];
|
||||||
}
|
}
|
||||||
|
|
||||||
public bool TryShow(out ustring input)
|
public bool TryShow(out ustring input)
|
||||||
{
|
{
|
||||||
_success = false;
|
_success = false;
|
||||||
|
|
||||||
var levelEntry = new TextField("")
|
var levelEntry = new TextField("")
|
||||||
{
|
{
|
||||||
X = 1,
|
X = 1,
|
||||||
Y = 2,
|
Y = 2,
|
||||||
Width = Dim.Fill(),
|
Width = Dim.Fill(),
|
||||||
Height = 1
|
Height = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
var cancelButton = new Button("_Cancel")
|
var cancelButton = new Button("_Cancel")
|
||||||
{
|
{
|
||||||
X = Pos.Percent(82),
|
X = Pos.Percent(82),
|
||||||
Y = Pos.Percent(95)
|
Y = Pos.Percent(95)
|
||||||
};
|
};
|
||||||
cancelButton.Clicked += () => Application.RequestStop();
|
cancelButton.Clicked += () => Application.RequestStop();
|
||||||
|
|
||||||
|
|
||||||
var okButton = new Button("_Ok")
|
var okButton = new Button("_Ok")
|
||||||
{
|
{
|
||||||
X = Pos.Percent(70),
|
X = Pos.Percent(70),
|
||||||
Y = Pos.Percent(95)
|
Y = Pos.Percent(95)
|
||||||
};
|
};
|
||||||
okButton.Clicked += () => CheckInput(levelEntry.Text);
|
okButton.Clicked += () => CheckInput(levelEntry.Text);
|
||||||
|
|
||||||
Add(levelEntry, okButton, cancelButton);
|
Add(levelEntry, okButton, cancelButton);
|
||||||
|
|
||||||
levelEntry.SetFocus();
|
levelEntry.SetFocus();
|
||||||
|
|
||||||
Application.Run(this);
|
Application.Run(this);
|
||||||
|
|
||||||
if (_success)
|
if (_success)
|
||||||
{
|
{
|
||||||
input = levelEntry.Text;
|
input = levelEntry.Text;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
input = default;
|
input = default;
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void CheckInput(ustring input)
|
private void CheckInput(ustring input)
|
||||||
{
|
{
|
||||||
if (_validator?.Invoke(input) ?? true)
|
if (_validator?.Invoke(input) ?? true)
|
||||||
{
|
{
|
||||||
_success = true;
|
_success = true;
|
||||||
|
|
||||||
Application.RequestStop();
|
Application.RequestStop();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MessageBox.ErrorQuery(_title, _errorMessage, "Ok");
|
MessageBox.ErrorQuery(_title, _errorMessage, "Ok");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,53 +1,53 @@
|
|||||||
using NStack;
|
using NStack;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class FingerprintDialog : Dialog
|
public class FingerprintDialog : Dialog
|
||||||
{
|
{
|
||||||
public string ErrorTitle { get; set; }
|
public string ErrorTitle { get; set; }
|
||||||
public string ErrorMessage { get; set; }
|
public string ErrorMessage { get; set; }
|
||||||
|
|
||||||
public FingerprintDialog(string errorTitle, string errorMessage) : base(errorTitle, 60, 7)
|
public FingerprintDialog(string errorTitle, string errorMessage) : base(errorTitle, 60, 7)
|
||||||
{
|
{
|
||||||
ErrorTitle = errorTitle;
|
ErrorTitle = errorTitle;
|
||||||
ErrorMessage = errorMessage;
|
ErrorMessage = errorMessage;
|
||||||
|
|
||||||
ColorScheme = Colors.ColorSchemes["Menu"];
|
ColorScheme = Colors.ColorSchemes["Menu"];
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Show()
|
public void Show()
|
||||||
{
|
{
|
||||||
var label = new Label("Please place your finger flat on the sensor")
|
var label = new Label("Please place your finger flat on the sensor")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Center(),
|
Y = Pos.Center(),
|
||||||
Height = 1
|
Height = 1
|
||||||
};
|
};
|
||||||
|
|
||||||
Add(label);
|
Add(label);
|
||||||
|
|
||||||
Application.Run(this);
|
Application.Run(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Cancel()
|
public void Cancel()
|
||||||
{
|
{
|
||||||
Application.MainLoop.Invoke(() => Application.RequestStop());
|
Application.MainLoop.Invoke(() => Application.RequestStop());
|
||||||
}
|
}
|
||||||
|
|
||||||
public void CancelAndShowError()
|
public void CancelAndShowError()
|
||||||
{
|
{
|
||||||
Application.MainLoop.Invoke(() =>
|
Application.MainLoop.Invoke(() =>
|
||||||
{
|
{
|
||||||
MessageBox.ErrorQuery(ErrorTitle, ErrorMessage, "Ok");
|
MessageBox.ErrorQuery(ErrorTitle, ErrorMessage, "Ok");
|
||||||
|
|
||||||
Application.RequestStop();
|
Application.RequestStop();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,73 +1,73 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class SettingsDisplay : Toplevel
|
public class SettingsDisplay : Toplevel
|
||||||
{
|
{
|
||||||
private string _port;
|
private string _port;
|
||||||
private RadioGroup _radioPort;
|
private RadioGroup _radioPort;
|
||||||
|
|
||||||
public SettingsDisplay()
|
public SettingsDisplay()
|
||||||
{
|
{
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
Modal = true;
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.Error;
|
ColorScheme = Colors.Error;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
var win = new Window("Settings")
|
var win = new Window("Settings")
|
||||||
{
|
{
|
||||||
X = 0,
|
X = 0,
|
||||||
Y = 0,
|
Y = 0,
|
||||||
|
|
||||||
// By using Dim.Fill(), it will automatically resize without manual intervention
|
// By using Dim.Fill(), it will automatically resize without manual intervention
|
||||||
Width = Dim.Fill(),
|
Width = Dim.Fill(),
|
||||||
Height = Dim.Fill()
|
Height = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
||||||
|
|
||||||
Add(win);
|
Add(win);
|
||||||
|
|
||||||
// Window Content
|
// Window Content
|
||||||
var portLabel = new Label("Serial Port:")
|
var portLabel = new Label("Serial Port:")
|
||||||
{
|
{
|
||||||
X = 4,
|
X = 4,
|
||||||
Y = 3
|
Y = 3
|
||||||
};
|
};
|
||||||
_radioPort = new RadioGroup(new NStack.ustring[] { FingerprintSensor.PrimarySerialPort, FingerprintSensor.SecondarySerialPort })
|
_radioPort = new RadioGroup(new NStack.ustring[] { FingerprintSensor.PrimarySerialPort, FingerprintSensor.SecondarySerialPort })
|
||||||
{
|
{
|
||||||
X = Pos.Right(portLabel) + 2,
|
X = Pos.Right(portLabel) + 2,
|
||||||
Y = Pos.Top(portLabel),
|
Y = Pos.Top(portLabel),
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
var saveButton = new Button("_Save")
|
var saveButton = new Button("_Save")
|
||||||
{
|
{
|
||||||
X = Pos.Right(this) - 14,
|
X = Pos.Right(this) - 14,
|
||||||
Y = Pos.Bottom(this) - 4
|
Y = Pos.Bottom(this) - 4
|
||||||
};
|
};
|
||||||
saveButton.Clicked += () => { Save(); Application.RequestStop(); };
|
saveButton.Clicked += () => { Save(); Application.RequestStop(); };
|
||||||
|
|
||||||
win.Add(portLabel, _radioPort, saveButton);
|
win.Add(portLabel, _radioPort, saveButton);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Save()
|
private void Save()
|
||||||
{
|
{
|
||||||
_port = _radioPort.RadioLabels[_radioPort.SelectedItem].ToString();
|
_port = _radioPort.RadioLabels[_radioPort.SelectedItem].ToString();
|
||||||
|
|
||||||
File.WriteAllText(TUIManager.SettingsFilePath, _port);
|
File.WriteAllText(TUIManager.SettingsFilePath, _port);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,108 +1,108 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class SleepDisplay : Toplevel
|
public class SleepDisplay : Toplevel
|
||||||
{
|
{
|
||||||
private FingerprintSensor _fingerprintSensor;
|
private FingerprintSensor _fingerprintSensor;
|
||||||
private int _count;
|
private int _count;
|
||||||
private int _lastID;
|
private int _lastID;
|
||||||
private Label _sleepModeLabel;
|
private Label _sleepModeLabel;
|
||||||
private Label _readCountLabel;
|
private Label _readCountLabel;
|
||||||
private Label _lastReadLabel;
|
private Label _lastReadLabel;
|
||||||
|
|
||||||
public SleepDisplay(FingerprintSensor fingerprintSensor)
|
public SleepDisplay(FingerprintSensor fingerprintSensor)
|
||||||
{
|
{
|
||||||
_fingerprintSensor = fingerprintSensor;
|
_fingerprintSensor = fingerprintSensor;
|
||||||
_count = 0;
|
_count = 0;
|
||||||
_lastID = -1;
|
_lastID = -1;
|
||||||
|
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
Modal = true;
|
Modal = true;
|
||||||
|
|
||||||
ColorScheme = Colors.Error;
|
ColorScheme = Colors.Error;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
var win = new Window("Sleep")
|
var win = new Window("Sleep")
|
||||||
{
|
{
|
||||||
X = 0,
|
X = 0,
|
||||||
Y = 0,
|
Y = 0,
|
||||||
|
|
||||||
// By using Dim.Fill(), it will automatically resize without manual intervention
|
// By using Dim.Fill(), it will automatically resize without manual intervention
|
||||||
Width = Dim.Fill(),
|
Width = Dim.Fill(),
|
||||||
Height = Dim.Fill()
|
Height = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
||||||
|
|
||||||
Add(win);
|
Add(win);
|
||||||
|
|
||||||
// Window Content
|
// Window Content
|
||||||
_sleepModeLabel = new Label("Sleep mode is on, waiting for fingerprints...")
|
_sleepModeLabel = new Label("Sleep mode is on, waiting for fingerprints...")
|
||||||
{
|
{
|
||||||
X = 2,
|
X = 2,
|
||||||
Y = 1,
|
Y = 1,
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
_readCountLabel = new Label("Read: 0")
|
_readCountLabel = new Label("Read: 0")
|
||||||
{
|
{
|
||||||
X = Pos.Left(_sleepModeLabel),
|
X = Pos.Left(_sleepModeLabel),
|
||||||
Y = Pos.Bottom(_sleepModeLabel) + 1,
|
Y = Pos.Bottom(_sleepModeLabel) + 1,
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
_lastReadLabel = new Label("Last User: - 1")
|
_lastReadLabel = new Label("Last User: - 1")
|
||||||
{
|
{
|
||||||
X = Pos.Left(_readCountLabel),
|
X = Pos.Left(_readCountLabel),
|
||||||
Y = Pos.Bottom(_readCountLabel),
|
Y = Pos.Bottom(_readCountLabel),
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
var stopButton = new Button("_Stop")
|
var stopButton = new Button("_Stop")
|
||||||
{
|
{
|
||||||
X = Pos.Right(this) - 11,
|
X = Pos.Right(this) - 11,
|
||||||
Y = Pos.Bottom(this) - 2
|
Y = Pos.Bottom(this) - 2
|
||||||
};
|
};
|
||||||
stopButton.Clicked += () => { _fingerprintSensor.Waked -= FingerprintSensor_Waked; Application.RequestStop(); };
|
stopButton.Clicked += () => { _fingerprintSensor.Waked -= FingerprintSensor_Waked; Application.RequestStop(); };
|
||||||
|
|
||||||
win.Add(_sleepModeLabel, _readCountLabel, _lastReadLabel);
|
win.Add(_sleepModeLabel, _readCountLabel, _lastReadLabel);
|
||||||
|
|
||||||
Add(stopButton);
|
Add(stopButton);
|
||||||
|
|
||||||
_fingerprintSensor.Waked += FingerprintSensor_Waked;
|
_fingerprintSensor.Waked += FingerprintSensor_Waked;
|
||||||
|
|
||||||
_fingerprintSensor.Sleep();
|
_fingerprintSensor.Sleep();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateInfo()
|
private void UpdateInfo()
|
||||||
{
|
{
|
||||||
_readCountLabel.Text = $"Read: {_count}";
|
_readCountLabel.Text = $"Read: {_count}";
|
||||||
_lastReadLabel.Text = $"Last User: {_lastID}";
|
_lastReadLabel.Text = $"Last User: {_lastID}";
|
||||||
}
|
}
|
||||||
|
|
||||||
private void FingerprintSensor_Waked(FingerprintSensor sender)
|
private void FingerprintSensor_Waked(FingerprintSensor sender)
|
||||||
{
|
{
|
||||||
_fingerprintSensor.Wake();
|
_fingerprintSensor.Wake();
|
||||||
|
|
||||||
if (_fingerprintSensor.TryComparison1N(out var userInfo))
|
if (_fingerprintSensor.TryComparison1N(out var userInfo))
|
||||||
{
|
{
|
||||||
_count += 1;
|
_count += 1;
|
||||||
_lastID = userInfo.userID;
|
_lastID = userInfo.userID;
|
||||||
|
|
||||||
Application.MainLoop.Invoke(UpdateInfo);
|
Application.MainLoop.Invoke(UpdateInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
_fingerprintSensor.Sleep();
|
_fingerprintSensor.Sleep();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,416 +1,416 @@
|
|||||||
using NStack;
|
using NStack;
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Terminal.Gui;
|
using Terminal.Gui;
|
||||||
|
|
||||||
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
namespace WaveshareUARTFingerprintSensor.Sample.Views
|
||||||
{
|
{
|
||||||
public class TUIManager : Toplevel
|
public class TUIManager : Toplevel
|
||||||
{
|
{
|
||||||
public const string OutputFilePath = "out.txt";
|
public const string OutputFilePath = "out.txt";
|
||||||
public const string SettingsFilePath = "settings.txt";
|
public const string SettingsFilePath = "settings.txt";
|
||||||
|
|
||||||
private FingerprintSensor _fingerprintSensor;
|
private FingerprintSensor _fingerprintSensor;
|
||||||
private Label _serialPortLabel;
|
private Label _serialPortLabel;
|
||||||
private Label _comparisonLevelLabel;
|
private Label _comparisonLevelLabel;
|
||||||
private Label _userCountLabel;
|
private Label _userCountLabel;
|
||||||
|
|
||||||
private object _outputFileLock = new object();
|
private object _outputFileLock = new object();
|
||||||
|
|
||||||
public TUIManager()
|
public TUIManager()
|
||||||
{
|
{
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Init()
|
private void Init()
|
||||||
{
|
{
|
||||||
ColorScheme = Colors.Error;
|
ColorScheme = Colors.Error;
|
||||||
|
|
||||||
// Creates the top-level window to show
|
// Creates the top-level window to show
|
||||||
var win = new Window("TUIManager")
|
var win = new Window("TUIManager")
|
||||||
{
|
{
|
||||||
X = 0,
|
X = 0,
|
||||||
Y = 1, // Leave one row for the toplevel menu
|
Y = 1, // Leave one row for the toplevel menu
|
||||||
|
|
||||||
// By using Dim.Fill(), it will automatically resize without manual intervention
|
// By using Dim.Fill(), it will automatically resize without manual intervention
|
||||||
Width = Dim.Fill(),
|
Width = Dim.Fill(),
|
||||||
Height = Dim.Fill()
|
Height = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
win.ColorScheme = Colors.ColorSchemes["Dialog"];
|
||||||
|
|
||||||
Add(win);
|
Add(win);
|
||||||
|
|
||||||
// Creates a menubar, the item "New" has a help menu.
|
// Creates a menubar, the item "New" has a help menu.
|
||||||
var menu = new MenuBar(new MenuBarItem[] {
|
var menu = new MenuBar(new MenuBarItem[] {
|
||||||
new MenuBarItem ("_Options", new MenuItem [] {
|
new MenuBarItem ("_Options", new MenuItem [] {
|
||||||
new MenuItem ("_Change Config", "", () => { ChangeConfig(); }),
|
new MenuItem ("_Change Config", "", () => { ChangeConfig(); }),
|
||||||
new MenuItem ("_Quit", "", () => { Application.RequestStop(); })
|
new MenuItem ("_Quit", "", () => { Application.RequestStop(); })
|
||||||
})
|
})
|
||||||
});
|
});
|
||||||
|
|
||||||
Add(menu);
|
Add(menu);
|
||||||
|
|
||||||
// Window Content
|
// Window Content
|
||||||
_serialPortLabel = new Label("Serial Port:")
|
_serialPortLabel = new Label("Serial Port:")
|
||||||
{
|
{
|
||||||
X = 2,
|
X = 2,
|
||||||
Y = 1,
|
Y = 1,
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
_comparisonLevelLabel = new Label("Comparison Level: 0")
|
_comparisonLevelLabel = new Label("Comparison Level: 0")
|
||||||
{
|
{
|
||||||
X = Pos.Left(_serialPortLabel),
|
X = Pos.Left(_serialPortLabel),
|
||||||
Y = Pos.Bottom(_serialPortLabel),
|
Y = Pos.Bottom(_serialPortLabel),
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
_userCountLabel = new Label("Users: 0")
|
_userCountLabel = new Label("Users: 0")
|
||||||
{
|
{
|
||||||
X = Pos.Left(_comparisonLevelLabel),
|
X = Pos.Left(_comparisonLevelLabel),
|
||||||
Y = Pos.Bottom(_comparisonLevelLabel),
|
Y = Pos.Bottom(_comparisonLevelLabel),
|
||||||
Width = Dim.Fill()
|
Width = Dim.Fill()
|
||||||
};
|
};
|
||||||
|
|
||||||
var userCountButton = new Button("Query _User Count")
|
var userCountButton = new Button("Query _User Count")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = 7
|
Y = 7
|
||||||
};
|
};
|
||||||
userCountButton.Clicked += UserCountButton_Clicked;
|
userCountButton.Clicked += UserCountButton_Clicked;
|
||||||
|
|
||||||
var readFingerprintButton = new Button("_Read Fingerprint")
|
var readFingerprintButton = new Button("_Read Fingerprint")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(userCountButton) + 1
|
Y = Pos.Bottom(userCountButton) + 1
|
||||||
};
|
};
|
||||||
readFingerprintButton.Clicked += ReadFingerprintButton_Clicked;
|
readFingerprintButton.Clicked += ReadFingerprintButton_Clicked;
|
||||||
|
|
||||||
var readEigenvaluesButton = new Button("Read _Eigenvalues")
|
var readEigenvaluesButton = new Button("Read _Eigenvalues")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(readFingerprintButton)
|
Y = Pos.Bottom(readFingerprintButton)
|
||||||
};
|
};
|
||||||
readEigenvaluesButton.Clicked += ReadEigenvaluesButton_Clicked;
|
readEigenvaluesButton.Clicked += ReadEigenvaluesButton_Clicked;
|
||||||
|
|
||||||
var readImageButton = new Button("Read _Image")
|
var readImageButton = new Button("Read _Image")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(readEigenvaluesButton)
|
Y = Pos.Bottom(readEigenvaluesButton)
|
||||||
};
|
};
|
||||||
readImageButton.Clicked += ReadImageButton_Clicked;
|
readImageButton.Clicked += ReadImageButton_Clicked;
|
||||||
|
|
||||||
var addFingerprintButton = new Button("_Add Fingerprint")
|
var addFingerprintButton = new Button("_Add Fingerprint")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(readImageButton) + 1
|
Y = Pos.Bottom(readImageButton) + 1
|
||||||
};
|
};
|
||||||
addFingerprintButton.Clicked += AddFingerprintButton_Clicked;
|
addFingerprintButton.Clicked += AddFingerprintButton_Clicked;
|
||||||
|
|
||||||
var deleteAFingerprint = new Button("_Delete a Fingerprint")
|
var deleteAFingerprint = new Button("_Delete a Fingerprint")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(addFingerprintButton)
|
Y = Pos.Bottom(addFingerprintButton)
|
||||||
};
|
};
|
||||||
deleteAFingerprint.Clicked += DeleteAFingerprint_Clicked;
|
deleteAFingerprint.Clicked += DeleteAFingerprint_Clicked;
|
||||||
|
|
||||||
var clearFingerprintsButton = new Button("_Clear Fingerprints")
|
var clearFingerprintsButton = new Button("_Clear Fingerprints")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(deleteAFingerprint)
|
Y = Pos.Bottom(deleteAFingerprint)
|
||||||
};
|
};
|
||||||
clearFingerprintsButton.Clicked += ClearFingerprintsButton_Clicked;
|
clearFingerprintsButton.Clicked += ClearFingerprintsButton_Clicked;
|
||||||
|
|
||||||
var setComparisonLevelButton = new Button("Set Comparison _Level")
|
var setComparisonLevelButton = new Button("Set Comparison _Level")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(clearFingerprintsButton) + 1
|
Y = Pos.Bottom(clearFingerprintsButton) + 1
|
||||||
};
|
};
|
||||||
setComparisonLevelButton.Clicked += SetComparisonLevelButton_Clicked;
|
setComparisonLevelButton.Clicked += SetComparisonLevelButton_Clicked;
|
||||||
|
|
||||||
var sleepButton = new Button("_Sleep Mode")
|
var sleepButton = new Button("_Sleep Mode")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Bottom(setComparisonLevelButton) + 1
|
Y = Pos.Bottom(setComparisonLevelButton) + 1
|
||||||
};
|
};
|
||||||
sleepButton.Clicked += SleepButton_Clicked;
|
sleepButton.Clicked += SleepButton_Clicked;
|
||||||
|
|
||||||
var quitButton = new Button("_Quit")
|
var quitButton = new Button("_Quit")
|
||||||
{
|
{
|
||||||
X = Pos.Center(),
|
X = Pos.Center(),
|
||||||
Y = Pos.Percent(95)
|
Y = Pos.Percent(95)
|
||||||
};
|
};
|
||||||
quitButton.Clicked += Quit_Clicked;
|
quitButton.Clicked += Quit_Clicked;
|
||||||
|
|
||||||
win.Add(
|
win.Add(
|
||||||
_serialPortLabel,
|
_serialPortLabel,
|
||||||
_comparisonLevelLabel,
|
_comparisonLevelLabel,
|
||||||
_userCountLabel,
|
_userCountLabel,
|
||||||
userCountButton,
|
userCountButton,
|
||||||
readFingerprintButton,
|
readFingerprintButton,
|
||||||
readEigenvaluesButton,
|
readEigenvaluesButton,
|
||||||
readImageButton,
|
readImageButton,
|
||||||
addFingerprintButton,
|
addFingerprintButton,
|
||||||
deleteAFingerprint,
|
deleteAFingerprint,
|
||||||
clearFingerprintsButton,
|
clearFingerprintsButton,
|
||||||
setComparisonLevelButton,
|
setComparisonLevelButton,
|
||||||
sleepButton,
|
sleepButton,
|
||||||
quitButton
|
quitButton
|
||||||
);
|
);
|
||||||
|
|
||||||
// Init Sensor
|
// Init Sensor
|
||||||
if (!File.Exists(SettingsFilePath))
|
if (!File.Exists(SettingsFilePath))
|
||||||
{
|
{
|
||||||
Application.Run(new SettingsDisplay());
|
Application.Run(new SettingsDisplay());
|
||||||
}
|
}
|
||||||
|
|
||||||
InitSensor();
|
InitSensor();
|
||||||
|
|
||||||
// Update gui
|
// Update gui
|
||||||
UpdateSerialPort();
|
UpdateSerialPort();
|
||||||
UpdateUserCount();
|
UpdateUserCount();
|
||||||
UpdateComparisonLevel();
|
UpdateComparisonLevel();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateSerialPort()
|
private void UpdateSerialPort()
|
||||||
{
|
{
|
||||||
_serialPortLabel.Text = $"Serial Port: {_fingerprintSensor.PortName}";
|
_serialPortLabel.Text = $"Serial Port: {_fingerprintSensor.PortName}";
|
||||||
}
|
}
|
||||||
|
|
||||||
private void InitSensor()
|
private void InitSensor()
|
||||||
{
|
{
|
||||||
_fingerprintSensor = new FingerprintSensor(File.ReadAllText(SettingsFilePath));
|
_fingerprintSensor = new FingerprintSensor(File.ReadAllText(SettingsFilePath));
|
||||||
|
|
||||||
_fingerprintSensor.Start();
|
_fingerprintSensor.Start();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateUserCount()
|
private void UpdateUserCount()
|
||||||
{
|
{
|
||||||
if (_fingerprintSensor.TryGetUserCount(out ushort count))
|
if (_fingerprintSensor.TryGetUserCount(out ushort count))
|
||||||
{
|
{
|
||||||
_userCountLabel.Text = $"Users: {count}";
|
_userCountLabel.Text = $"Users: {count}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UpdateComparisonLevel()
|
private void UpdateComparisonLevel()
|
||||||
{
|
{
|
||||||
if (_fingerprintSensor.TryGetComparisonLevel(out byte comparisonLevel))
|
if (_fingerprintSensor.TryGetComparisonLevel(out byte comparisonLevel))
|
||||||
{
|
{
|
||||||
_comparisonLevelLabel.Text = $"Comparison Level: {comparisonLevel}";
|
_comparisonLevelLabel.Text = $"Comparison Level: {comparisonLevel}";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ReadImageButton_Clicked()
|
private void ReadImageButton_Clicked()
|
||||||
{
|
{
|
||||||
var dialog = new FingerprintDialog("Acquire Image", "Can't acquire image, try to place your finger flat on the sensor");
|
var dialog = new FingerprintDialog("Acquire Image", "Can't acquire image, try to place your finger flat on the sensor");
|
||||||
byte[] image = null;
|
byte[] image = null;
|
||||||
|
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
if (_fingerprintSensor.TryAcquireImage(out image))
|
if (_fingerprintSensor.TryAcquireImage(out image))
|
||||||
{
|
{
|
||||||
dialog.Cancel();
|
dialog.Cancel();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog.Show();
|
dialog.Show();
|
||||||
|
|
||||||
if (image != null)
|
if (image != null)
|
||||||
{
|
{
|
||||||
WriteOut($"Image:\n{Utils.ArrayDisplay(image)}\n\n\n");
|
WriteOut($"Image:\n{Utils.ArrayDisplay(image)}\n\n\n");
|
||||||
|
|
||||||
var window = new DataDisplay("Image", image.ToArray());
|
var window = new DataDisplay("Image", image.ToArray());
|
||||||
|
|
||||||
Application.Run(window);
|
Application.Run(window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ReadEigenvaluesButton_Clicked()
|
private void ReadEigenvaluesButton_Clicked()
|
||||||
{
|
{
|
||||||
var dialog = new FingerprintDialog("Acquire Eigenvalues", "Can't acquire eigenvalues, try to place your finger flat on the sensor");
|
var dialog = new FingerprintDialog("Acquire Eigenvalues", "Can't acquire eigenvalues, try to place your finger flat on the sensor");
|
||||||
byte[] eigenvalues = null;
|
byte[] eigenvalues = null;
|
||||||
|
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
if (_fingerprintSensor.TryAcquireEigenvalues(out var values))
|
if (_fingerprintSensor.TryAcquireEigenvalues(out var values))
|
||||||
{
|
{
|
||||||
eigenvalues = values.ToArray();
|
eigenvalues = values.ToArray();
|
||||||
|
|
||||||
dialog.Cancel();
|
dialog.Cancel();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog.Show();
|
dialog.Show();
|
||||||
|
|
||||||
if (eigenvalues != null)
|
if (eigenvalues != null)
|
||||||
{
|
{
|
||||||
var window = new DataDisplay("Eigenvalues", eigenvalues);
|
var window = new DataDisplay("Eigenvalues", eigenvalues);
|
||||||
|
|
||||||
WriteOut($"Eigenvalues:\n{Utils.ArrayDisplay(eigenvalues)}\n\n\n");
|
WriteOut($"Eigenvalues:\n{Utils.ArrayDisplay(eigenvalues)}\n\n\n");
|
||||||
|
|
||||||
Application.Run(window);
|
Application.Run(window);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SetComparisonLevelButton_Clicked()
|
private void SetComparisonLevelButton_Clicked()
|
||||||
{
|
{
|
||||||
if (new EntryDialog("Comparison Level", i => int.TryParse(i.ToString(), out var n) && n > 0 && n < 10, "Need to be a valid number in 0-9 range").TryShow(out var input))
|
if (new EntryDialog("Comparison Level", i => int.TryParse(i.ToString(), out var n) && n > 0 && n < 10, "Need to be a valid number in 0-9 range").TryShow(out var input))
|
||||||
{
|
{
|
||||||
if (!_fingerprintSensor.TrySetComparisonLevel(byte.Parse(input.ToString())))
|
if (!_fingerprintSensor.TrySetComparisonLevel(byte.Parse(input.ToString())))
|
||||||
{
|
{
|
||||||
MessageBox.ErrorQuery("Comparison Level", "Can't set comparison level", "Ok");
|
MessageBox.ErrorQuery("Comparison Level", "Can't set comparison level", "Ok");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateComparisonLevel();
|
UpdateComparisonLevel();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void DeleteAFingerprint_Clicked()
|
private void DeleteAFingerprint_Clicked()
|
||||||
{
|
{
|
||||||
if (new EntryDialog("User id", i => int.TryParse(i.ToString(), out var n), "Need to be a valid user id").TryShow(out var input))
|
if (new EntryDialog("User id", i => int.TryParse(i.ToString(), out var n), "Need to be a valid user id").TryShow(out var input))
|
||||||
{
|
{
|
||||||
if (!_fingerprintSensor.DeleteUser(ushort.Parse(input.ToString())))
|
if (!_fingerprintSensor.DeleteUser(ushort.Parse(input.ToString())))
|
||||||
{
|
{
|
||||||
MessageBox.ErrorQuery("Delete User", "Can't delete user, check user id", "Ok");
|
MessageBox.ErrorQuery("Delete User", "Can't delete user, check user id", "Ok");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
UpdateUserCount();
|
UpdateUserCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void SleepButton_Clicked()
|
private void SleepButton_Clicked()
|
||||||
{
|
{
|
||||||
var window = new SleepDisplay(_fingerprintSensor);
|
var window = new SleepDisplay(_fingerprintSensor);
|
||||||
|
|
||||||
Application.Run(window);
|
Application.Run(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ClearFingerprintsButton_Clicked()
|
private void ClearFingerprintsButton_Clicked()
|
||||||
{
|
{
|
||||||
if (!_fingerprintSensor.DeleteAllUsers())
|
if (!_fingerprintSensor.DeleteAllUsers())
|
||||||
{
|
{
|
||||||
MessageBox.ErrorQuery("Delete All Users", "Can't delete all user", "Ok");
|
MessageBox.ErrorQuery("Delete All Users", "Can't delete all user", "Ok");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void AddFingerprintButton_Clicked()
|
private void AddFingerprintButton_Clicked()
|
||||||
{
|
{
|
||||||
if (new EntryDialog("User id", i => ushort.TryParse(i.ToString(), out var n), "Need to be a valid user id").TryShow(out var input))
|
if (new EntryDialog("User id", i => ushort.TryParse(i.ToString(), out var n), "Need to be a valid user id").TryShow(out var input))
|
||||||
{
|
{
|
||||||
var dialog = new FingerprintDialog("Add Fingerprint", "Can't add fingerprint, try to place your finger flat on the sensor");
|
var dialog = new FingerprintDialog("Add Fingerprint", "Can't add fingerprint, try to place your finger flat on the sensor");
|
||||||
|
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
switch (_fingerprintSensor.AddFingerprint(ushort.Parse(input.ToString()), UserPermission.Level1))
|
switch (_fingerprintSensor.AddFingerprint(ushort.Parse(input.ToString()), UserPermission.Level1))
|
||||||
{
|
{
|
||||||
case ResponseType.Success:
|
case ResponseType.Success:
|
||||||
dialog.Cancel();
|
dialog.Cancel();
|
||||||
|
|
||||||
Application.MainLoop.Invoke(() => MessageBox.Query("Add Fingerprint", "Successfully added fingerprint", "Ok"));
|
Application.MainLoop.Invoke(() => MessageBox.Query("Add Fingerprint", "Successfully added fingerprint", "Ok"));
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case ResponseType.Full:
|
case ResponseType.Full:
|
||||||
dialog.ErrorMessage = "Sensor full, can't add more users";
|
dialog.ErrorMessage = "Sensor full, can't add more users";
|
||||||
|
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case ResponseType.NoUser:
|
case ResponseType.NoUser:
|
||||||
dialog.ErrorMessage = "Can't add fingerprint, invalid id";
|
dialog.ErrorMessage = "Can't add fingerprint, invalid id";
|
||||||
|
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case ResponseType.FingerOccupied:
|
case ResponseType.FingerOccupied:
|
||||||
dialog.ErrorMessage = "Can't add fingerprint, finger already registered";
|
dialog.ErrorMessage = "Can't add fingerprint, finger already registered";
|
||||||
|
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case ResponseType.UserOccupied:
|
case ResponseType.UserOccupied:
|
||||||
dialog.ErrorMessage = "Can't add fingerprint, id already used";
|
dialog.ErrorMessage = "Can't add fingerprint, id already used";
|
||||||
|
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog.Show();
|
dialog.Show();
|
||||||
|
|
||||||
UpdateUserCount();
|
UpdateUserCount();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ReadFingerprintButton_Clicked()
|
private void ReadFingerprintButton_Clicked()
|
||||||
{
|
{
|
||||||
var dialog = new FingerprintDialog("Read Fingerprint", "Can't read fingerprint, try to place your finger flat on the sensor");
|
var dialog = new FingerprintDialog("Read Fingerprint", "Can't read fingerprint, try to place your finger flat on the sensor");
|
||||||
|
|
||||||
(ushort userID, UserPermission permission) userInfo = default;
|
(ushort userID, UserPermission permission) userInfo = default;
|
||||||
|
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
if (_fingerprintSensor.TryComparison1N(out userInfo))
|
if (_fingerprintSensor.TryComparison1N(out userInfo))
|
||||||
{
|
{
|
||||||
dialog.Cancel();
|
dialog.Cancel();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
dialog.CancelAndShowError();
|
dialog.CancelAndShowError();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
dialog.Show();
|
dialog.Show();
|
||||||
|
|
||||||
if (userInfo != default)
|
if (userInfo != default)
|
||||||
{
|
{
|
||||||
MessageBox.Query("Read Fingerprint", $"Successfully read fingerprint\n\nUser ID: {userInfo.userID}\nPermissions: {userInfo.permission}\n ", "Ok");
|
MessageBox.Query("Read Fingerprint", $"Successfully read fingerprint\n\nUser ID: {userInfo.userID}\nPermissions: {userInfo.permission}\n ", "Ok");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void UserCountButton_Clicked()
|
private void UserCountButton_Clicked()
|
||||||
{
|
{
|
||||||
UpdateUserCount();
|
UpdateUserCount();
|
||||||
}
|
}
|
||||||
private void WriteOut(string text)
|
private void WriteOut(string text)
|
||||||
{
|
{
|
||||||
Task.Run(() =>
|
Task.Run(() =>
|
||||||
{
|
{
|
||||||
lock (_outputFileLock)
|
lock (_outputFileLock)
|
||||||
{
|
{
|
||||||
File.AppendAllText(OutputFilePath, text);
|
File.AppendAllText(OutputFilePath, text);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private void ChangeConfig()
|
private void ChangeConfig()
|
||||||
{
|
{
|
||||||
File.Delete(SettingsFilePath);
|
File.Delete(SettingsFilePath);
|
||||||
|
|
||||||
Application.Run(new SettingsDisplay());
|
Application.Run(new SettingsDisplay());
|
||||||
|
|
||||||
InitSensor();
|
InitSensor();
|
||||||
|
|
||||||
UpdateSerialPort();
|
UpdateSerialPort();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void Quit_Clicked()
|
private void Quit_Clicked()
|
||||||
{
|
{
|
||||||
Application.RequestStop();
|
Application.RequestStop();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,141 +1,141 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
<ProjectGuid>{0A9C9910-45E4-428F-9BC4-054808794C66}</ProjectGuid>
|
<ProjectGuid>{0A9C9910-45E4-428F-9BC4-054808794C66}</ProjectGuid>
|
||||||
<OutputType>Exe</OutputType>
|
<OutputType>Exe</OutputType>
|
||||||
<RootNamespace>WaveshareUARTFingerprintSensor.Sample</RootNamespace>
|
<RootNamespace>WaveshareUARTFingerprintSensor.Sample</RootNamespace>
|
||||||
<AssemblyName>WaveshareUARTFingerprintSensor.Sample</AssemblyName>
|
<AssemblyName>WaveshareUARTFingerprintSensor.Sample</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
<Deterministic>true</Deterministic>
|
<Deterministic>true</Deterministic>
|
||||||
<PublishUrl>publish\</PublishUrl>
|
<PublishUrl>publish\</PublishUrl>
|
||||||
<Install>true</Install>
|
<Install>true</Install>
|
||||||
<InstallFrom>Disk</InstallFrom>
|
<InstallFrom>Disk</InstallFrom>
|
||||||
<UpdateEnabled>false</UpdateEnabled>
|
<UpdateEnabled>false</UpdateEnabled>
|
||||||
<UpdateMode>Foreground</UpdateMode>
|
<UpdateMode>Foreground</UpdateMode>
|
||||||
<UpdateInterval>7</UpdateInterval>
|
<UpdateInterval>7</UpdateInterval>
|
||||||
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
|
||||||
<UpdatePeriodically>false</UpdatePeriodically>
|
<UpdatePeriodically>false</UpdatePeriodically>
|
||||||
<UpdateRequired>false</UpdateRequired>
|
<UpdateRequired>false</UpdateRequired>
|
||||||
<MapFileExtensions>true</MapFileExtensions>
|
<MapFileExtensions>true</MapFileExtensions>
|
||||||
<ApplicationRevision>0</ApplicationRevision>
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
|
||||||
<IsWebBootstrapper>false</IsWebBootstrapper>
|
<IsWebBootstrapper>false</IsWebBootstrapper>
|
||||||
<UseApplicationTrust>false</UseApplicationTrust>
|
<UseApplicationTrust>false</UseApplicationTrust>
|
||||||
<BootstrapperEnabled>true</BootstrapperEnabled>
|
<BootstrapperEnabled>true</BootstrapperEnabled>
|
||||||
<NuGetPackageImportStamp>
|
<NuGetPackageImportStamp>
|
||||||
</NuGetPackageImportStamp>
|
</NuGetPackageImportStamp>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
<OutputPath>bin\Debug\</OutputPath>
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
<DebugType>pdbonly</DebugType>
|
<DebugType>pdbonly</DebugType>
|
||||||
<Optimize>true</Optimize>
|
<Optimize>true</Optimize>
|
||||||
<OutputPath>bin\Release\</OutputPath>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Reference Include="NStack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="NStack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\NStack.Core.0.14.0\lib\netstandard2.0\NStack.dll</HintPath>
|
<HintPath>..\packages\NStack.Core.0.14.0\lib\netstandard2.0\NStack.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Swan, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Swan, Version=3.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Unosquare.Swan.3.0.0\lib\net461\Swan.dll</HintPath>
|
<HintPath>..\packages\Unosquare.Swan.3.0.0\lib\net461\Swan.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Swan.Lite, Version=3.0.0.0, Culture=neutral, PublicKeyToken=30c707c872729fff, processorArchitecture=MSIL">
|
<Reference Include="Swan.Lite, Version=3.0.0.0, Culture=neutral, PublicKeyToken=30c707c872729fff, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Unosquare.Swan.Lite.3.0.0\lib\net461\Swan.Lite.dll</HintPath>
|
<HintPath>..\packages\Unosquare.Swan.Lite.3.0.0\lib\net461\Swan.Lite.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
<HintPath>..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Core" />
|
<Reference Include="System.Core" />
|
||||||
<Reference Include="System.Drawing" />
|
<Reference Include="System.Drawing" />
|
||||||
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
<HintPath>..\packages\System.Memory.4.5.4\lib\net461\System.Memory.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Numerics" />
|
<Reference Include="System.Numerics" />
|
||||||
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Numerics.Vectors, Version=4.1.4.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
<HintPath>..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.Runtime.CompilerServices.Unsafe, Version=4.0.4.1, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
<HintPath>..\packages\System.Runtime.CompilerServices.Unsafe.4.5.3\lib\net461\System.Runtime.CompilerServices.Unsafe.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.ServiceProcess" />
|
<Reference Include="System.ServiceProcess" />
|
||||||
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
<Reference Include="System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
|
<HintPath>..\packages\System.ValueTuple.4.5.0\lib\net47\System.ValueTuple.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="System.Xml.Linq" />
|
<Reference Include="System.Xml.Linq" />
|
||||||
<Reference Include="System.Data.DataSetExtensions" />
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="System.Data" />
|
<Reference Include="System.Data" />
|
||||||
<Reference Include="System.Net.Http" />
|
<Reference Include="System.Net.Http" />
|
||||||
<Reference Include="System.Xml" />
|
<Reference Include="System.Xml" />
|
||||||
<Reference Include="Terminal.Gui, Version=0.90.3.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Terminal.Gui, Version=0.90.3.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Terminal.Gui.0.90.3\lib\net472\Terminal.Gui.dll</HintPath>
|
<HintPath>..\packages\Terminal.Gui.0.90.3\lib\net472\Terminal.Gui.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Unosquare.Raspberry.Abstractions, Version=0.4.1.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Unosquare.Raspberry.Abstractions, Version=0.4.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Unosquare.Raspberry.Abstractions.0.4.1\lib\netstandard2.0\Unosquare.Raspberry.Abstractions.dll</HintPath>
|
<HintPath>..\packages\Unosquare.Raspberry.Abstractions.0.4.1\lib\netstandard2.0\Unosquare.Raspberry.Abstractions.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Unosquare.RaspberryIO, Version=0.27.1.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Unosquare.RaspberryIO, Version=0.27.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Unosquare.Raspberry.IO.0.27.1\lib\netstandard2.0\Unosquare.RaspberryIO.dll</HintPath>
|
<HintPath>..\packages\Unosquare.Raspberry.IO.0.27.1\lib\netstandard2.0\Unosquare.RaspberryIO.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Unosquare.WiringPi, Version=0.5.1.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="Unosquare.WiringPi, Version=0.5.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Unosquare.WiringPi.0.5.1\lib\netstandard2.0\Unosquare.WiringPi.dll</HintPath>
|
<HintPath>..\packages\Unosquare.WiringPi.0.5.1\lib\netstandard2.0\Unosquare.WiringPi.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Views\DataDisplay.cs" />
|
<Compile Include="Views\DataDisplay.cs" />
|
||||||
<Compile Include="Views\EntryDialog.cs" />
|
<Compile Include="Views\EntryDialog.cs" />
|
||||||
<Compile Include="Views\FingerprintDialog.cs" />
|
<Compile Include="Views\FingerprintDialog.cs" />
|
||||||
<Compile Include="Program.cs" />
|
<Compile Include="Program.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Views\SettingsDisplay.cs" />
|
<Compile Include="Views\SettingsDisplay.cs" />
|
||||||
<Compile Include="Views\SleepDisplay.cs" />
|
<Compile Include="Views\SleepDisplay.cs" />
|
||||||
<Compile Include="Views\TUIManager.cs" />
|
<Compile Include="Views\TUIManager.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="App.config" />
|
<None Include="App.config" />
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
|
<BootstrapperPackage Include=".NETFramework,Version=v4.7.2">
|
||||||
<Visible>False</Visible>
|
<Visible>False</Visible>
|
||||||
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 et x64%29</ProductName>
|
<ProductName>Microsoft .NET Framework 4.7.2 %28x86 et x64%29</ProductName>
|
||||||
<Install>true</Install>
|
<Install>true</Install>
|
||||||
</BootstrapperPackage>
|
</BootstrapperPackage>
|
||||||
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
|
||||||
<Visible>False</Visible>
|
<Visible>False</Visible>
|
||||||
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
<ProductName>.NET Framework 3.5 SP1</ProductName>
|
||||||
<Install>false</Install>
|
<Install>false</Install>
|
||||||
</BootstrapperPackage>
|
</BootstrapperPackage>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\WaveshareUARTFingerprintSensor\WaveshareUARTFingerprintSensor.csproj">
|
<ProjectReference Include="..\WaveshareUARTFingerprintSensor\WaveshareUARTFingerprintSensor.csproj">
|
||||||
<Project>{dc535997-1161-4a7d-8573-259b13595778}</Project>
|
<Project>{dc535997-1161-4a7d-8573-259b13595778}</Project>
|
||||||
<Name>WaveshareUARTFingerprintSensor</Name>
|
<Name>WaveshareUARTFingerprintSensor</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets" Condition="Exists('..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets')" />
|
<Import Project="..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets" Condition="Exists('..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets')" />
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ErrorText>Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.</ErrorText>
|
<ErrorText>Ce projet fait référence à des packages NuGet qui sont manquants sur cet ordinateur. Utilisez l'option de restauration des packages NuGet pour les télécharger. Pour plus d'informations, consultez http://go.microsoft.com/fwlink/?LinkID=322105. Le fichier manquant est : {0}.</ErrorText>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Error Condition="!Exists('..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets'))" />
|
<Error Condition="!Exists('..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.NETFramework.ReferenceAssemblies.net472.1.0.0\build\Microsoft.NETFramework.ReferenceAssemblies.net472.targets'))" />
|
||||||
</Target>
|
</Target>
|
||||||
</Project>
|
</Project>
|
||||||
Reference in New Issue
Block a user