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
| cmake_minimum_required(VERSION 3.0) | |
| project(directxtk) | |
| add_library(directxtk | |
| Src/AlphaTestEffect.cpp | |
| Src/BasicEffect.cpp | |
| Src/BinaryReader.cpp | |
| Src/CommonStates.cpp | |
| Src/DDSTextureLoader.cpp | |
| Src/DGSLEffect.cpp |
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.Text; | |
| using System.Text.RegularExpressions; | |
| namespace MyLexer | |
| { | |
| public class TokenDefinition | |
| { | |
| public string Name { get; set; } |
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.Linq; | |
| namespace MyLL1 | |
| { | |
| public interface IRule | |
| { | |
| string Name { get; } |
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
| open System | |
| open System.IO | |
| type IISLogItem = { | |
| date :DateTime; | |
| time :DateTime; | |
| ``s-ip`` :string; | |
| ``cs-method`` :string; | |
| ``cs-uri-stem`` :string; | |
| ``cs-uri-query`` :string; |
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
| open FSharp.Data | |
| open System | |
| open OfficeOpenXml | |
| open System.IO | |
| open OfficeOpenXml.FormulaParsing.Excel.Functions.Math | |
| open Polly | |
| open System.Net | |
| type HomePage = HtmlProvider<"./Samples/Home.html"> | |
| type Products = JsonProvider<"./Samples/Products.json"> |
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 { FormsModule } from '@angular/forms'; | |
| import { NgModule } from '@angular/core'; | |
| import { CommonModule } from '@angular/common'; | |
| import { | |
| MatCardModule, | |
| MatAutocompleteModule, | |
| MatButtonModule, | |
| MatBadgeModule, | |
| MatBottomSheetModule, | |
| MatButtonToggleModule, |
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
| public virtual void AddCharToLexer(int c) | |
| { | |
| if (c >= 0xD800 && c <= 0xDBFF) | |
| { | |
| int c2 = this.input.ReadChar(); | |
| if (c2 >= 0xDC00 && c2 <= 0xDFFF) | |
| { | |
| c = ((c - 0xD800) * 0x400) + (c2 - 0xDC00) + 0x10000; | |
| } | |
| else |
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
| <Query Kind="Program"> | |
| <Output>DataGrids</Output> | |
| <Reference><RuntimeDirectory>\System.Net.Http.dll</Reference> | |
| <NuGetReference>Microsoft.CognitiveServices.Speech</NuGetReference> | |
| <NuGetReference>NAudio</NuGetReference> | |
| <NuGetReference>NAudio.Lame</NuGetReference> | |
| <Namespace>Microsoft.CognitiveServices.Speech</Namespace> | |
| <Namespace>NAudio.Wave</Namespace> | |
| <Namespace>System.Net.Http</Namespace> | |
| <Namespace>System.Net.Http.Headers</Namespace> |
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
| <Query Kind="Program"> | |
| <Output>DataGrids</Output> | |
| <NuGetReference>Newtonsoft.Json</NuGetReference> | |
| <Namespace>Newtonsoft.Json.Linq</Namespace> | |
| <Namespace>System.Threading.Tasks</Namespace> | |
| <Namespace>System.Net.Sockets</Namespace> | |
| </Query> | |
| public static void Main(string[] args) | |
| { |
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
| <Query Kind="Statements"> | |
| <Reference><RuntimeDirectory>\System.Configuration.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Data.Services.Client.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Data.Services.Design.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Design.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Runtime.Serialization.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.ServiceModel.Activation.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.ServiceModel.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Web.ApplicationServices.dll</Reference> | |
| <Reference><RuntimeDirectory>\System.Web.dll</Reference> |