├── .gitattributes ├── .github └── workflows │ └── durango-ftp-dev.yml ├── .gitignore ├── FtpServer ├── .gitattributes ├── .gitignore ├── LICENSE ├── Library │ ├── Authenticate │ │ ├── AnonymousAuthenticator.cs │ │ ├── IAuthenticator.cs │ │ └── SimpleAuthenticator.cs │ ├── Connections │ │ ├── ControlConnection.cs │ │ ├── ControlConnectionSslFactory.cs │ │ ├── IControlConnectionSslFactory.cs │ │ ├── IDataConnection.cs │ │ ├── IDataConnectionFactory.cs │ │ ├── ISslDataConnection.cs │ │ ├── LocalDataConnection.cs │ │ ├── LocalDataConnectionFactory.cs │ │ ├── SslLocalDataConnection.cs │ │ └── SslLocalDataConnectionFactory.cs │ ├── Exceptions │ │ └── QuitRequestedException.cs │ ├── File │ │ ├── FileBusyException.cs │ │ ├── FileNoAccessException.cs │ │ ├── FileSpaceInsufficientException.cs │ │ ├── FileSystemEntry.cs │ │ ├── IFileProvider.cs │ │ ├── IFileProviderFactory.cs │ │ ├── SimpleFileProvider.cs │ │ └── SimpleFileProviderFactory.cs │ ├── FtpServer.cs │ ├── Helpers.cs │ ├── Library.csproj │ ├── README.md │ ├── Trace │ │ └── FtpTracer.cs │ └── stylecop.json └── README.md ├── LICENSE ├── PrivacyPolicy.md ├── README.md ├── UniversalFtpServer.sln └── UniversalFtpServer ├── App.xaml ├── App.xaml.cs ├── Assets ├── LargeTile.scale-100.png ├── LargeTile.scale-125.png ├── LargeTile.scale-150.png ├── LargeTile.scale-200.png ├── LargeTile.scale-400.png ├── LockScreenLogo.scale-200.png ├── SmallTile.scale-100.png ├── SmallTile.scale-125.png ├── SmallTile.scale-150.png ├── SmallTile.scale-200.png ├── SmallTile.scale-400.png ├── SplashScreen.scale-100.png ├── SplashScreen.scale-125.png ├── SplashScreen.scale-150.png ├── SplashScreen.scale-200.png ├── SplashScreen.scale-400.png ├── Square150x150Logo.scale-100.png ├── Square150x150Logo.scale-125.png ├── Square150x150Logo.scale-150.png ├── Square150x150Logo.scale-200.png ├── Square150x150Logo.scale-400.png ├── Square44x44Logo.altform-lightunplated_targetsize-16.png ├── Square44x44Logo.altform-lightunplated_targetsize-24.png ├── Square44x44Logo.altform-lightunplated_targetsize-256.png ├── Square44x44Logo.altform-lightunplated_targetsize-32.png ├── Square44x44Logo.altform-lightunplated_targetsize-48.png ├── Square44x44Logo.altform-unplated_targetsize-16.png ├── Square44x44Logo.altform-unplated_targetsize-256.png ├── Square44x44Logo.altform-unplated_targetsize-32.png ├── Square44x44Logo.altform-unplated_targetsize-48.png ├── Square44x44Logo.scale-100.png ├── Square44x44Logo.scale-125.png ├── Square44x44Logo.scale-150.png ├── Square44x44Logo.scale-200.png ├── Square44x44Logo.scale-400.png ├── Square44x44Logo.targetsize-16.png ├── Square44x44Logo.targetsize-24.png ├── Square44x44Logo.targetsize-24_altform-unplated.png ├── Square44x44Logo.targetsize-256.png ├── Square44x44Logo.targetsize-32.png ├── Square44x44Logo.targetsize-48.png ├── StoreLogo.backup.png ├── StoreLogo.scale-100.png ├── StoreLogo.scale-125.png ├── StoreLogo.scale-150.png ├── StoreLogo.scale-200.png ├── StoreLogo.scale-400.png ├── Wide310x150Logo.scale-100.png ├── Wide310x150Logo.scale-125.png ├── Wide310x150Logo.scale-150.png ├── Wide310x150Logo.scale-200.png ├── Wide310x150Logo.scale-400.png ├── WideTile.scale-100.png ├── WideTile.scale-125.png ├── WideTile.scale-150.png ├── WideTile.scale-200.png └── WideTile.scale-400.png ├── ExtendedExecutionHelper.cs ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── PinvokeFilesystem.cs ├── Properties ├── AssemblyInfo.cs └── Default.rd.xml ├── Strings └── en-US │ └── Resources.resw ├── UniversalFtpServer.csproj ├── UniversalFtpServer_StoreKey.pfx ├── UniversalFtpServer_TemporaryKey.pfx ├── UwpFileProvider.cs └── UwpFileProviderFactory.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/durango-ftp-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/.github/workflows/durango-ftp-dev.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/.gitignore -------------------------------------------------------------------------------- /FtpServer/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/.gitattributes -------------------------------------------------------------------------------- /FtpServer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/.gitignore -------------------------------------------------------------------------------- /FtpServer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/LICENSE -------------------------------------------------------------------------------- /FtpServer/Library/Authenticate/AnonymousAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Authenticate/AnonymousAuthenticator.cs -------------------------------------------------------------------------------- /FtpServer/Library/Authenticate/IAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Authenticate/IAuthenticator.cs -------------------------------------------------------------------------------- /FtpServer/Library/Authenticate/SimpleAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Authenticate/SimpleAuthenticator.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/ControlConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/ControlConnection.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/ControlConnectionSslFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/ControlConnectionSslFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/IControlConnectionSslFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/IControlConnectionSslFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/IDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/IDataConnection.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/IDataConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/IDataConnectionFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/ISslDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/ISslDataConnection.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/LocalDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/LocalDataConnection.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/LocalDataConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/LocalDataConnectionFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/SslLocalDataConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/SslLocalDataConnection.cs -------------------------------------------------------------------------------- /FtpServer/Library/Connections/SslLocalDataConnectionFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Connections/SslLocalDataConnectionFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/Exceptions/QuitRequestedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Exceptions/QuitRequestedException.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/FileBusyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/FileBusyException.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/FileNoAccessException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/FileNoAccessException.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/FileSpaceInsufficientException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/FileSpaceInsufficientException.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/FileSystemEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/FileSystemEntry.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/IFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/IFileProvider.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/IFileProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/IFileProviderFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/SimpleFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/SimpleFileProvider.cs -------------------------------------------------------------------------------- /FtpServer/Library/File/SimpleFileProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/File/SimpleFileProviderFactory.cs -------------------------------------------------------------------------------- /FtpServer/Library/FtpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/FtpServer.cs -------------------------------------------------------------------------------- /FtpServer/Library/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Helpers.cs -------------------------------------------------------------------------------- /FtpServer/Library/Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Library.csproj -------------------------------------------------------------------------------- /FtpServer/Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/README.md -------------------------------------------------------------------------------- /FtpServer/Library/Trace/FtpTracer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/Trace/FtpTracer.cs -------------------------------------------------------------------------------- /FtpServer/Library/stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/Library/stylecop.json -------------------------------------------------------------------------------- /FtpServer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/FtpServer/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/LICENSE -------------------------------------------------------------------------------- /PrivacyPolicy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/PrivacyPolicy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/README.md -------------------------------------------------------------------------------- /UniversalFtpServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer.sln -------------------------------------------------------------------------------- /UniversalFtpServer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/App.xaml -------------------------------------------------------------------------------- /UniversalFtpServer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/App.xaml.cs -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LargeTile.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LargeTile.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LargeTile.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LargeTile.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LargeTile.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SmallTile.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SmallTile.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SmallTile.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SmallTile.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SmallTile.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.backup.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/WideTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/WideTile.scale-100.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/WideTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/WideTile.scale-125.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/WideTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/WideTile.scale-150.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/WideTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/WideTile.scale-200.png -------------------------------------------------------------------------------- /UniversalFtpServer/Assets/WideTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Assets/WideTile.scale-400.png -------------------------------------------------------------------------------- /UniversalFtpServer/ExtendedExecutionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/ExtendedExecutionHelper.cs -------------------------------------------------------------------------------- /UniversalFtpServer/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/MainPage.xaml -------------------------------------------------------------------------------- /UniversalFtpServer/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/MainPage.xaml.cs -------------------------------------------------------------------------------- /UniversalFtpServer/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Package.appxmanifest -------------------------------------------------------------------------------- /UniversalFtpServer/PinvokeFilesystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/PinvokeFilesystem.cs -------------------------------------------------------------------------------- /UniversalFtpServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UniversalFtpServer/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Properties/Default.rd.xml -------------------------------------------------------------------------------- /UniversalFtpServer/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /UniversalFtpServer/UniversalFtpServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/UniversalFtpServer.csproj -------------------------------------------------------------------------------- /UniversalFtpServer/UniversalFtpServer_StoreKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/UniversalFtpServer_StoreKey.pfx -------------------------------------------------------------------------------- /UniversalFtpServer/UniversalFtpServer_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/UniversalFtpServer_TemporaryKey.pfx -------------------------------------------------------------------------------- /UniversalFtpServer/UwpFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/UwpFileProvider.cs -------------------------------------------------------------------------------- /UniversalFtpServer/UwpFileProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dantes-Dungeon/DURANGO-FTP/HEAD/UniversalFtpServer/UwpFileProviderFactory.cs --------------------------------------------------------------------------------