Added Support for setup system, added support for using Signing Certificate.

This commit is contained in:
Martin Barker
2023-02-23 21:57:52 +00:00
parent d42bf9a332
commit f5367c826d
12 changed files with 1209 additions and 6 deletions

View File

@@ -29,7 +29,8 @@ namespace TwitchDesktopNotifications.Core
get {
if(sw == null)
{
sw = new StreamWriter(_name);
String FilePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "TwitchNotify");
sw = new StreamWriter(FilePath+_name);
}
return sw;
}