Mark Michaelis
Mark Michaelis
No Shim was generated for SharpKeys.exe so I added code to create one.
I'd like to revisit the issue of support for Url paths relative to the manifest (json) path (see #444). i.e. If I install a local manifest with `scoop install .\bucket\myapp.json`...
There multiple occasions when an err is returned and then ignored with code such as: ``` if err != nil { return err } ``` I'd like to start logging...
## Description - Upgraded the project to .NET 5.0 - Added option to prompt the user for API Key (rather than having to edit the code) - Deleted test files/folder...
**Describe the bug** When invoking `DropboxOAuth2Helper.ProcessCodeFlowAsync(Uri responseUri, string appKey, string appSecret, string redirectUri = null, string state = null, HttpClient client = null, string codeVerifier = null)`, __the one with...
We are missing quite a few tests and it would be great to get the remainder in place. Rather than one person take this issue, please create a new issue...
Occasionally, listing 9.18 fails with an `System.UnauthorizedAccessException`. The exception occurs on the last line of the following snippet: ``` string fileName = @"enumtest.txt"; FileInfo file = new FileInfo(fileName); file.Open(FileMode.OpenOrCreate).Dispose(); ```...
When running `Shared\Program.cs` from any project (the launcher that calls each source file, the invocation doesn't wait for an async method to complete. Line [Shared\Program.cs (93)](https://github.com/IntelliTect/EssentialCSharp/blob/v8.0/src/Shared/Program.cs#L93) checks for an `STAThreadAttribute`...
Listing 9.16 uses a FileAttributes.Hidden enum which doesn't work on Linux. Update the sample to work on Linux. Proposals on what change to make are welcome.