├── .dockerignore ├── .gitattributes ├── .github └── pull_request_template.md ├── .gitignore ├── .project ├── Directory.Build.props ├── Gamecure.sln ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── assets └── goals.icns ├── ci ├── Jenkinsfile_linux ├── Jenkinsfile_osx ├── Jenkinsfile_windows └── helpers.groovy ├── config_template.json ├── src ├── Gamecure.BuildTool │ ├── Builds │ │ ├── BuildContext.cs │ │ ├── CopyConfig.cs │ │ ├── OSX │ │ │ ├── CreateMacAppBundle.cs │ │ │ ├── GenerateMacPList.cs │ │ │ └── MoveGamecureFiles.cs │ │ ├── RunBuildCommand.cs │ │ ├── SetBuildArguments.cs │ │ ├── SetExecutablePermission.cs │ │ ├── Windows │ │ │ └── BuildWindowsInstaller.cs │ │ └── ZipBinary.cs │ ├── CommandLine │ │ ├── CommandList.cs │ │ ├── ICommand.cs │ │ ├── Option.cs │ │ └── RootCommand.cs │ ├── Configuration │ │ ├── ConfigContext.cs │ │ ├── ReadConfigTemplate.cs │ │ ├── SetConfigValues.cs │ │ ├── ValidateConfig.cs │ │ └── WriteConfig.cs │ ├── Gamecure.BuildTool.csproj │ └── Program.cs ├── Gamecure.Core │ ├── Common │ │ ├── ApplicationLauncher.cs │ │ ├── EnvironmentVariables.cs │ │ ├── Json.cs │ │ ├── Logging │ │ │ ├── ConsoleLogWriter.cs │ │ │ ├── FileLogWriter.cs │ │ │ ├── ILogWriter.cs │ │ │ └── Logger.cs │ │ ├── Platform.cs │ │ ├── ProcessResult.cs │ │ ├── ProcessRunner.cs │ │ ├── Querystring.cs │ │ └── SnakeCaseNamingPolicy.cs │ ├── Configuration │ │ ├── ReadApplicationConfigFile.cs │ │ └── ValidateApplicationConfig.cs │ ├── Editor │ │ ├── DownloadAndCopy │ │ │ ├── CheckIfEditorIsRunning.cs │ │ │ ├── CopyEditor.cs │ │ │ ├── DeletePreviousEditor.cs │ │ │ ├── DownloadEditor.cs │ │ │ ├── DownloadEditorContext.cs │ │ │ ├── StoreEditorVersion.cs │ │ │ ├── TrackCopiedFiles.cs │ │ │ ├── ValidateAndSetEditorPath.cs │ │ │ └── WriteTemporaryGoogleCredentials.cs │ │ ├── EditorVersion.cs │ │ ├── Setup │ │ │ ├── EditorSetupContext.cs │ │ │ └── RunSetupScript.cs │ │ └── Versions │ │ │ ├── EditorVersionsContext.cs │ │ │ ├── GetEditorVersions.cs │ │ │ ├── ReadCurrentVersion.cs │ │ │ └── SetupEditorVersionUrls.cs │ ├── Gamecure.Core.csproj │ ├── GlobalConfiguration.cs │ ├── Google │ │ ├── DeleteCredentialsCache.cs │ │ ├── GoogleAccessTokenCodeExchange.cs │ │ ├── GoogleAccessTokenFromRefreshToken.cs │ │ ├── GoogleAuthContext.cs │ │ ├── GoogleAuthSignIn.cs │ │ ├── GoogleCallbackUrl.cs │ │ ├── GoogleCredentialsCache.cs │ │ ├── GoogleCredentialsCacheFilename.cs │ │ ├── GoogleOAuth2Listener.cs │ │ └── ValidateGoogleClientSecret.cs │ ├── Longtail │ │ ├── DeleteLongtail.cs │ │ ├── DownloadLongtail.cs │ │ ├── GetLongtailVersion.cs │ │ ├── LongtailContext.cs │ │ ├── SetExecutablePermission.cs │ │ ├── SetLongtailPath.cs │ │ ├── ValidateLongtail.cs │ │ └── ValidateLongtailChecksum.cs │ ├── Pipeline │ │ ├── IMiddleware.cs │ │ └── PipelineBuilder.cs │ └── Plastic │ │ ├── CheckIfConfigurationIsRequired.cs │ │ ├── CheckPlasticInstallation.cs │ │ ├── ConfigureWorkspace.cs │ │ ├── CreateWorkspace.cs │ │ ├── Parser │ │ ├── LogParser.cs │ │ ├── ParserException.cs │ │ └── StatusParser.cs │ │ ├── PlasticChangesets.cs │ │ ├── PlasticContext.cs │ │ ├── SetPlasticCLIPath.cs │ │ └── ValidatePlasticWorkspace.cs ├── Gamecure.GUI │ ├── .gitignore │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ │ ├── goals.ico │ │ └── quotes.txt │ ├── Common │ │ ├── AsyncTaskModel.cs │ │ ├── AsyncTaskResult.cs │ │ ├── AsyncTaskState.cs │ │ └── IAsyncTask.cs │ ├── Controls │ │ ├── AsyncTask.axaml │ │ └── AsyncTask.axaml.cs │ ├── Converters │ │ ├── ChangeTypeConverters.cs │ │ └── LogLevelToBrushConverter.cs │ ├── DependencyInjectionExtensions.cs │ ├── Gamecure.GUI.csproj │ ├── Models │ │ ├── ConfigurationService.cs │ │ ├── EditorService.cs │ │ ├── GamecureVersion.cs │ │ ├── GoogleAuthService.cs │ │ ├── IConfigurationService.cs │ │ ├── IDependenciesService.cs │ │ ├── IEditorService.cs │ │ ├── IGamecureVersion.cs │ │ ├── IGoogleAuthService.cs │ │ ├── ILogFileService.cs │ │ ├── IPlasticService.cs │ │ ├── LogFileService.cs │ │ ├── PlasticService.cs │ │ └── Quotes.cs │ ├── Pages │ │ ├── AppLog.axaml │ │ ├── AppLog.axaml.cs │ │ ├── Config.axaml │ │ ├── Config.axaml.cs │ │ ├── EditorSync.axaml │ │ ├── EditorSync.axaml.cs │ │ ├── Quotes.axaml │ │ └── Quotes.axaml.cs │ ├── Program.cs │ ├── Registry.cs │ ├── Styles │ │ └── Sidebar.axaml │ ├── ViewLocator.cs │ ├── ViewModels │ │ ├── AppLogViewModel.cs │ │ ├── Config │ │ │ └── ConfigViewModel.cs │ │ ├── EditorSync │ │ │ ├── ChangesetViewModel.cs │ │ │ ├── ChangesetViewModelComparar.cs │ │ │ └── EditorSyncViewModel.cs │ │ ├── FirstTimeSetup │ │ │ ├── DependenciesViewModel.cs │ │ │ ├── FirstTimeSetupViewModel.cs │ │ │ ├── GoogleSignInViewModel.cs │ │ │ ├── SetupSteps.cs │ │ │ ├── SetupUnrealEngineViewModel.cs │ │ │ └── WorkspaceSetupViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MainWindowViewModel.cs │ │ ├── NerdQuotesViewModel.cs │ │ └── ViewModelBase.cs │ └── Views │ │ ├── FirstRunSetup.axaml │ │ ├── FirstRunSetup.axaml.cs │ │ ├── MainView.axaml │ │ ├── MainView.axaml.cs │ │ ├── MainWindow.axaml │ │ └── MainWindow.axaml.cs └── Gamecure.Installer │ ├── Gamecure.Installer.wixproj │ ├── Product.wxs │ └── Resources │ ├── Banner.bmp │ ├── Dialog.bmp │ └── Goals.ico └── tests └── Gamecure.Core.Tests ├── Gamecure.Core.Tests.csproj └── Plastic └── Parser ├── LogParserTests.cs └── StatusParserTests.cs /.dockerignore: -------------------------------------------------------------------------------- 1 | src/ 2 | .vs/ 3 | .github/ 4 | release/ -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/.project -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Gamecure.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/Gamecure.sln -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/README.md -------------------------------------------------------------------------------- /assets/goals.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/assets/goals.icns -------------------------------------------------------------------------------- /ci/Jenkinsfile_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/ci/Jenkinsfile_linux -------------------------------------------------------------------------------- /ci/Jenkinsfile_osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/ci/Jenkinsfile_osx -------------------------------------------------------------------------------- /ci/Jenkinsfile_windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/ci/Jenkinsfile_windows -------------------------------------------------------------------------------- /ci/helpers.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/ci/helpers.groovy -------------------------------------------------------------------------------- /config_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/config_template.json -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/BuildContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/BuildContext.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/CopyConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/CopyConfig.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/OSX/CreateMacAppBundle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/OSX/CreateMacAppBundle.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/OSX/GenerateMacPList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/OSX/GenerateMacPList.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/OSX/MoveGamecureFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/OSX/MoveGamecureFiles.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/RunBuildCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/RunBuildCommand.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/SetBuildArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/SetBuildArguments.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/SetExecutablePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/SetExecutablePermission.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/Windows/BuildWindowsInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/Windows/BuildWindowsInstaller.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Builds/ZipBinary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Builds/ZipBinary.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/CommandLine/CommandList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/CommandLine/CommandList.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/CommandLine/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/CommandLine/ICommand.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/CommandLine/Option.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/CommandLine/Option.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/CommandLine/RootCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/CommandLine/RootCommand.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Configuration/ConfigContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Configuration/ConfigContext.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Configuration/ReadConfigTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Configuration/ReadConfigTemplate.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Configuration/SetConfigValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Configuration/SetConfigValues.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Configuration/ValidateConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Configuration/ValidateConfig.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Configuration/WriteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Configuration/WriteConfig.cs -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Gamecure.BuildTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Gamecure.BuildTool.csproj -------------------------------------------------------------------------------- /src/Gamecure.BuildTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.BuildTool/Program.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/ApplicationLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/ApplicationLauncher.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/EnvironmentVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/EnvironmentVariables.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Json.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Logging/ConsoleLogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Logging/ConsoleLogWriter.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Logging/FileLogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Logging/FileLogWriter.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Logging/ILogWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Logging/ILogWriter.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Logging/Logger.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Platform.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/ProcessResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/ProcessResult.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/ProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/ProcessRunner.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/Querystring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/Querystring.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Common/SnakeCaseNamingPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Common/SnakeCaseNamingPolicy.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Configuration/ReadApplicationConfigFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Configuration/ReadApplicationConfigFile.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Configuration/ValidateApplicationConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Configuration/ValidateApplicationConfig.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/CheckIfEditorIsRunning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/CheckIfEditorIsRunning.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/CopyEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/CopyEditor.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/DeletePreviousEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/DeletePreviousEditor.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/DownloadEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/DownloadEditor.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/DownloadEditorContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/DownloadEditorContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/StoreEditorVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/StoreEditorVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/TrackCopiedFiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/TrackCopiedFiles.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/ValidateAndSetEditorPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/ValidateAndSetEditorPath.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/DownloadAndCopy/WriteTemporaryGoogleCredentials.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/DownloadAndCopy/WriteTemporaryGoogleCredentials.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/EditorVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/EditorVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Setup/EditorSetupContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Setup/EditorSetupContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Setup/RunSetupScript.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Setup/RunSetupScript.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Versions/EditorVersionsContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Versions/EditorVersionsContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Versions/GetEditorVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Versions/GetEditorVersions.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Versions/ReadCurrentVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Versions/ReadCurrentVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Editor/Versions/SetupEditorVersionUrls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Editor/Versions/SetupEditorVersionUrls.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Gamecure.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Gamecure.Core.csproj -------------------------------------------------------------------------------- /src/Gamecure.Core/GlobalConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/GlobalConfiguration.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/DeleteCredentialsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/DeleteCredentialsCache.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleAccessTokenCodeExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleAccessTokenCodeExchange.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleAccessTokenFromRefreshToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleAccessTokenFromRefreshToken.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleAuthContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleAuthContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleAuthSignIn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleAuthSignIn.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleCallbackUrl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleCallbackUrl.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleCredentialsCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleCredentialsCache.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleCredentialsCacheFilename.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleCredentialsCacheFilename.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/GoogleOAuth2Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/GoogleOAuth2Listener.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Google/ValidateGoogleClientSecret.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Google/ValidateGoogleClientSecret.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/DeleteLongtail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/DeleteLongtail.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/DownloadLongtail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/DownloadLongtail.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/GetLongtailVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/GetLongtailVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/LongtailContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/LongtailContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/SetExecutablePermission.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/SetExecutablePermission.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/SetLongtailPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/SetLongtailPath.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/ValidateLongtail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/ValidateLongtail.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Longtail/ValidateLongtailChecksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Longtail/ValidateLongtailChecksum.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Pipeline/IMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Pipeline/IMiddleware.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Pipeline/PipelineBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Pipeline/PipelineBuilder.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/CheckIfConfigurationIsRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/CheckIfConfigurationIsRequired.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/CheckPlasticInstallation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/CheckPlasticInstallation.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/ConfigureWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/ConfigureWorkspace.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/CreateWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/CreateWorkspace.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/Parser/LogParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/Parser/LogParser.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/Parser/ParserException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/Parser/ParserException.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/Parser/StatusParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/Parser/StatusParser.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/PlasticChangesets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/PlasticChangesets.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/PlasticContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/PlasticContext.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/SetPlasticCLIPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/SetPlasticCLIPath.cs -------------------------------------------------------------------------------- /src/Gamecure.Core/Plastic/ValidatePlasticWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Core/Plastic/ValidatePlasticWorkspace.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/.gitignore -------------------------------------------------------------------------------- /src/Gamecure.GUI/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/App.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/App.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Assets/goals.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Assets/goals.ico -------------------------------------------------------------------------------- /src/Gamecure.GUI/Assets/quotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Assets/quotes.txt -------------------------------------------------------------------------------- /src/Gamecure.GUI/Common/AsyncTaskModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Common/AsyncTaskModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Common/AsyncTaskResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Common/AsyncTaskResult.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Common/AsyncTaskState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Common/AsyncTaskState.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Common/IAsyncTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Common/IAsyncTask.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Controls/AsyncTask.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Controls/AsyncTask.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Controls/AsyncTask.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Controls/AsyncTask.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Converters/ChangeTypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Converters/ChangeTypeConverters.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Converters/LogLevelToBrushConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Converters/LogLevelToBrushConverter.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/DependencyInjectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/DependencyInjectionExtensions.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Gamecure.GUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Gamecure.GUI.csproj -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/ConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/ConfigurationService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/EditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/EditorService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/GamecureVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/GamecureVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/GoogleAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/GoogleAuthService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IConfigurationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IConfigurationService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IDependenciesService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IDependenciesService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IEditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IEditorService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IGamecureVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IGamecureVersion.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IGoogleAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IGoogleAuthService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/ILogFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/ILogFileService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/IPlasticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/IPlasticService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/LogFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/LogFileService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/PlasticService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/PlasticService.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Models/Quotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Models/Quotes.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/AppLog.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/AppLog.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/AppLog.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/AppLog.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/Config.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/Config.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/Config.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/Config.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/EditorSync.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/EditorSync.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/EditorSync.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/EditorSync.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/Quotes.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/Quotes.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Pages/Quotes.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Pages/Quotes.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Program.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Registry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Registry.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Styles/Sidebar.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Styles/Sidebar.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewLocator.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/AppLogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/AppLogViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/Config/ConfigViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/Config/ConfigViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/EditorSync/ChangesetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/EditorSync/ChangesetViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/EditorSync/ChangesetViewModelComparar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/EditorSync/ChangesetViewModelComparar.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/EditorSync/EditorSyncViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/EditorSync/EditorSyncViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/DependenciesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/DependenciesViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/FirstTimeSetupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/FirstTimeSetupViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/GoogleSignInViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/GoogleSignInViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/SetupSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/SetupSteps.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/SetupUnrealEngineViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/SetupUnrealEngineViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/FirstTimeSetup/WorkspaceSetupViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/FirstTimeSetup/WorkspaceSetupViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/NerdQuotesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/NerdQuotesViewModel.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/FirstRunSetup.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/FirstRunSetup.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/FirstRunSetup.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/FirstRunSetup.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/MainView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/MainView.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/MainView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/MainView.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/MainWindow.axaml -------------------------------------------------------------------------------- /src/Gamecure.GUI/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.GUI/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Gamecure.Installer/Gamecure.Installer.wixproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Installer/Gamecure.Installer.wixproj -------------------------------------------------------------------------------- /src/Gamecure.Installer/Product.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Installer/Product.wxs -------------------------------------------------------------------------------- /src/Gamecure.Installer/Resources/Banner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Installer/Resources/Banner.bmp -------------------------------------------------------------------------------- /src/Gamecure.Installer/Resources/Dialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Installer/Resources/Dialog.bmp -------------------------------------------------------------------------------- /src/Gamecure.Installer/Resources/Goals.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/src/Gamecure.Installer/Resources/Goals.ico -------------------------------------------------------------------------------- /tests/Gamecure.Core.Tests/Gamecure.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/tests/Gamecure.Core.Tests/Gamecure.Core.Tests.csproj -------------------------------------------------------------------------------- /tests/Gamecure.Core.Tests/Plastic/Parser/LogParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/tests/Gamecure.Core.Tests/Plastic/Parser/LogParserTests.cs -------------------------------------------------------------------------------- /tests/Gamecure.Core.Tests/Plastic/Parser/StatusParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goalsgame/gamecure/HEAD/tests/Gamecure.Core.Tests/Plastic/Parser/StatusParserTests.cs --------------------------------------------------------------------------------