-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update for .NET 9 * Fix Errors * Update Unit Test forNUnit FluentAssertions * Fix Failing Unit Tests * Update build.yml * Add `AfterAllTests()` * Ensure IGitHubApiStatusService inherits from IDisposable * Update tests for `IDisposable` * Update for .NET 9 GA * Update GitStatus.Mobile.csproj * Update GitHubApiStatusServiceExtensionsTests.cs * Update build.yml * Add `partial` * Update GitStatus.Mobile.csproj
- Loading branch information
Showing
53 changed files
with
912 additions
and
745 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
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 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 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 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,9 @@ | ||
namespace GitStatus.Common; | ||
|
||
public static class GitHubConstants | ||
{ | ||
public const string AuthScheme = "bearer"; | ||
public const string PersonalAccessToken = ""; | ||
public const string GitHubRestApiUrl = "https://api.github.com"; | ||
public const string GitHubGraphQLApiUrl = "https://api.github.com/graphql"; | ||
} |
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,7 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0;$(LatestSupportedTFM)</TargetFrameworks> | ||
</PropertyGroup> | ||
|
||
</Project> |
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"sdk": { | ||
"version": "8.0.300", | ||
"rollForward": "latestFeature" | ||
"version": "9.0.100-rc.2.24474.11", | ||
"rollForward": "latestFeature", | ||
"allowPrerelease": true | ||
} | ||
} | ||
} |
Oops, something went wrong.