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> | |
<config> | |
<add key="repositoryPath" value="../Libs" /> | |
</config> | |
</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
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
var host = BuildWebHost(args); | |
// RunSeedMethods(host); | |
host.Run(); | |
} | |
public static IWebHost BuildWebHost(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
var obj = {num: 2}; | |
var addToThis = function(a) { | |
return this.num + a; | |
}; | |
addToThis.call(obj, 3); // 5 | |
var addToThis2 = function (a, b, c) { | |
return this.num + a + b + c; | |
}; |