In the build definition:
Process => Build => Advanced => MSBuild argument
add:
/p:GenerateBuildInfoConfigFile=fals
var client = new SmtpClient("smtp.gmail.com", 587)
{
Credentials = new NetworkCredential("myusername@gmail.com", "mypwd"),
EnableSsl = true
};
client.Send("myusername@gmail.com", "myusername@gmail.com", "test", "testbody");
http://www.quora.com/What-is-a-simple-explanation-of-higher-order-functions-and-callbacks-in-JavaScript
var animals = [
{ name: 'Waffles', type: 'dog', age: 12 },
{ name: 'Fluffy', type: 'cat', age: 14 },
{ name: 'Spelunky', type: 'dog', age: 4 },
{ name: 'Hank', type: 'dog', age: 11 },
];
var oldDogs = animals.filter(function(animal) {
return animal.age > 10 && animal.type === 'dog';
});
|
Feb 20 (3 days ago)
| |||
|