summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs
diff options
context:
space:
mode:
authorE.Z. Hart <hartez@users.noreply.github.com>2016-06-14 04:16:48 -0600
committerRui Marinho <me@ruimarinho.net>2016-06-14 11:16:48 +0100
commit0fa667e186dbfba0d503094b37f124cab8b77f7c (patch)
tree658a80ea4391cca53711e59436baf2da5836dfd0 /Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs
parent9f40b0fc3d5c240193e78e5d027012ce4e5d072a (diff)
downloadxamarin-forms-0fa667e186dbfba0d503094b37f124cab8b77f7c.tar.gz
xamarin-forms-0fa667e186dbfba0d503094b37f124cab8b77f7c.tar.bz2
xamarin-forms-0fa667e186dbfba0d503094b37f124cab8b77f7c.zip
# This is a combination of 5 commits. (#221)
# The first commit's message is: Removing CI-specific script from main repo # This is the 2nd commit message: Removing build projects # This is the 3rd commit message: Add some error reporting around TestFixtureSetup # This is the 4th commit message: Force load referenced assemblies to prevent missing registrations # This is the 5th commit message: Revert failed fix for GetAssemblies
Diffstat (limited to 'Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs')
-rw-r--r--Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs b/Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs
deleted file mode 100644
index 881a384e..00000000
--- a/Xamarin.Forms.UITest.TestCloud/Mono.Options/ResponseFileSource.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-using System.Collections.Generic;
-
-namespace Mono.Options
-{
- public class ResponseFileSource : ArgumentSource
- {
- public override string Description => "Read response file for more options.";
-
- public override string[] GetNames()
- {
- return new[] { "@file" };
- }
-
- public override bool GetArguments(string value, out IEnumerable<string> replacement)
- {
- if (string.IsNullOrEmpty(value) || !value.StartsWith("@"))
- {
- replacement = null;
- return false;
- }
- replacement = GetArgumentsFromFile(value.Substring(1));
- return true;
- }
- }
-} \ No newline at end of file