├── .gitignore ├── EarlyStart.Package ├── EarlyStart.Package.wapproj ├── Images │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ └── StoreLogo.png └── Package.appxmanifest ├── EarlyStart.Service ├── CassiaExtensions.cs ├── EarlyStart.Service.csproj ├── EnvironmentBlock.cs ├── NativeMethods.txt ├── Program.cs └── Service.cs ├── EarlyStart.sln ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/.gitignore -------------------------------------------------------------------------------- /EarlyStart.Package/EarlyStart.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Package/EarlyStart.Package.wapproj -------------------------------------------------------------------------------- /EarlyStart.Package/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Package/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /EarlyStart.Package/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Package/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /EarlyStart.Package/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Package/Images/StoreLogo.png -------------------------------------------------------------------------------- /EarlyStart.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Package/Package.appxmanifest -------------------------------------------------------------------------------- /EarlyStart.Service/CassiaExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/CassiaExtensions.cs -------------------------------------------------------------------------------- /EarlyStart.Service/EarlyStart.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/EarlyStart.Service.csproj -------------------------------------------------------------------------------- /EarlyStart.Service/EnvironmentBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/EnvironmentBlock.cs -------------------------------------------------------------------------------- /EarlyStart.Service/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/NativeMethods.txt -------------------------------------------------------------------------------- /EarlyStart.Service/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/Program.cs -------------------------------------------------------------------------------- /EarlyStart.Service/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.Service/Service.cs -------------------------------------------------------------------------------- /EarlyStart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/EarlyStart.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sylveon/EarlyStart/HEAD/README.md --------------------------------------------------------------------------------