-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from Zacam/development
Update to Net.Standard Release
- Loading branch information
Showing
306 changed files
with
26,735 additions
and
58,452 deletions.
There are no files selected for viewing
This file contains 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,4 @@ | ||
[*.cs] | ||
|
||
# CS8622: Nullability of reference types in type of parameter doesn't match the target delegate (possibly because of nullability attributes). | ||
dotnet_diagnostic.CS8622.severity = silent |
This file was deleted.
Oops, something went wrong.
This file contains 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,34 @@ | ||
name: Stable Development Build | ||
|
||
on: | ||
push: | ||
paths: | ||
- SBRW.Launcher.RunTime/InsiderKit/** | ||
|
||
jobs: | ||
build: | ||
runs-on: windows-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- name: Branch Checkout | ||
uses: actions/[email protected] | ||
- name: Setup .Net 6 SDK | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '6.0.x' | ||
- name: Set Custom NuGet Packages | ||
run: | | ||
dotnet nuget add source "https://nuget.pkg.github.com/DavidCarbon-SBRW/index.json" -n "SBRW Launcher Libraries" -u ${env:UserName} -p ${env:Password} --store-password-in-clear-text | ||
env: | ||
UserName: ${{ secrets.GITHUB_USERNAME }} | ||
Password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Restore Custom NuGet Packages | ||
run: dotnet restore --ignore-failed-sources | ||
- name: Build Project | ||
run: dotnet build --configuration Release | ||
- name: Upload Build Artifacts | ||
uses: actions/[email protected] | ||
with: | ||
name: Release_GitHub_Actions | ||
path: | | ||
${{ github.workspace }}/SBRW.Launcher.Net/bin/Release/* |
This file was deleted.
Oops, something went wrong.
This file contains 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 was deleted.
Oops, something went wrong.
Oops, something went wrong.