div. Anpassungen

- Settings *.xml eingefügt
- div. Anwendungen eingefügt
- kleine Fehler behoben

automatische zentrieren der Maus entfernt

div. Anpassungen

Squashed 'FSI.Lib/' changes from 24aa22a..9a24247

9a24247 Version erhöht
9536f8a div. Anpassungen für FSI.BT.Tools

git-subtree-dir: FSI.Lib
git-subtree-split: 9a242472bc63c937efcdaaa4e391c5733abe2891

div. Anpassungen

div. Fehlerbehoben
This commit is contained in:
maier_S
2022-03-17 07:50:10 +01:00
parent e702335252
commit 15c25af4b8
46 changed files with 3031 additions and 544 deletions

View File

@@ -0,0 +1,61 @@
using FSI.Lib.WinSettings;
namespace FSI.BT.Tools
{
public class AppSettings : XmlSettings
{
public AppSettings(string fileName) : base(fileName)
{
TimeStampFormat = "_yyyyMMdd_HHmmss";
EplArguments = "/Variant:\"Electric P8\"";
SuperAdmin = "maier_s";
}
[EncryptedSetting]
public string[]? Users { get; set; }
[EncryptedSetting]
public string[]? Admins{ get; set; }
public string? SuperAdmin{ get; set; }
public string? TimeStampFormat { get; set; }
public string[]? SieSimaticManagerExe { get; set; }
public string[]? SieTiaV13Exe { get; set; }
public string[]? SieTiaV14Exe { get; set; }
public string[]? SieTiaV15Exe { get; set; }
public string[]? SieTiaV16Exe { get; set; }
public string[]? SieTiaV17Exe { get; set; }
public string[]? SieTiaVStarterExe { get; set; }
public string[]? EplExe { get; set; }
public string? EplArguments { get; set; }
public string[]? NppExe { get; set; }
public string[]? TotalCmdExe { get; set; }
public string[]? TeXstudioExe { get; set; }
public string[]? TeXstudioPath { get; set; }
public string[]? VsExe { get; set; }
public string[]? VsCodeExe { get; set; }
public string[]? RdpExe { get; set; }
public string[]? OutlookExe { get; set; }
public string[]? TeamsExe { get; set; }
public string? TeamsArg { get; set; }
public string[]? ExcelExe { get; set; }
public string[]? WordExe { get; set; }
public string[]? PaintNetExe { get; set; }
public string[]? GimpExe { get; set; }
public string[]? VncExe { get; set; }
public string[]? VncAdrBookExe { get; set; }
public string? ZentralWebUrl { get; set; }
public string? SchichtbuchUrl { get; set; }
public string? SPSUrl { get; set; }
public string? Pl1PlsUrl { get; set; }
public string? Pl2PlsUrl { get; set; }
public string? Pl2PlsAls { get; set; }
public string? Pl3PlsUrl { get; set; }
public string? GiteaUrl { get; set; }
public string? WikiUrl { get; set; }
public string? ErpUrl { get; set; }
public string? EplPdfPath { get; set; }
public string? EplPrjPath { get; set; }
}
}