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 tag -d v1 | |
| git push origin :refs/tags/v1 | |
| git tag v1 | |
| git push origin v1 |
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
| dotnet tool install --global dotnet-outdated-tool |
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
| import { HttpErrorResponse, HttpEvent, HttpEventType, HttpHandler, HttpInterceptor, HttpRequest, HttpResponse, HttpStatusCode } from '@angular/common/http'; | |
| import { Injectable } from '@angular/core'; | |
| import { Observable } from 'rxjs'; | |
| import { tap } from 'rxjs/operators'; | |
| @Injectable() | |
| export class AuthRedirectInterceptor implements HttpInterceptor { | |
| intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> { | |
| return next.handle(req).pipe(tap({ | |
| error: (err: any) => { |
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 NUnit.Framework; | |
| namespace Fhi.BaseConfigTests; | |
| using System.IO; | |
| using Microsoft.Extensions.Configuration; | |
| public abstract class BaseConfigTests | |
| { |
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
| mode: Mainline | |
| branches: | |
| master: | |
| regex: ^master$|^main$|^develop$ | |
| ignore: | |
| sha: [] | |
| merge-message-formats: {} |
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
| root = true | |
| # All files | |
| [*] | |
| indent_style = space | |
| # Xml files | |
| [*.xml] | |
| indent_size = 2 |
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
| {"version":1,"resource":"file:///d%3A/repos/fhi.itfelles/Fhi.ITDokumentasjon.wiki/Oversikt/Virksomhetsarkitektur.md","entries":[{"id":"pPDo.md","timestamp":1654602975260},{"id":"CjO0.md","timestamp":1654602992511},{"id":"B2n5.md","timestamp":1654603122349},{"id":"8RKf.md","timestamp":1654603134158},{"id":"DjT1.md","source":"moved.source","timestamp":1654603151824}]} |
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
| taskkill /T /F /FI "IMAGENAME eq vstest.*" | |
| taskkill /T /F /FI "IMAGENAME eq TE.Processhost.*" | |
| taskkill /T /F /FI "IMAGENAME eq testhost.*" | |
| taskkill /T /F /FI "IMAGENAME eq MSBuild.*" |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <configuration> | |
| <packageSources> | |
| <clear /> | |
| <add key="Nuget" value="https://api.nuget.org/v3/index.json" /> | |
| <add key="Local" value="c:\nuget" /> | |
| </packageSources> | |
| </configuration> |
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
| name: NetFrameWork.Legacy.CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v1 |
NewerOlder