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
| git checkout myExistingBranch | |
| git reset $(git merge-base main $(git branch --show-current)) | |
| git add -A | |
| git commit -S -m "some new commit message" | |
| git push --force |
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
| using System; | |
| using System.Collections.Generic; | |
| using Microsoft.AspNet.SignalR; | |
| using SimpleInjector; | |
| namespace Web.Shared | |
| { | |
| public class CustomDependencyResolver : DefaultDependencyResolver | |
| { | |
| private readonly Container _container; |