diff --git a/WPF/.vs/FreeTAKServer_Manager_WPF/v16/.suo b/WPF/.vs/FreeTAKServer_Manager_WPF/v16/.suo index 73c438d..15907d2 100644 Binary files a/WPF/.vs/FreeTAKServer_Manager_WPF/v16/.suo and b/WPF/.vs/FreeTAKServer_Manager_WPF/v16/.suo differ diff --git a/WPF/FreeTAKServer_Manager_WPF/Forms/MainWindow.xaml.cs b/WPF/FreeTAKServer_Manager_WPF/Forms/MainWindow.xaml.cs index 84dc892..e434c38 100644 --- a/WPF/FreeTAKServer_Manager_WPF/Forms/MainWindow.xaml.cs +++ b/WPF/FreeTAKServer_Manager_WPF/Forms/MainWindow.xaml.cs @@ -196,7 +196,7 @@ private void StartServer() string nullkb_init = Properties.Settings.Default.Pythondir + @"Lib\site-packages\FreeTAKServer-UI\__init__.py"; if (Directory.Exists(Path.GetDirectoryName(configfile)) && Directory.Exists(Path.GetDirectoryName(MainConfigfile))) { - //del 0kb file + //del 0kb file if it exists FileInfo file = new FileInfo(nullkb_init); if (Directory.Exists(Path.GetDirectoryName(nullkb_init))) { @@ -207,7 +207,7 @@ private void StartServer() File.Delete(nullkb_init); } } - catch (Exception ex) + catch (Exception) { //do nothing } diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe deleted file mode 100644 index 3e6ed37..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe.config b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe.config deleted file mode 100644 index ea2cb10..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.exe.config +++ /dev/null @@ -1,45 +0,0 @@ - - - - -
- - - - - - - - - - - - False - - - False - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.pdb b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.pdb deleted file mode 100644 index b777a66..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/FreeTAKServer_Manager_WPF.pdb and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/MainConfig.py b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/MainConfig.py deleted file mode 100644 index 283332f..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/MainConfig.py +++ /dev/null @@ -1,300 +0,0 @@ -import os -import yaml -currentPath = os.path.dirname(os.path.abspath(__file__)) -from pathlib import Path - - -class MainConfig: - """ - this is the main configuration file and is the only one which - should need to be changed - """ - - # the version information of the server (recommended to leave as default) - version = 'FreeTAKServer-1.9.1 Public' - # - yaml_path = str(os.environ.get('FTS_CONFIG_PATH', 'Lib\\site-packages\\FreeTAKServer\\FTSConfig.yaml')) - - #python_version = 'python3.8' - - #userpath = '/usr/local/lib/' - - try: - import socket - s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) - s.connect(("8.8.8.8", 80)) - ip = s.getsockname()[0] - s.close() - except: - ip = "0.0.0.0" - - if not os.path.exists(yaml_path): - - OptimizeAPI = True - - MainLoopDelay = int(os.environ.get('FTS_MAINLOOP_DELAY', 1)) - - # this is the port to which clients will connect - CoTServicePort = int(os.environ.get('FTS_COT_PORT', 8087)) - - SSLCoTServicePort = int(os.environ.get('FTS_SSLCOT_PORT', 8089)) - - # this needs to be changed for private data packages to work - DataPackageServiceDefaultIP = str(os.environ.get('FTS_DP_ADDRESS', ip)) - - # User Connection package IP needs to be set to the IP which is used when creating the connection in your tak device - UserConnectionIP = str(os.environ.get('FTS_USER_ADDRESS', ip)) - - # api port - APIPort = os.environ.get('FTS_API_PORT', 19023) - - # Federation port - FederationPort = os.environ.get('FTS_FED_PORT', 9000) - - # api IP - APIIP = os.environ.get('FTS_API_ADDRESS', '0.0.0.0') - - # whether or not to save CoT's to the DB - SaveCoTToDB = bool(os.environ.get('FTS_COT_TO_DB', True)) - - # this should be set before startup - DBFilePath = str(os.environ.get('FTS_DB_PATH', r'Lib\\site-packages\\FreeTAKServer\\FTSDataBase.db')) - - MainPath = str(os.environ.get("FTS_MAINPATH", Path(fr'Lib\\site-packages\\FreeTAKServer'))) - - certsPath = str(os.environ.get('FTS_CERTS_PATH', fr'{MainPath}\\certs')) - - ExCheckMainPath = str(os.environ.get('FTS_EXCHECK_PATH', Path(fr'{MainPath}\\ExCheck'))) - - ExCheckFilePath = str(os.environ.get('FTS_EXCHECK_TEMPLATE_PATH', Path(fr'{MainPath}\\ExCheck\\template'))) - - ExCheckChecklistFilePath = str( - os.environ.get("FTS_EXCHECK_CHECKLIST_PATH", Path(fr'{MainPath}\\ExCheck\\checklist'))) - - DataPackageFilePath = str( - os.environ.get("FTS_DATAPACKAGE_PATH", Path(fr'{MainPath}\\FreeTAKServerDataPackageFolder'))) - - LogFilePath = str(os.environ.get("FTS_LOGFILE_PATH", Path(fr"{MainPath}\\Logs"))) - - federationKeyPassword = str(os.environ.get('FTS_FED_PASSWORD', 'defaultpass')) - - keyDir = str(os.environ.get("FTS_SERVER_KEYDIR", Path(fr'{certsPath}\\server.key'))) - - pemDir = str(os.environ.get("FTS_SERVER_PEMDIR", Path(fr'{certsPath}\\server.pem'))) # or crt - - testPem = str(os.environ.get("FTS_TESTCLIENT_PEMDIR", pemDir)) - - testKey = str(os.environ.get("FTS_TESTCLIENT_KEYDIR", keyDir)) - - unencryptedKey = str(os.environ.get("FTS_UNENCRYPTED_KEYDIR", Path(fr'{certsPath}\\server.key.unencrypted'))) - - p12Dir = str(os.environ.get("FTS_SERVER_P12DIR", Path(fr'{certsPath}\\server.p12'))) - - CA = str(os.environ.get("FTS_CADIR", Path(fr'{certsPath}\\ca.pem'))) - - CAkey = str(os.environ.get("FTS_CAKEYDIR", Path(fr'{certsPath}\\ca.key'))) - - federationCert = str(os.environ.get("FTS_FEDERATION_CERTDIR", Path(fr'{certsPath}\\server.pem'))) - - federationKey = str(os.environ.get("FTS_FEDERATION_KEYDIR", Path(fr'{certsPath}\\server.key'))) - - federationKeyPassword = str(os.environ.get("FTS_FEDERATION_KEYPASS", 'defaultpass')) - - password = str(os.environ.get('FTS_CLIENT_CERT_PASSWORD', 'supersecret')) - - websocketkey = str(os.environ.get('FTS_WEBSOCKET_KEY', "YourWebsocketKey")) - - CRLFile = str(os.environ.get('FTS_CRLDIR', fr"{certsPath}\\FTS_CRL.json")) - - # set to None if you don't want a message sent - ConnectionMessage = f'Welcome to the Windows FreeTAKServer {version}. The Parrot is not dead. It’s just resting' - - DataBaseType = str("SQLite") - - else: - content = open(yaml_path).read() - yamlConfig = yaml.safe_load(content) - - # number of milliseconds to wait between each iteration of main loop - # decreasing will increase CPU usage and server performance - # increasing will decrease CPU usage and server performance - if yamlConfig.get("System"): - MainLoopDelay = int(os.environ.get('FTS_MAINLOOP_DELAY', yamlConfig["System"].get("FTS_MAINLOOP_DELAY", 1))) - # set to None if you don't want a message sent - ConnectionMessage = str(os.environ.get("FTS_CONNECTION_MESSAGE", yamlConfig["System"].get("FTS_CONNECTION_MESSAGE", f'Welcome to the Windows FreeTAKServer {version}. The Parrot is not dead. It’s just resting'))) - DataBaseType = str(os.environ.get("FTS_DATABASE_TYPE", yamlConfig["System"].get("FTS_DATABASE_TYPE", "SQLite"))) - OptimizeAPI = bool(os.environ.get("FTS_OPTIMIZE_API", yamlConfig["System"].get("FTS_OPTIMIZE_API", True))) - - else: - MainLoopDelay = int(os.environ.get('FTS_MAINLOOP_DELAY', 1)) - ConnectionMessage = str(os.environ.get("FTS_CONNECTION_MESSAGE", f'Welcome to FreeTAKServer {version}. The Parrot is not dead. It’s just resting')) - DataBaseType = str(os.environ.get("FTS_DATABASE_TYPE", "SQLite")) - OptimizeAPI = bool(os.environ.get("FTS_OPTIMIZE_API", True)) - - if yamlConfig.get("Addresses"): - # this is the port to which clients will connect - CoTServicePort = int(os.environ.get('FTS_COT_PORT', yamlConfig["Addresses"].get('FTS_COT_PORT', 8087))) - - SSLCoTServicePort = int(os.environ.get('FTS_SSLCOT_PORT', yamlConfig["Addresses"].get('FTS_SSLCOT_PORT', 8089))) - - # this needs to be changed for private data packages to work - DataPackageServiceDefaultIP = str(os.environ.get('FTS_DP_ADDRESS', yamlConfig["Addresses"].get('FTS_DP_ADDRESS', ip))) - - # User Connection package IP needs to be set to the IP which is used when creating the connection in your tak device - UserConnectionIP = str(os.environ.get('FTS_USER_ADDRESS', yamlConfig["Addresses"].get("FTS_USER_ADDRESS", ip))) - - # api port - APIPort = int(os.environ.get('FTS_API_PORT', yamlConfig["Addresses"].get("FTS_API_PORT", 19023))) - - # Federation port - FederationPort = int(os.environ.get('FTS_FED_PORT', yamlConfig["Addresses"].get("FTS_FED_PORT", 9000))) - - # api IP - APIIP = str(os.environ.get('FTS_API_ADDRESS', yamlConfig["Addresses"].get("FTS_API_ADDRESS", "0.0.0.0"))) - else: - - # this is the port to which clients will connect - CoTServicePort = int(os.environ.get('FTS_COT_PORT', 8087)) - - SSLCoTServicePort = int(os.environ.get('FTS_SSLCOT_PORT', 8089)) - - # this needs to be changed for private data packages to work - DataPackageServiceDefaultIP = str(os.environ.get('FTS_DP_ADDRESS', "0.0.0.0")) - - # User Connection package IP needs to be set to the IP which is used when creating the connection in your tak device - UserConnectionIP = str(os.environ.get('FTS_USER_ADDRESS', "0.0.0.0")) - - # api port - APIPort = os.environ.get('FTS_API_PORT', 19023) - - # Federation port - FederationPort = os.environ.get('FTS_FED_PORT', 9000) - - # api IP - APIIP = os.environ.get('FTS_API_ADDRESS', '0.0.0.0') - - if yamlConfig.get("FileSystem"): - - DBFilePath = str(os.environ.get('FTS_DB_PATH', yamlConfig["FileSystem"].get("FTS_DB_PATH", "Lib\\site-packages\\FreeTAKServer\\FreeTAKServer.db"))) - - # whether or not to save CoT's to the DB - SaveCoTToDB = bool(os.environ.get('FTS_COT_TO_DB', yamlConfig["FileSystem"].get("FTS_COT_TO_DB"))) - - MainPath = str(os.environ.get("FTS_MAINPATH", yamlConfig["FileSystem"].get("FTS_MAINPATH", Path(fr'Lib\\site-packages\\FreeTAKServer')))) - - certsPath = str(os.environ.get('FTS_CERTS_PATH', yamlConfig["FileSystem"].get("FTS_CERTS_PATH", fr'{MainPath}\\certs'))) - - ExCheckMainPath = str(os.environ.get('FTS_EXCHECK_PATH', yamlConfig["FileSystem"].get("FTS_EXCHECK_PATH",Path(fr'{MainPath}\\ExCheck')))) - - ExCheckFilePath = str(os.environ.get('FTS_EXCHECK_TEMPLATE_PATH', yamlConfig["FileSystem"].get("FTS_EXCHECK_TEMPLATE_PATH", Path(fr'{MainPath}\\ExCheck\\template')))) - - ExCheckChecklistFilePath = str(os.environ.get("FTS_EXCHECK_CHECKLIST_PATH", yamlConfig["FileSystem"].get("FTS_EXCHECK_CHECKLIST_PATH", Path(fr'{MainPath}\\ExCheck\\checklist')))) - - DataPackageFilePath = str(os.environ.get("FTS_DATAPACKAGE_PATH", yamlConfig["FileSystem"].get("FTS_DATAPACKAGE_PATH", Path(fr'{MainPath}\\FreeTAKServerDataPackageFolder')))) - - LogFilePath = str(os.environ.get("FTS_LOGFILE_PATH", yamlConfig["FileSystem"].get("FTS_LOGFILE_PATH", Path(fr"{MainPath}\\Logs")))) - - else: - # whether or not to save CoT's to the DB - SaveCoTToDB = bool(os.environ.get('FTS_COT_TO_DB', True)) - - # this should be set before startup - DBFilePath = str(os.environ.get('FTS_DB_PATH', r'Lib\\site-packages\\FreeTAKServer\\FTSDataBase.db')) - - MainPath = str( - os.environ.get("FTS_MAINPATH", Path(fr'Lib\\site-packages\\FreeTAKServer'))) - - certsPath = str(os.environ.get('FTS_CERTS_PATH', fr'{MainPath}\\certs')) - - ExCheckMainPath = str(os.environ.get('FTS_EXCHECK_PATH', Path(fr'{MainPath}\\ExCheck'))) - - ExCheckFilePath = str(os.environ.get('FTS_EXCHECK_TEMPLATE_PATH', Path(fr'{MainPath}\\ExCheck\\template'))) - - ExCheckChecklistFilePath = str( - os.environ.get("FTS_EXCHECK_CHECKLIST_PATH", Path(fr'{MainPath}\\ExCheck\\checklist'))) - - DataPackageFilePath = str( - os.environ.get("FTS_DATAPACKAGE_PATH", Path(fr'{MainPath}\\FreeTAKServerDataPackageFolder'))) - - LogFilePath = str(os.environ.get("FTS_LOGFILE_PATH", Path(fr"{MainPath}\\Logs"))) - - - if yamlConfig.get("Certs"): - keyDir = str(os.environ.get("FTS_SERVER_KEYDIR", yamlConfig["Certs"].get("FTS_SERVER_KEYDIR", Path(fr'{certsPath}\\server.key')))) - - pemDir = str(os.environ.get("FTS_SERVER_PEMDIR",yamlConfig["Certs"].get("FTS_SERVER_PEMDIR", Path(fr'{certsPath}\\server.pem')))) # or crt - - testPem = str(os.environ.get("FTS_TESTCLIENT_PEMDIR",yamlConfig["Certs"].get("FTS_TESTCLIENT_PEMDIR", fr'{certsPath}\\Client.pem'))) - - testKey = str(os.environ.get("FTS_TESTCLIENT_KEYDIR",yamlConfig["Certs"].get("FTS_TESTCLIENT_KEYDIR", fr'{certsPath}\\Client.key'))) - - unencryptedKey = str(os.environ.get("FTS_UNENCRYPTED_KEYDIR", yamlConfig["Certs"].get("FTS_UNENCRYPTED_KEYDIR", Path(fr'{certsPath}\\server.key.unencrypted')))) - - p12Dir = str(os.environ.get("FTS_SERVER_P12DIR", yamlConfig["Certs"].get("FTS_SERVER_P12DIR", Path(fr'{certsPath}\\server.p12')))) - - CA = str(os.environ.get("FTS_CADIR", yamlConfig["Certs"].get("FTS_CADIR",Path(fr'{certsPath}\\ca.pem')))) - - CAkey = str(os.environ.get("FTS_CAKEYDIR", yamlConfig["Certs"].get("FTS_CAKEYDIR",Path(fr'{certsPath}\\ca.key')))) - - federationCert = str(os.environ.get("FTS_FEDERATION_CERTDIR", yamlConfig["Certs"].get("FTS_FEDERATION_CERTDIR", Path(fr'{certsPath}\\server.pem')))) - - federationKey = str(os.environ.get("FTS_FEDERATION_KEYDIR", yamlConfig["Certs"].get("FTS_FEDERATION_KEYDIR", Path(fr'{certsPath}\\server.key')))) - - federationKeyPassword = str(os.environ.get("FTS_FEDERATION_KEYPASS", yamlConfig["Certs"].get("FTS_FEDERATION_KEYPASS", None))) - - password = str(os.environ.get('FTS_CLIENT_CERT_PASSWORD', yamlConfig["Certs"].get("FTS_CLIENT_CERT_PASSWORD", 'supersecret'))) - - websocketkey = str(os.environ.get('FTS_WEBSOCKET_KEY', yamlConfig["Certs"].get("FTS_WEBSOCKET_KEY", "YourWebsocketKey"))) - - CRLFile = str(os.environ.get('FTS_CRLDIR', yamlConfig["Certs"].get("FTS_CRLDIR", fr"{certsPath}\\FTS_CRL.json"))) - else: - federationKeyPassword = str(os.environ.get('FTS_FED_PASSWORD', 'defaultpass')) - - keyDir = str(os.environ.get("FTS_SERVER_KEYDIR", Path(fr'{certsPath}\\server.key'))) - - pemDir = str(os.environ.get("FTS_SERVER_PEMDIR", Path(fr'{certsPath}\\server.pem'))) # or crt - - testPem = str(os.environ.get("FTS_TESTCLIENT_PEMDIR", pemDir)) - - testKey = str(os.environ.get("FTS_TESTCLIENT_KEYDIR", keyDir)) - - unencryptedKey = str(os.environ.get("FTS_UNENCRYPTED_KEYDIR", Path(fr'{certsPath}\\server.key.unencrypted'))) - - p12Dir = str(os.environ.get("FTS_SERVER_P12DIR", Path(fr'{certsPath}\\server.p12'))) - - CA = str(os.environ.get("FTS_CADIR", Path(fr'{certsPath}\\ca.pem'))) - - CAkey = str(os.environ.get("FTS_CAKEYDIR", Path(fr'{certsPath}\\ca.key'))) - - federationCert = str(os.environ.get("FTS_FEDERATION_CERTDIR", Path(fr'{certsPath}\\server.pem'))) - - federationKey = str(os.environ.get("FTS_FEDERATION_KEYDIR", Path(fr'{certsPath}\\server.key'))) - - federationKeyPassword = str(os.environ.get("FTS_FEDERATION_KEYPASS", 'defaultpass')) - - password = str(os.environ.get('FTS_CLIENT_CERT_PASSWORD', 'supersecret')) - - websocketkey = str(os.environ.get('FTS_WEBSOCKET_KEY', "YourWebsocketKey")) - - CRLFile = str(os.environ.get('FTS_CRLDIR', fr"{certsPath}\\FTS_CRL.json")) - - - - # allowed ip's to access CLI commands - AllowedCLIIPs = ['127.0.0.1'] - - # IP for CLI to access - CLIIP = '127.0.0.1' - - APIVersion = "1.9" - - # format of API message header should be {Authentication: Bearer 'TOKEN'} - from uuid import uuid4 - id = str(uuid4()) - - nodeID = os.environ.get('FTS_NODE_ID', f"FreeTAKServer-{id}") - - # location to backup client packages - clientPackages = str(Path(fr'{MainPath}\\certs\\ClientPackages')) - - first_start = True \ No newline at end of file diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/ReadMe.txt b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/ReadMe.txt deleted file mode 100644 index 5768fdf..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/ReadMe.txt +++ /dev/null @@ -1,32 +0,0 @@ -### FreeTAKServer Manager - -The FreeTAKServer Manager specific for FTS version `1.8.1` - -Make sure you have a clean Python install. - -Make sure your python environment variable path is clean. - -Delete __init__.py 0kb in Your_Python_Path\Lib\site-packages\FreeTAKServer-UI - -FreeTAKServer Manager has the ability to: -* Start -* Stop -* Restart -* Install -* Uninstall -* start on startup -* send alert emails -* let the user test the API (localhost & custom) -* allow quick `MainConfig.py` & `config.py` edits -* Open a portforward testing page - -.NET Framework 4.7.2 -C# Windows Presentation Foundation -C# Winforms - -# Release Notes - - [ Version: V1.0.0.2 ] - [ Date: 02nd September 2021 ] - -* Added `pip install FreeTAKServer-UI==1.8.1` only \ No newline at end of file diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/config.py b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/config.py deleted file mode 100644 index 6fca102..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/config.py +++ /dev/null @@ -1,90 +0,0 @@ -# -*- encoding: utf-8 -*- -""" -License: MIT -Copyright (c) 2019 - present AppSeed.us -""" - -import os -from os import environ - -class Config(object): - - basedir = os.path.abspath(os.path.dirname(__file__)) - - SECRET_KEY = 'key' - - # This will connect to the FTS db - SQLALCHEMY_DATABASE_URI = 'sqlite:///' + 'Lib\\site-packages\\FreeTAKServer\\FTSServer-UI.db' - - # certificates path - certpath = "Lib\\site-packages\\FreeTAKServer\\certs\\" - - # crt file path - crtfilepath = f"{certpath}pubserver.pem" - - # key file path - keyfilepath = f"{certpath}pubserver.key.unencrypted" - - # this IP will be used to connect with the FTS API - IP = '127.0.0.1' - - # Port the UI uses to communicate with the API - PORT = '19023' - - # the public IP your server is exposing - APPIP = '127.0.0.1' - - # webmap IP - WEBMAPIP = "127.0.0.1" - - # webmap port - WEBMAPPORT = 8000 - - # this port will be used to listen - APPPort = 5000 - - # the webSocket key used by the UI to communicate with FTS. - WEBSOCKETKEY = 'YourWebsocketKey' - - # the API key used by the UI to comunicate with FTS. generate a new system user and then set it - APIKEY = 'Bearer token' - - # For 'in memory' database, please use: - # SQLALCHEMY_DATABASE_URI = 'sqlite:///:memory:' - - SQLALCHEMY_TRACK_MODIFICATIONS = False - - # THEME SUPPORT - # if set then url_for('static', filename='', theme='') - # will add the theme name to the static URL: - # /static//filename - # DEFAULT_THEME = "themes/dark" - DEFAULT_THEME = None - - -class ProductionConfig(Config): - DEBUG = False - - # Security - SESSION_COOKIE_HTTPONLY = True - REMEMBER_COOKIE_HTTPONLY = True - REMEMBER_COOKIE_DURATION = 3600 - - # PostgreSQL database - SQLALCHEMY_DATABASE_URI = 'postgresql://{}:{}@{}:{}/{}'.format( - environ.get('APPSEED_DATABASE_USER', 'appseed'), - environ.get('APPSEED_DATABASE_PASSWORD', 'appseed'), - environ.get('APPSEED_DATABASE_HOST', 'db'), - environ.get('APPSEED_DATABASE_PORT', 5432), - environ.get('APPSEED_DATABASE_NAME', 'appseed') - ) - - -class DebugConfig(Config): - DEBUG = True - - -config_dict = { - 'Production': ProductionConfig, - 'Debug': DebugConfig -} diff --git a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/requirements.txt b/WPF/FreeTAKServer_Manager_WPF/bin/Debug/requirements.txt deleted file mode 100644 index f79ca1e..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/bin/Debug/requirements.txt +++ /dev/null @@ -1,14 +0,0 @@ -flask -flask_login -flask_migrate -flask_wtf -flask_sqlalchemy -email_validator -gunicorn -coveralls -coverage -pytest -flake8 -flake8-print -pep8-naming -selenium \ No newline at end of file diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs deleted file mode 100644 index 3871b18..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.cs deleted file mode 100644 index bd9ea16..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.cs +++ /dev/null @@ -1,70 +0,0 @@ -#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9A7A16BACA468D99FDD7D9B4B1FC21649086DE95961828A1487303AF2BC3781A" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// App - /// - public partial class App : System.Windows.Application { - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - - #line 5 "..\..\App.xaml" - this.StartupUri = new System.Uri("Forms\\MainWindow.xaml", System.UriKind.Relative); - - #line default - #line hidden - } - - /// - /// Application Entry Point. - /// - [System.STAThreadAttribute()] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public static void Main() { - FreeTAKServer_Manager_WPF.App app = new FreeTAKServer_Manager_WPF.App(); - app.InitializeComponent(); - app.Run(); - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.i.cs deleted file mode 100644 index bd9ea16..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/App.g.i.cs +++ /dev/null @@ -1,70 +0,0 @@ -#pragma checksum "..\..\App.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9A7A16BACA468D99FDD7D9B4B1FC21649086DE95961828A1487303AF2BC3781A" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// App - /// - public partial class App : System.Windows.Application { - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - - #line 5 "..\..\App.xaml" - this.StartupUri = new System.Uri("Forms\\MainWindow.xaml", System.UriKind.Relative); - - #line default - #line hidden - } - - /// - /// Application Entry Point. - /// - [System.STAThreadAttribute()] - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public static void Main() { - FreeTAKServer_Manager_WPF.App app = new FreeTAKServer_Manager_WPF.App(); - app.InitializeComponent(); - app.Run(); - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache deleted file mode 100644 index fd85c9f..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.baml b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.baml deleted file mode 100644 index c1ab347..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.baml and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.cs deleted file mode 100644 index 1b09886..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.cs +++ /dev/null @@ -1,155 +0,0 @@ -#pragma checksum "..\..\..\Forms\AboutWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "209D6DE34DC91F3E72B4A689D240FA466E55E4A9CAF709D8DB6A869FFAC8463D" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// AboutWindow - /// - public partial class AboutWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 1 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal FreeTAKServer_Manager_WPF.AboutWindow About_window; - - #line default - #line hidden - - - #line 17 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Image Imagebox; - - #line default - #line hidden - - - #line 18 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label FreeTAKTeamG; - - #line default - #line hidden - - - #line 23 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label techradG; - - #line default - #line hidden - - - #line 28 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label labelversion; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/aboutwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\AboutWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - this.About_window = ((FreeTAKServer_Manager_WPF.AboutWindow)(target)); - - #line 8 "..\..\..\Forms\AboutWindow.xaml" - this.About_window.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Imagebox = ((System.Windows.Controls.Image)(target)); - return; - case 3: - this.FreeTAKTeamG = ((System.Windows.Controls.Label)(target)); - return; - case 4: - - #line 19 "..\..\..\Forms\AboutWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate); - - #line default - #line hidden - return; - case 5: - this.techradG = ((System.Windows.Controls.Label)(target)); - return; - case 6: - - #line 24 "..\..\..\Forms\AboutWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate); - - #line default - #line hidden - return; - case 7: - this.labelversion = ((System.Windows.Controls.Label)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.i.cs deleted file mode 100644 index 1b09886..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/AboutWindow.g.i.cs +++ /dev/null @@ -1,155 +0,0 @@ -#pragma checksum "..\..\..\Forms\AboutWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "209D6DE34DC91F3E72B4A689D240FA466E55E4A9CAF709D8DB6A869FFAC8463D" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// AboutWindow - /// - public partial class AboutWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 1 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal FreeTAKServer_Manager_WPF.AboutWindow About_window; - - #line default - #line hidden - - - #line 17 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Image Imagebox; - - #line default - #line hidden - - - #line 18 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label FreeTAKTeamG; - - #line default - #line hidden - - - #line 23 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label techradG; - - #line default - #line hidden - - - #line 28 "..\..\..\Forms\AboutWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Label labelversion; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/aboutwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\AboutWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - this.About_window = ((FreeTAKServer_Manager_WPF.AboutWindow)(target)); - - #line 8 "..\..\..\Forms\AboutWindow.xaml" - this.About_window.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Imagebox = ((System.Windows.Controls.Image)(target)); - return; - case 3: - this.FreeTAKTeamG = ((System.Windows.Controls.Label)(target)); - return; - case 4: - - #line 19 "..\..\..\Forms\AboutWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate); - - #line default - #line hidden - return; - case 5: - this.techradG = ((System.Windows.Controls.Label)(target)); - return; - case 6: - - #line 24 "..\..\..\Forms\AboutWindow.xaml" - ((System.Windows.Documents.Hyperlink)(target)).RequestNavigate += new System.Windows.Navigation.RequestNavigateEventHandler(this.Hyperlink_RequestNavigate); - - #line default - #line hidden - return; - case 7: - this.labelversion = ((System.Windows.Controls.Label)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.baml b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.baml deleted file mode 100644 index 4f5a968..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.baml and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.cs deleted file mode 100644 index e16249d..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.cs +++ /dev/null @@ -1,197 +0,0 @@ -#pragma checksum "..\..\..\Forms\EmailSetupWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9738E572A6DCB58F4D1D87CF7F5E1FADBC1D7A3D67D7E0578B225A365B1868D3" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// EmailSetupWindow - /// - public partial class EmailSetupWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 79 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Smtp_textBox; - - #line default - #line hidden - - - #line 80 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox From_textBox; - - #line default - #line hidden - - - #line 81 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox To_textBox; - - #line default - #line hidden - - - #line 82 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Subject_textBox; - - #line default - #line hidden - - - #line 83 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Body_textBox; - - #line default - #line hidden - - - #line 84 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Username_textBox; - - #line default - #line hidden - - - #line 85 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Password_textBox; - - #line default - #line hidden - - - #line 86 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Test_button; - - #line default - #line hidden - - - #line 87 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Savesettings_button; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/emailsetupwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\EmailSetupWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\EmailSetupWindow.xaml" - ((FreeTAKServer_Manager_WPF.EmailSetupWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Smtp_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 3: - this.From_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 4: - this.To_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 5: - this.Subject_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 6: - this.Body_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 7: - this.Username_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 8: - this.Password_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 9: - this.Test_button = ((System.Windows.Controls.Button)(target)); - - #line 86 "..\..\..\Forms\EmailSetupWindow.xaml" - this.Test_button.Click += new System.Windows.RoutedEventHandler(this.Test_button_click); - - #line default - #line hidden - return; - case 10: - this.Savesettings_button = ((System.Windows.Controls.Button)(target)); - - #line 87 "..\..\..\Forms\EmailSetupWindow.xaml" - this.Savesettings_button.Click += new System.Windows.RoutedEventHandler(this.Savesettings_button_click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.i.cs deleted file mode 100644 index e16249d..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/EmailSetupWindow.g.i.cs +++ /dev/null @@ -1,197 +0,0 @@ -#pragma checksum "..\..\..\Forms\EmailSetupWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "9738E572A6DCB58F4D1D87CF7F5E1FADBC1D7A3D67D7E0578B225A365B1868D3" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// EmailSetupWindow - /// - public partial class EmailSetupWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 79 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Smtp_textBox; - - #line default - #line hidden - - - #line 80 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox From_textBox; - - #line default - #line hidden - - - #line 81 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox To_textBox; - - #line default - #line hidden - - - #line 82 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Subject_textBox; - - #line default - #line hidden - - - #line 83 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Body_textBox; - - #line default - #line hidden - - - #line 84 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Username_textBox; - - #line default - #line hidden - - - #line 85 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Password_textBox; - - #line default - #line hidden - - - #line 86 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Test_button; - - #line default - #line hidden - - - #line 87 "..\..\..\Forms\EmailSetupWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Savesettings_button; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/emailsetupwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\EmailSetupWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\EmailSetupWindow.xaml" - ((FreeTAKServer_Manager_WPF.EmailSetupWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Smtp_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 3: - this.From_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 4: - this.To_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 5: - this.Subject_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 6: - this.Body_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 7: - this.Username_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 8: - this.Password_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 9: - this.Test_button = ((System.Windows.Controls.Button)(target)); - - #line 86 "..\..\..\Forms\EmailSetupWindow.xaml" - this.Test_button.Click += new System.Windows.RoutedEventHandler(this.Test_button_click); - - #line default - #line hidden - return; - case 10: - this.Savesettings_button = ((System.Windows.Controls.Button)(target)); - - #line 87 "..\..\..\Forms\EmailSetupWindow.xaml" - this.Savesettings_button.Click += new System.Windows.RoutedEventHandler(this.Savesettings_button_click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.baml b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.baml deleted file mode 100644 index d816c75..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.baml and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.cs deleted file mode 100644 index 1b7c49b..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.cs +++ /dev/null @@ -1,444 +0,0 @@ -#pragma checksum "..\..\..\Forms\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A526672E889102F57AA3EA0697B65E997BD5AAA807D03907EACD42014A9F0EE9" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// MainWindow - /// - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 1 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal FreeTAKServer_Manager_WPF.MainWindow Main_window; - - #line default - #line hidden - - - #line 68 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Grid MainWindow1; - - #line default - #line hidden - - - #line 73 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Menu menu_strip; - - #line default - #line hidden - - - #line 74 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem about_menuitem; - - #line default - #line hidden - - - #line 83 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem email_menuitem; - - #line default - #line hidden - - - #line 92 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem email_settings_menuitem; - - #line default - #line hidden - - - #line 101 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem exit_menuitem; - - #line default - #line hidden - - - #line 114 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBlock lblCursorPosition; - - #line default - #line hidden - - - #line 118 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.ProgressBar progressbar; - - #line default - #line hidden - - - #line 122 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBlock status_lable; - - #line default - #line hidden - - - #line 125 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.GroupBox groupbox; - - #line default - #line hidden - - - #line 126 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - - #line 131 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Pythondir_textBox; - - #line default - #line hidden - - - #line 132 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.CheckBox Email_checkBox; - - #line default - #line hidden - - - #line 135 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Startserver_button; - - #line default - #line hidden - - - #line 136 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Stopserver_button; - - #line default - #line hidden - - - #line 137 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Restartserver_button; - - #line default - #line hidden - - - #line 138 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Uninstallserver_button; - - #line default - #line hidden - - - #line 139 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Editmainconfigserver_button; - - #line default - #line hidden - - - #line 140 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Editconfigserver_button; - - #line default - #line hidden - - - #line 141 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Checkportsserver_button; - - #line default - #line hidden - - - #line 142 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Installserver_button; - - #line default - #line hidden - - - #line 143 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Setdirserver_button; - - #line default - #line hidden - - - #line 144 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.CheckBox Startserver_checkBox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - this.Main_window = ((FreeTAKServer_Manager_WPF.MainWindow)(target)); - - #line 8 "..\..\..\Forms\MainWindow.xaml" - this.Main_window.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - - #line 8 "..\..\..\Forms\MainWindow.xaml" - this.Main_window.Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); - - #line default - #line hidden - return; - case 2: - this.MainWindow1 = ((System.Windows.Controls.Grid)(target)); - return; - case 3: - this.menu_strip = ((System.Windows.Controls.Menu)(target)); - return; - case 4: - this.about_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 74 "..\..\..\Forms\MainWindow.xaml" - this.about_menuitem.Click += new System.Windows.RoutedEventHandler(this.about_menuitem_Click); - - #line default - #line hidden - return; - case 5: - this.email_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 83 "..\..\..\Forms\MainWindow.xaml" - this.email_menuitem.Click += new System.Windows.RoutedEventHandler(this.email_setup_menuitem_Click); - - #line default - #line hidden - return; - case 6: - this.email_settings_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 92 "..\..\..\Forms\MainWindow.xaml" - this.email_settings_menuitem.Click += new System.Windows.RoutedEventHandler(this.read_me_menuitem_Click); - - #line default - #line hidden - return; - case 7: - this.exit_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 101 "..\..\..\Forms\MainWindow.xaml" - this.exit_menuitem.Click += new System.Windows.RoutedEventHandler(this.Test_API_menuitem_Click); - - #line default - #line hidden - return; - case 8: - this.lblCursorPosition = ((System.Windows.Controls.TextBlock)(target)); - return; - case 9: - this.progressbar = ((System.Windows.Controls.ProgressBar)(target)); - return; - case 10: - this.status_lable = ((System.Windows.Controls.TextBlock)(target)); - return; - case 11: - this.groupbox = ((System.Windows.Controls.GroupBox)(target)); - return; - case 12: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - case 13: - this.Pythondir_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 14: - this.Email_checkBox = ((System.Windows.Controls.CheckBox)(target)); - - #line 132 "..\..\..\Forms\MainWindow.xaml" - this.Email_checkBox.Click += new System.Windows.RoutedEventHandler(this.Email_checkBox_click); - - #line default - #line hidden - return; - case 15: - this.Startserver_button = ((System.Windows.Controls.Button)(target)); - - #line 135 "..\..\..\Forms\MainWindow.xaml" - this.Startserver_button.Click += new System.Windows.RoutedEventHandler(this.Startserver_button_Click); - - #line default - #line hidden - return; - case 16: - this.Stopserver_button = ((System.Windows.Controls.Button)(target)); - - #line 136 "..\..\..\Forms\MainWindow.xaml" - this.Stopserver_button.Click += new System.Windows.RoutedEventHandler(this.Stopserver_button_Click); - - #line default - #line hidden - return; - case 17: - this.Restartserver_button = ((System.Windows.Controls.Button)(target)); - - #line 137 "..\..\..\Forms\MainWindow.xaml" - this.Restartserver_button.Click += new System.Windows.RoutedEventHandler(this.Restartserver_button_Click); - - #line default - #line hidden - return; - case 18: - this.Uninstallserver_button = ((System.Windows.Controls.Button)(target)); - - #line 138 "..\..\..\Forms\MainWindow.xaml" - this.Uninstallserver_button.Click += new System.Windows.RoutedEventHandler(this.Uninstallserver_button_Click); - - #line default - #line hidden - return; - case 19: - this.Editmainconfigserver_button = ((System.Windows.Controls.Button)(target)); - - #line 139 "..\..\..\Forms\MainWindow.xaml" - this.Editmainconfigserver_button.Click += new System.Windows.RoutedEventHandler(this.Editmainconfigserver_button_Click); - - #line default - #line hidden - return; - case 20: - this.Editconfigserver_button = ((System.Windows.Controls.Button)(target)); - - #line 140 "..\..\..\Forms\MainWindow.xaml" - this.Editconfigserver_button.Click += new System.Windows.RoutedEventHandler(this.Editconfigserver_button_Click); - - #line default - #line hidden - return; - case 21: - this.Checkportsserver_button = ((System.Windows.Controls.Button)(target)); - - #line 141 "..\..\..\Forms\MainWindow.xaml" - this.Checkportsserver_button.Click += new System.Windows.RoutedEventHandler(this.Checkportsserver_button_Click); - - #line default - #line hidden - return; - case 22: - this.Installserver_button = ((System.Windows.Controls.Button)(target)); - - #line 142 "..\..\..\Forms\MainWindow.xaml" - this.Installserver_button.Click += new System.Windows.RoutedEventHandler(this.Installserver_button_Click); - - #line default - #line hidden - return; - case 23: - this.Setdirserver_button = ((System.Windows.Controls.Button)(target)); - - #line 143 "..\..\..\Forms\MainWindow.xaml" - this.Setdirserver_button.Click += new System.Windows.RoutedEventHandler(this.Setdirserver_button_Click); - - #line default - #line hidden - return; - case 24: - this.Startserver_checkBox = ((System.Windows.Controls.CheckBox)(target)); - - #line 144 "..\..\..\Forms\MainWindow.xaml" - this.Startserver_checkBox.Click += new System.Windows.RoutedEventHandler(this.Startserver_Checkbox_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.i.cs deleted file mode 100644 index 1b7c49b..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/MainWindow.g.i.cs +++ /dev/null @@ -1,444 +0,0 @@ -#pragma checksum "..\..\..\Forms\MainWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "A526672E889102F57AA3EA0697B65E997BD5AAA807D03907EACD42014A9F0EE9" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// MainWindow - /// - public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 1 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal FreeTAKServer_Manager_WPF.MainWindow Main_window; - - #line default - #line hidden - - - #line 68 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Grid MainWindow1; - - #line default - #line hidden - - - #line 73 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Menu menu_strip; - - #line default - #line hidden - - - #line 74 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem about_menuitem; - - #line default - #line hidden - - - #line 83 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem email_menuitem; - - #line default - #line hidden - - - #line 92 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem email_settings_menuitem; - - #line default - #line hidden - - - #line 101 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.MenuItem exit_menuitem; - - #line default - #line hidden - - - #line 114 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBlock lblCursorPosition; - - #line default - #line hidden - - - #line 118 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.ProgressBar progressbar; - - #line default - #line hidden - - - #line 122 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBlock status_lable; - - #line default - #line hidden - - - #line 125 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.GroupBox groupbox; - - #line default - #line hidden - - - #line 126 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - - #line 131 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Pythondir_textBox; - - #line default - #line hidden - - - #line 132 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.CheckBox Email_checkBox; - - #line default - #line hidden - - - #line 135 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Startserver_button; - - #line default - #line hidden - - - #line 136 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Stopserver_button; - - #line default - #line hidden - - - #line 137 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Restartserver_button; - - #line default - #line hidden - - - #line 138 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Uninstallserver_button; - - #line default - #line hidden - - - #line 139 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Editmainconfigserver_button; - - #line default - #line hidden - - - #line 140 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Editconfigserver_button; - - #line default - #line hidden - - - #line 141 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Checkportsserver_button; - - #line default - #line hidden - - - #line 142 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Installserver_button; - - #line default - #line hidden - - - #line 143 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Setdirserver_button; - - #line default - #line hidden - - - #line 144 "..\..\..\Forms\MainWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.CheckBox Startserver_checkBox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/mainwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\MainWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - this.Main_window = ((FreeTAKServer_Manager_WPF.MainWindow)(target)); - - #line 8 "..\..\..\Forms\MainWindow.xaml" - this.Main_window.Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - - #line 8 "..\..\..\Forms\MainWindow.xaml" - this.Main_window.Closing += new System.ComponentModel.CancelEventHandler(this.Window_Closing); - - #line default - #line hidden - return; - case 2: - this.MainWindow1 = ((System.Windows.Controls.Grid)(target)); - return; - case 3: - this.menu_strip = ((System.Windows.Controls.Menu)(target)); - return; - case 4: - this.about_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 74 "..\..\..\Forms\MainWindow.xaml" - this.about_menuitem.Click += new System.Windows.RoutedEventHandler(this.about_menuitem_Click); - - #line default - #line hidden - return; - case 5: - this.email_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 83 "..\..\..\Forms\MainWindow.xaml" - this.email_menuitem.Click += new System.Windows.RoutedEventHandler(this.email_setup_menuitem_Click); - - #line default - #line hidden - return; - case 6: - this.email_settings_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 92 "..\..\..\Forms\MainWindow.xaml" - this.email_settings_menuitem.Click += new System.Windows.RoutedEventHandler(this.read_me_menuitem_Click); - - #line default - #line hidden - return; - case 7: - this.exit_menuitem = ((System.Windows.Controls.MenuItem)(target)); - - #line 101 "..\..\..\Forms\MainWindow.xaml" - this.exit_menuitem.Click += new System.Windows.RoutedEventHandler(this.Test_API_menuitem_Click); - - #line default - #line hidden - return; - case 8: - this.lblCursorPosition = ((System.Windows.Controls.TextBlock)(target)); - return; - case 9: - this.progressbar = ((System.Windows.Controls.ProgressBar)(target)); - return; - case 10: - this.status_lable = ((System.Windows.Controls.TextBlock)(target)); - return; - case 11: - this.groupbox = ((System.Windows.Controls.GroupBox)(target)); - return; - case 12: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - case 13: - this.Pythondir_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 14: - this.Email_checkBox = ((System.Windows.Controls.CheckBox)(target)); - - #line 132 "..\..\..\Forms\MainWindow.xaml" - this.Email_checkBox.Click += new System.Windows.RoutedEventHandler(this.Email_checkBox_click); - - #line default - #line hidden - return; - case 15: - this.Startserver_button = ((System.Windows.Controls.Button)(target)); - - #line 135 "..\..\..\Forms\MainWindow.xaml" - this.Startserver_button.Click += new System.Windows.RoutedEventHandler(this.Startserver_button_Click); - - #line default - #line hidden - return; - case 16: - this.Stopserver_button = ((System.Windows.Controls.Button)(target)); - - #line 136 "..\..\..\Forms\MainWindow.xaml" - this.Stopserver_button.Click += new System.Windows.RoutedEventHandler(this.Stopserver_button_Click); - - #line default - #line hidden - return; - case 17: - this.Restartserver_button = ((System.Windows.Controls.Button)(target)); - - #line 137 "..\..\..\Forms\MainWindow.xaml" - this.Restartserver_button.Click += new System.Windows.RoutedEventHandler(this.Restartserver_button_Click); - - #line default - #line hidden - return; - case 18: - this.Uninstallserver_button = ((System.Windows.Controls.Button)(target)); - - #line 138 "..\..\..\Forms\MainWindow.xaml" - this.Uninstallserver_button.Click += new System.Windows.RoutedEventHandler(this.Uninstallserver_button_Click); - - #line default - #line hidden - return; - case 19: - this.Editmainconfigserver_button = ((System.Windows.Controls.Button)(target)); - - #line 139 "..\..\..\Forms\MainWindow.xaml" - this.Editmainconfigserver_button.Click += new System.Windows.RoutedEventHandler(this.Editmainconfigserver_button_Click); - - #line default - #line hidden - return; - case 20: - this.Editconfigserver_button = ((System.Windows.Controls.Button)(target)); - - #line 140 "..\..\..\Forms\MainWindow.xaml" - this.Editconfigserver_button.Click += new System.Windows.RoutedEventHandler(this.Editconfigserver_button_Click); - - #line default - #line hidden - return; - case 21: - this.Checkportsserver_button = ((System.Windows.Controls.Button)(target)); - - #line 141 "..\..\..\Forms\MainWindow.xaml" - this.Checkportsserver_button.Click += new System.Windows.RoutedEventHandler(this.Checkportsserver_button_Click); - - #line default - #line hidden - return; - case 22: - this.Installserver_button = ((System.Windows.Controls.Button)(target)); - - #line 142 "..\..\..\Forms\MainWindow.xaml" - this.Installserver_button.Click += new System.Windows.RoutedEventHandler(this.Installserver_button_Click); - - #line default - #line hidden - return; - case 23: - this.Setdirserver_button = ((System.Windows.Controls.Button)(target)); - - #line 143 "..\..\..\Forms\MainWindow.xaml" - this.Setdirserver_button.Click += new System.Windows.RoutedEventHandler(this.Setdirserver_button_Click); - - #line default - #line hidden - return; - case 24: - this.Startserver_checkBox = ((System.Windows.Controls.CheckBox)(target)); - - #line 144 "..\..\..\Forms\MainWindow.xaml" - this.Startserver_checkBox.Click += new System.Windows.RoutedEventHandler(this.Startserver_Checkbox_Click); - - #line default - #line hidden - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.baml b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.baml deleted file mode 100644 index c1d260a..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.baml and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.cs deleted file mode 100644 index dc76cdc..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.cs +++ /dev/null @@ -1,97 +0,0 @@ -#pragma checksum "..\..\..\Forms\ReadMeWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B7A8C830EA0DF45D4B06A0D458D0C4AEB82BC842BD0E7F7119936C8B609C3145" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// ReadMeWindow - /// - public partial class ReadMeWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 12 "..\..\..\Forms\ReadMeWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/readmewindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\ReadMeWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\ReadMeWindow.xaml" - ((FreeTAKServer_Manager_WPF.ReadMeWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.i.cs deleted file mode 100644 index dc76cdc..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/ReadMeWindow.g.i.cs +++ /dev/null @@ -1,97 +0,0 @@ -#pragma checksum "..\..\..\Forms\ReadMeWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "B7A8C830EA0DF45D4B06A0D458D0C4AEB82BC842BD0E7F7119936C8B609C3145" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// ReadMeWindow - /// - public partial class ReadMeWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 12 "..\..\..\Forms\ReadMeWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/readmewindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\ReadMeWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\ReadMeWindow.xaml" - ((FreeTAKServer_Manager_WPF.ReadMeWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.baml b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.baml deleted file mode 100644 index 9fe9bfb..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.baml and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.cs deleted file mode 100644 index 9c675e1..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.cs +++ /dev/null @@ -1,153 +0,0 @@ -#pragma checksum "..\..\..\Forms\Test_APIWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "AEC1E847ACDC605ACE250B981FA1F3B470BAE46C96C40D9A5323C848CB2E88F9" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// Test_APIWindow - /// - public partial class Test_APIWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 70 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Customtest_textBox; - - #line default - #line hidden - - - #line 71 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Token_textBox; - - #line default - #line hidden - - - #line 72 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button LocalTest_button; - - #line default - #line hidden - - - #line 73 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Customtest_button; - - #line default - #line hidden - - - #line 80 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/test_apiwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\Test_APIWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\Test_APIWindow.xaml" - ((FreeTAKServer_Manager_WPF.Test_APIWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Customtest_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 3: - this.Token_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 4: - this.LocalTest_button = ((System.Windows.Controls.Button)(target)); - - #line 72 "..\..\..\Forms\Test_APIWindow.xaml" - this.LocalTest_button.Click += new System.Windows.RoutedEventHandler(this.LocalTest_button_Click); - - #line default - #line hidden - return; - case 5: - this.Customtest_button = ((System.Windows.Controls.Button)(target)); - - #line 73 "..\..\..\Forms\Test_APIWindow.xaml" - this.Customtest_button.Click += new System.Windows.RoutedEventHandler(this.Customtest_button_Click); - - #line default - #line hidden - return; - case 6: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.i.cs deleted file mode 100644 index 9c675e1..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/Forms/Test_APIWindow.g.i.cs +++ /dev/null @@ -1,153 +0,0 @@ -#pragma checksum "..\..\..\Forms\Test_APIWindow.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "AEC1E847ACDC605ACE250B981FA1F3B470BAE46C96C40D9A5323C848CB2E88F9" -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using FreeTAKServer_Manager_WPF; -using System; -using System.Diagnostics; -using System.Windows; -using System.Windows.Automation; -using System.Windows.Controls; -using System.Windows.Controls.Primitives; -using System.Windows.Data; -using System.Windows.Documents; -using System.Windows.Ink; -using System.Windows.Input; -using System.Windows.Markup; -using System.Windows.Media; -using System.Windows.Media.Animation; -using System.Windows.Media.Effects; -using System.Windows.Media.Imaging; -using System.Windows.Media.Media3D; -using System.Windows.Media.TextFormatting; -using System.Windows.Navigation; -using System.Windows.Shapes; -using System.Windows.Shell; - - -namespace FreeTAKServer_Manager_WPF { - - - /// - /// Test_APIWindow - /// - public partial class Test_APIWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { - - - #line 70 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Customtest_textBox; - - #line default - #line hidden - - - #line 71 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.TextBox Token_textBox; - - #line default - #line hidden - - - #line 72 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button LocalTest_button; - - #line default - #line hidden - - - #line 73 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.Button Customtest_button; - - #line default - #line hidden - - - #line 80 "..\..\..\Forms\Test_APIWindow.xaml" - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] - internal System.Windows.Controls.RichTextBox Richtextbox; - - #line default - #line hidden - - private bool _contentLoaded; - - /// - /// InitializeComponent - /// - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - public void InitializeComponent() { - if (_contentLoaded) { - return; - } - _contentLoaded = true; - System.Uri resourceLocater = new System.Uri("/FreeTAKServer_Manager_WPF;component/forms/test_apiwindow.xaml", System.UriKind.Relative); - - #line 1 "..\..\..\Forms\Test_APIWindow.xaml" - System.Windows.Application.LoadComponent(this, resourceLocater); - - #line default - #line hidden - } - - [System.Diagnostics.DebuggerNonUserCodeAttribute()] - [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")] - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] - [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] - void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { - switch (connectionId) - { - case 1: - - #line 8 "..\..\..\Forms\Test_APIWindow.xaml" - ((FreeTAKServer_Manager_WPF.Test_APIWindow)(target)).Loaded += new System.Windows.RoutedEventHandler(this.Window_Loaded); - - #line default - #line hidden - return; - case 2: - this.Customtest_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 3: - this.Token_textBox = ((System.Windows.Controls.TextBox)(target)); - return; - case 4: - this.LocalTest_button = ((System.Windows.Controls.Button)(target)); - - #line 72 "..\..\..\Forms\Test_APIWindow.xaml" - this.LocalTest_button.Click += new System.Windows.RoutedEventHandler(this.LocalTest_button_Click); - - #line default - #line hidden - return; - case 5: - this.Customtest_button = ((System.Windows.Controls.Button)(target)); - - #line 73 "..\..\..\Forms\Test_APIWindow.xaml" - this.Customtest_button.Click += new System.Windows.RoutedEventHandler(this.Customtest_button_Click); - - #line default - #line hidden - return; - case 6: - this.Richtextbox = ((System.Windows.Controls.RichTextBox)(target)); - return; - } - this._contentLoaded = true; - } - } -} - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.Properties.Resources.resources b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.Properties.Resources.resources deleted file mode 100644 index 6c05a97..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.Properties.Resources.resources and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.AssemblyReference.cache b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.AssemblyReference.cache deleted file mode 100644 index 91e7717..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.AssemblyReference.cache and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.CoreCompileInputs.cache b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.CoreCompileInputs.cache deleted file mode 100644 index 027070f..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -9007e96652afee2940373815cee3b2a5a0da301a diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.FileListAbsolute.txt b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.FileListAbsolute.txt deleted file mode 100644 index 8e95069..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,28 +0,0 @@ -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\config.py -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\MainConfig.py -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\ReadMe.txt -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\requirements.txt -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\FreeTAKServer_Manager_WPF.exe.config -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\FreeTAKServer_Manager_WPF.exe -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\bin\Debug\FreeTAKServer_Manager_WPF.pdb -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.csproj.AssemblyReference.cache -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\AboutWindow.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\EmailSetupWindow.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\MainWindow.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\ReadMeWindow.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\Test_APIWindow.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\App.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF_Content.g.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF_MarkupCompile.cache -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF_MarkupCompile.lref -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\AboutWindow.baml -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\EmailSetupWindow.baml -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\MainWindow.baml -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\ReadMeWindow.baml -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\Forms\Test_APIWindow.baml -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.g.resources -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.Properties.Resources.resources -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.csproj.GenerateResource.cache -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.csproj.CoreCompileInputs.cache -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.exe -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\FreeTAKServer_Manager_WPF.pdb diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.GenerateResource.cache b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.GenerateResource.cache deleted file mode 100644 index c617ae3..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.csproj.GenerateResource.cache and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.exe b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.exe deleted file mode 100644 index 3e6ed37..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.exe and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.g.resources b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.g.resources deleted file mode 100644 index 2ccb144..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.g.resources and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.pdb b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.pdb deleted file mode 100644 index b777a66..0000000 Binary files a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF.pdb and /dev/null differ diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.cs deleted file mode 100644 index f594580..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.cs +++ /dev/null @@ -1,16 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("config.py")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mainconfig.py")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("requirements.txt")] - - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.i.cs b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.i.cs deleted file mode 100644 index f594580..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_Content.g.i.cs +++ /dev/null @@ -1,16 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("config.py")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("mainconfig.py")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("readme.txt")] -[assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("requirements.txt")] - - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.cache b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.cache deleted file mode 100644 index d9a0b5e..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.cache +++ /dev/null @@ -1,20 +0,0 @@ -FreeTAKServer_Manager_WPF - - -winexe -C# -.cs -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\obj\Debug\ -FreeTAKServer_Manager_WPF -none -false -DEBUG;TRACE -C:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\App.xaml -5-934171994 -41638920188 -13-295202108 -14560124791 -Forms\AboutWindow.xaml;Forms\EmailSetupWindow.xaml;Forms\MainWindow.xaml;Forms\ReadMeWindow.xaml;Forms\Test_APIWindow.xaml; - -False - diff --git a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.lref b/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.lref deleted file mode 100644 index 79335ce..0000000 --- a/WPF/FreeTAKServer_Manager_WPF/obj/Debug/FreeTAKServer_Manager_WPF_MarkupCompile.lref +++ /dev/null @@ -1,8 +0,0 @@ - - -FC:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\Forms\AboutWindow.xaml;; -FC:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\Forms\EmailSetupWindow.xaml;; -FC:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\Forms\MainWindow.xaml;; -FC:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\Forms\ReadMeWindow.xaml;; -FC:\Users\User501\Documents\GitHub\FreeTAKServer_Manager\WPF\FreeTAKServer_Manager_WPF\Forms\Test_APIWindow.xaml;; - diff --git a/WinForms/.vs/FreeTAKServer_Manager/v16/.suo b/WinForms/.vs/FreeTAKServer_Manager/v16/.suo index 032c3dc..0789262 100644 Binary files a/WinForms/.vs/FreeTAKServer_Manager/v16/.suo and b/WinForms/.vs/FreeTAKServer_Manager/v16/.suo differ diff --git a/WinForms/FreeTAKServer_Manager/Forms/MainForm.cs b/WinForms/FreeTAKServer_Manager/Forms/MainForm.cs index dcba57f..021ec00 100644 --- a/WinForms/FreeTAKServer_Manager/Forms/MainForm.cs +++ b/WinForms/FreeTAKServer_Manager/Forms/MainForm.cs @@ -209,7 +209,7 @@ private void StartServer() string nullkb_init = Properties.Settings.Default.Pythondir + @"Lib\site-packages\FreeTAKServer-UI\__init__.py"; if (Directory.Exists(Path.GetDirectoryName(configfile)) && Directory.Exists(Path.GetDirectoryName(MainConfigfile))) { - //del 0kb file + //del 0kb file if it exists FileInfo file = new FileInfo(nullkb_init); if (Directory.Exists(Path.GetDirectoryName(nullkb_init))) { @@ -220,7 +220,7 @@ private void StartServer() File.Delete(nullkb_init); } } - catch (Exception ex) + catch (Exception) { //do nothing }