-
Notifications
You must be signed in to change notification settings - Fork 41
Testing update fix #237
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Testing update fix #237
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6bf75cd
forked bytex and updated to use steamkit 3.3, updated faster to dotne…
liamcannon 7ffc487
pointed submodule to correct repo
liamcannon 5a82516
Configures CI and build settings
Foxlider ca91f42
Adds global.json file for .NET SDK configuration
Foxlider 6cbd8af
Configures CodeQL analysis workflow
Foxlider 46441b4
Classic Imafuckingidiot commit
Foxlider 7bb70a2
Version Bump to 1.9g
Foxlider File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,8 +13,9 @@ on: | |
| jobs: | ||
| analyzeQL: | ||
| name: Analyze with CodeQL | ||
| # runs-on: [windows-latest] # may cause Out of Memory errors | ||
| runs-on: [self-hosted] | ||
| environment: Dev | ||
| runs-on: [windows-latest] | ||
| # runs-on: [self-hosted] | ||
|
|
||
| permissions: | ||
| # required for all workflows | ||
|
|
@@ -31,17 +32,18 @@ jobs: | |
| steps: | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| submodules: true | ||
|
|
||
| - name: Initialize CodeQL | ||
| uses: github/codeql-action/init@v3 | ||
| with: | ||
| languages: ${{ matrix.language }} | ||
|
|
||
|
|
||
| - name: Setup .NET Core SDK | ||
| uses: actions/[email protected] | ||
| with: | ||
| dotnet-version: ${{vars.DOTNET_VERSION}} | ||
| dotnet-version: ${{env.DOTNET_VERSION}} | ||
|
|
||
| - name: Restore Solution | ||
| run: dotnet restore ./FASTER.sln | ||
|
|
@@ -55,67 +57,74 @@ jobs: | |
| - name: Perform CodeQL Analysis | ||
| uses: github/codeql-action/analyze@v3 | ||
|
|
||
| AnalysisSonar: | ||
| name: Analyze with SonarCloud | ||
| runs-on: windows-latest | ||
| permissions: | ||
| pull-requests: write # allows SonarCloud to decorate PRs with analysis results | ||
| ## SONAR is now auto-analysing the project and the PRs | ||
| # AnalysisSonar: | ||
| # name: Analyze with SonarCloud | ||
| # runs-on: windows-latest | ||
| # permissions: | ||
| # pull-requests: write # allows SonarCloud to decorate PRs with analysis results | ||
|
|
||
| # steps: # DOES NOT SCAN FOR SOME REASON ? | ||
| # - name: Analyze with SonarCloud | ||
| # # steps: # DOES NOT SCAN FOR SOME REASON ? | ||
| # # - name: Analyze with SonarCloud | ||
|
|
||
| # # You can pin the exact commit or the version. | ||
| # uses: SonarSource/sonarcloud-github-action@v3 | ||
| # env: | ||
| # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
| # with: | ||
| # # Additional arguments for the SonarScanner CLI | ||
| # args: | ||
| # -Dsonar.projectKey=Foxlider_FASTER | ||
| # -Dsonar.organization=foxlicorp | ||
| # projectBaseDir: . | ||
| # # # You can pin the exact commit or the version. | ||
| # # uses: SonarSource/sonarcloud-github-action@v3 | ||
| # # env: | ||
| # # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
| # # with: | ||
| # # # Additional arguments for the SonarScanner CLI | ||
| # # args: | ||
| # # -Dsonar.projectKey=Foxlider_FASTER | ||
| # # -Dsonar.organization=foxlicorp | ||
| # # projectBaseDir: . | ||
|
|
||
|
|
||
| steps: | ||
| - name: Set up JDK 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| java-version: 17 | ||
| distribution: 'zulu' # Alternative distribution options are available. | ||
|
|
||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
| # steps: | ||
| # - name: Set up JDK 17 | ||
| # uses: actions/setup-java@v4 | ||
| # with: | ||
| # java-version: 17 | ||
| # distribution: 'zulu' # Alternative distribution options are available. | ||
|
|
||
| - name: Cache SonarCloud packages | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~\sonar\cache | ||
| key: ${{ runner.os }}-sonar | ||
| restore-keys: ${{ runner.os }}-sonar | ||
| # - uses: actions/checkout@v4 | ||
| # with: | ||
| # submodules: true | ||
| # fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis | ||
|
|
||
| # - name: Setup .NET Core SDK | ||
| # uses: actions/[email protected] | ||
| # with: | ||
| # dotnet-version: ${{env.DOTNET_VERSION}} | ||
|
|
||
| # - name: Cache SonarCloud packages | ||
| # uses: actions/cache@v4 | ||
| # with: | ||
| # path: ~\sonar\cache | ||
| # key: ${{ runner.os }}-sonar | ||
| # restore-keys: ${{ runner.os }}-sonar | ||
|
|
||
| - name: Cache SonarCloud scanner | ||
| id: cache-sonar-scanner | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: .\.sonar\scanner | ||
| key: ${{ runner.os }}-sonar-scanner | ||
| restore-keys: ${{ runner.os }}-sonar-scanner | ||
| # - name: Cache SonarCloud scanner | ||
| # id: cache-sonar-scanner | ||
| # uses: actions/cache@v4 | ||
| # with: | ||
| # path: .\.sonar\scanner | ||
| # key: ${{ runner.os }}-sonar-scanner | ||
| # restore-keys: ${{ runner.os }}-sonar-scanner | ||
|
|
||
| - name: Install SonarCloud scanner | ||
| if: steps.cache-sonar-scanner.outputs.cache-hit != 'true' | ||
| shell: pwsh | ||
| run: | | ||
| New-Item -Path .\.sonar\scanner -ItemType Directory | ||
| dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner | ||
| # - name: Install SonarCloud scanner | ||
| # if: steps.cache-sonar-scanner.outputs.cache-hit != 'true' | ||
| # shell: pwsh | ||
| # run: | | ||
| # New-Item -Path .\.sonar\scanner -ItemType Directory | ||
| # dotnet tool update dotnet-sonarscanner --tool-path .\.sonar\scanner | ||
|
|
||
| - name: Build and analyze | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.PR_DECORATION }} # Needed to get PR information, if any | ||
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
| shell: pwsh | ||
| run: | | ||
| .\.sonar\scanner\dotnet-sonarscanner begin /k:"Foxlider_FASTER" /o:"foxlicorp" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" | ||
| dotnet build | ||
| .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" | ||
| # - name: Build and analyze | ||
| # env: | ||
| # GITHUB_TOKEN: ${{ secrets.PR_DECORATION }} # Needed to get PR information, if any | ||
| # SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | ||
| # shell: pwsh | ||
| # run: | | ||
| # .\.sonar\scanner\dotnet-sonarscanner begin /k:"Foxlider_FASTER" /o:"foxlicorp" /d:sonar.token="${{ secrets.SONAR_TOKEN }}" /d:sonar.host.url="https://sonarcloud.io" | ||
| # dotnet build | ||
| # .\.sonar\scanner\dotnet-sonarscanner end /d:sonar.token="${{ secrets.SONAR_TOKEN }}" | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [submodule "BytexDigital.Steam"] | ||
| path = BytexDigital.Steam | ||
| url = https://github.com/liamcannon/BytexDigital.Steam.git |
Submodule BytexDigital.Steam
added at
f7189c
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| { | ||
| "sdk": { | ||
| "rollForward": "latestFeature", | ||
| "version": "9.0.0" | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
WHy removing those from the SLN ?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bro idk, my vs on my desktop fucks with git all the time.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No worries, I put it back :p