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 NLog; | |
| using NLog.LayoutRenderers; | |
| using System; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Collections.Concurrent; | |
| namespace NLogTest | |
| { | |
| /// <summary> |
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 Countersoft.Gemini.Api; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Security.Principal; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace GeminiConsole | |
| { |
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 Microsoft.Azure.KeyVault; | |
| using Microsoft.Azure.KeyVault.Models; | |
| using Microsoft.IdentityModel.Clients.ActiveDirectory; | |
| using Microsoft.Rest.Serialization; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; |
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
| // Copyright (c) Brock Allen & Dominick Baier. All rights reserved. | |
| // Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information. | |
| using System; | |
| using IdentityServer4; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.Extensions.DependencyInjection; | |
| using Microsoft.IdentityModel.Tokens; |
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 System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Topshelf; | |
| using windowsService1.Logging; |
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 System.Diagnostics; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| using Topshelf; | |
| using windowsService1.Logging; |
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 System.IO; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.Extensions.Configuration; | |
| using Microsoft.Extensions.Logging; |
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 IdentityModel.Client; | |
| using Microsoft.Extensions.Options; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Net.Http; | |
| using System.Text; | |
| using System.Threading.Tasks; | |
| namespace Transport | |
| { |
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
| static void Main(string[] args) | |
| { | |
| uint[] keys = new uint[] { 56, 82, 79, 77, 72 }; | |
| var scanCodes = keys.Select(_ => MapVirtualKey(_, MapVirtualKeyMapTypes.MAPVK_VSC_TO_VK)); | |
| Console.WriteLine("mapped `{0}` to `{1}`", AsString(keys), AsString(scanCodes)); | |
| Console.WriteLine("done"); | |
| Console.ReadLine(); |
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 System.Runtime.Serialization; | |
| using System.Text; | |
| namespace binary100KLoader | |
| { | |
| public class GenericResponse<T> | |
| { | |
| private string code = "200"; |
OlderNewer