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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>fileTypes</key> | |
<array> | |
<string>log</string> | |
</array> | |
<key>name</key> | |
<string>Log4Net</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
private void OnAppStartup() | |
{ | |
ConnectionFactory = new ConnectionFactory() | |
{ | |
HostName = "localhost", | |
Port = 5672, | |
UserName = "myapp", | |
Password = "password", | |
RequestedHeartbeat = 4, // heartbeat is what lets your code detect problems communicating with | |
// the RabbitMQ server. A heartbeat of 4 will cause the server to send |
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.ComponentModel; | |
using Hudl.WebApp.Tests.TestsCore.DataSources; | |
using Microsoft.VisualStudio.TestTools.WebTesting; | |
namespace Hudl.WebApp.Tests.TestsCore.Plugins | |
{ | |
[DisplayName("Annotations DataSource")] | |
[Description("Reads Annotation IDs from the context and assigns values to context parameters.")] | |
public class AnnotationsDataSourcePlugin : WebTestPlugin | |
{ |
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.Data; | |
using System.Data.SqlClient; | |
namespace Hudl.WebApp.Tests.TestsCore.DataSources | |
{ | |
public class AnnotationsDataSource : ModifiableQueueBasedDataSource<long> | |
{ | |
private readonly long _userId; |
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.ComponentModel; | |
using System.Linq; | |
using System.Xml.Linq; | |
using Microsoft.VisualStudio.TestTools.WebTesting; | |
namespace Hudl.WebApp.Tests.TestsCore.ExtractionRules | |
{ | |
[DisplayName("Extract Published Clip ID")] |