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
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System] | |
| "EnableLUA"=dword:00000000 |
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
| namespace Tennis | |
| module Game = | |
| type State = { | |
| a: int; | |
| b: int; | |
| } | |
| let callEqualScore score = |
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 System.Diagnostics | |
| open Vinmonopolet.Core | |
| type Stores = | |
| CsvProvider< | |
| Sample = "stores.csv", | |
| Separators = ";", | |
| Encoding = "ISO8859-1", |
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 class SelfHostRootPathProvider : IRootPathProvider | |
| { | |
| public string GetRootPath() | |
| { | |
| if (StaticConfiguration.IsRunningDebug) | |
| { | |
| return string.Empty; // TODO: Return source directory | |
| } | |
| return AppDomain.CurrentDomain.BaseDirectory; |
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
| { | |
| "code": "*.cs", | |
| "exclude": "buggy/**/*.cs", | |
| "resources": "embed/**/*.*", | |
| "dependencies": { | |
| "Microsoft.AspNet.ConfigurationModel": { "version": "0.1-alpha-*", "options": "private" }, | |
| "FakeToolingPackage" : {"version": "0.1", "options": "dev"}, | |
| "SomeProject": "" | |
| }, | |
| "configurations": { |
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 class Movie | |
| { | |
| [CompilerGenerated] | |
| private readonly string <Title>k__BackingField; | |
| [CompilerGenerated] | |
| private readonly List<string> <Genres>k__BackingField; | |
| public string Title | |
| { |
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
| /// <summary> | |
| /// This function tries to normalize a string that represents framework version names into | |
| /// something a framework name that the package manager understands. | |
| /// </summary> | |
| public static FrameworkName ParseFrameworkName(string frameworkName) | |
| { | |
| if (frameworkName == null) | |
| { | |
| throw new ArgumentNullException("frameworkName"); | |
| } |
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
| var utested = { | |
| 'harveys': { | |
| name: 'Harveys', | |
| address: 'Tollbodata 3, 4611 Kristiansand', | |
| latitude: 58.1441782, | |
| longitude: 7.993443899999988, | |
| website: 'http://www.harveys.no/news/hjem.html', | |
| openingHours: [ | |
| { days: 'Mandag - Onsdag', open: '1500', close: '2200' }, | |
| { days: 'Torsdag - Fredag', open: '1500', close: '0200' }, |
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
| let buildMode = getBuildParamOrDefault "buildMode" "Release" | |
| let testResultsDir = "./testresults" | |
| let appBuildDir = "./src/**/bin" @@ buildMode | |
| let testBuildDir = "./test/**/bin" @@ buildMode | |
| Target "Clean" (fun _ -> | |
| !! appBuildDir | |
| ++ testBuildDir | |
| ++ testResultsDir |
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
| <todo> | |
| <!-- layout --> | |
| <h3>{ opts.title }</h3> | |
| <ul> | |
| <li each={ item, i in items }>{ item }</li> | |
| </ul> | |
| <form onsubmit={ add }> |