diff --git a/DisCatSharp.code-workspace b/DisCatSharp.code-workspace index 5f055bdae..52664b383 100644 --- a/DisCatSharp.code-workspace +++ b/DisCatSharp.code-workspace @@ -1,18 +1,20 @@ { "folders": [ { "path": "." } ], "settings": { "discord.lowerDetailsEditing": "Editing {file_name}:{current_line}/{total_lines}", "discord.detailsEditing": "Working on {git_repo_name} ({git_branch})", "discord.lowerDetailsDebugging": "Debugging: {file_name}", "discord.detailsDebugging": "Working on {git_repo_name} ({git_branch})", "licenser.author": "Aiko IT Systems", "licenser.customHeader": "This file is part of the DisCatSharp project, a fork of DSharpPlus.\\n\\nCopyright (c) 2021 AITSYS\\n\\nPermission is hereby granted, free of charge, to any person obtaining a copy\\nof this software and associated documentation files (the \"Software\"), to deal\\nin the Software without restriction, including without limitation the rights\\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\\ncopies of the Software, and to permit persons to whom the Software is\\nfurnished to do so, subject to the following conditions:\\n\\nThe above copyright notice and this permission notice shall be included in all\\ncopies or substantial portions of the Software.\\n\\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\\nSOFTWARE.", "licenser.license": "MIT", "licenser.projectName": "DisCatSharp", - "licenser.useSingleLineStyle": false + "licenser.useSingleLineStyle": false, + "gitlens.views.repositories.showIncomingActivity": true, + "gitlens.graph.showRemoteNames": true } } diff --git a/_appveyor_old.yml b/_appveyor_old.yml deleted file mode 100644 index ba16ccca4..000000000 --- a/_appveyor_old.yml +++ /dev/null @@ -1,140 +0,0 @@ -- - branches: - only: - - disabled - version: 10.1.1-nightly-{build} - pull_requests: - do_not_increment_build_number: true - skip_tags: true - max_jobs: 1 - image: Visual Studio 2022 - clone_depth: 1 - build_script: - - ps: |- - # Version number - $BUILD_NUMBER = [int]$Env:APPVEYOR_BUILD_NUMBER - $BUILD_SUFFIX = "nightly" - - # Branch - $BRANCH = "$Env:APPVEYOR_REPO_BRANCH" - $Env:DOCFX_SOURCE_BRANCH_NAME = "$BRANCH" - - # Output directory - $Env:ARTIFACT_DIR = ".\artifacts" - $dir = New-Item -type directory $env:ARTIFACT_DIR - $dir = $dir.FullName - - # Verbosity - Write-Host "Build: $BUILD_NUMBER / Branch: $BRANCH" - Write-Host "Artifacts will be placed in: $dir" - - # Check if this is a PR - if (-not $Env:APPVEYOR_PULL_REQUEST_NUMBER) - { - Write-Host "Commencing complete build" - & .\rebuild-all.ps1 -ArtifactLocation "$dir" -Configuration "Release" -VersionSuffix "$BUILD_SUFFIX" -BuildNumber $BUILD_NUMBER - & Remove-Item "$dir\*.symbols.nupkg" - } - else - { - Write-Host "Building from PR ($Env:APPVEYOR_PULL_REQUEST_NUMBER)" - & .\rebuild-all.ps1 -ArtifactLocation "$dir" -Configuration "Release" -VersionSuffix "$BUILD_SUFFIX" -BuildNumber $BUILD_NUMBER - & Remove-Item "$dir\*.symbols.nupkg" - } - artifacts: - - path: artifacts\*.snupkg - - path: artifacts\*.nupkg - - path: artifacts\dcs-docs.tar.xz - deploy: - - provider: NuGet - server: - api_key: - secure: RjohrwOJE0RgzgIfe71AH42hRr7aZnEz5So/EKRI1FM7LQ/SLrEwSTDsNEQWMQik - skip_symbols: false - - provider: GitHub - auth_token: - secure: oMF8sv9mhVjO7pBctQOwlmfd5aHQ4hvMoVCz77bgO9+1zBQSelPHxk0bCVfXNCCp - prerelease: true - force_update: true - - provider: NuGet - server: https://nuget.pkg.github.com/Aiko-IT-Systems/index.json - username: lulalaby - api_key: - secure: SBGo8KrGJ7t5wwMNHKD0WSzrQ+PLJbqXE3FtDH2yGkSrQewO+kzmwp/xGk5a84He - skip_symbols: true - on_success: - - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - - ps: ./send.ps1 success $env:WEBHOOK_URL - on_failure: - - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - - ps: ./send.ps1 failure $env:WEBHOOK_URL -# Releases -- - branches: - only: - - /fuck/ - version: 10.1.0 - pull_requests: - do_not_increment_build_number: true - skip_tags: true - max_jobs: 1 - image: Visual Studio 2022 - clone_depth: 1 - build_script: - - ps: |- - # Version number - $BUILD_NUMBER = [int]$Env:APPVEYOR_BUILD_NUMBER - - # Branch - $BRANCH = "$Env:APPVEYOR_REPO_BRANCH" - $Env:DOCFX_SOURCE_BRANCH_NAME = "$BRANCH" - - # Output directory - $Env:ARTIFACT_DIR = ".\artifacts" - $dir = New-Item -type directory $env:ARTIFACT_DIR - $dir = $dir.FullName - - # Verbosity - Write-Host "Build: $BUILD_NUMBER / Branch: $BRANCH" - Write-Host "Artifacts will be placed in: $dir" - - # Check if this is a PR - if (-not $Env:APPVEYOR_PULL_REQUEST_NUMBER) - { - Write-Host "Commencing complete build" - & .\rebuild-all.ps1 -ArtifactLocation "$dir" -Configuration "Release" -VersionSuffix "$BUILD_SUFFIX" -BuildNumber $BUILD_NUMBER - & Remove-Item "$dir\*.symbols.nupkg" - } - else - { - Write-Host "Building from PR ($Env:APPVEYOR_PULL_REQUEST_NUMBER)" - & .\rebuild-all.ps1 -ArtifactLocation "$dir" -Configuration "Release" -VersionSuffix "$BUILD_SUFFIX" -BuildNumber $BUILD_NUMBER - & Remove-Item "$dir\*.symbols.nupkg" - } - artifacts: - - path: artifacts\*.snupkg - - path: artifacts\*.nupkg - - path: artifacts\dcs-docs.tar.xz - deploy: - - provider: NuGet - server: - api_key: - secure: RjohrwOJE0RgzgIfe71AH42hRr7aZnEz5So/EKRI1FM7LQ/SLrEwSTDsNEQWMQik - skip_symbols: false - - provider: GitHub - auth_token: - secure: oMF8sv9mhVjO7pBctQOwlmfd5aHQ4hvMoVCz77bgO9+1zBQSelPHxk0bCVfXNCCp - prerelease: false - force_update: true - - provider: NuGet - server: https://nuget.pkg.github.com/Aiko-IT-Systems/index.json - username: lulalaby - api_key: - secure: SBGo8KrGJ7t5wwMNHKD0WSzrQ+PLJbqXE3FtDH2yGkSrQewO+kzmwp/xGk5a84He - skip_symbols: true - on_success: - - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - - ps: ./send.ps1 success $env:WEBHOOK_URL - on_failure: - - ps: Invoke-RestMethod https://raw.githubusercontent.com/DiscordHooks/appveyor-discord-webhook/master/send.ps1 -o send.ps1 - - ps: ./send.ps1 failure $env:WEBHOOK_URL