diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..99c8e78 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "dotnet-test-explorer.testProjectPath": "**/*.@(csproj)" +} \ No newline at end of file diff --git a/isn.sln b/isn.sln index 1737180..68c3c7d 100644 --- a/isn.sln +++ b/isn.sln @@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "isnd", "src\isnd\isnd.cspro EndProject Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "isn", "src\isn\isn.csproj", "{910E800A-59AE-46C4-B7C7-879986179246}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "isn.tests", "test\isn.tests\isn.tests.csproj", "{305F640E-11BA-44F9-95E0-C6882E9CD151}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -62,10 +64,23 @@ Global {910E800A-59AE-46C4-B7C7-879986179246}.Release|x64.Build.0 = Release|Any CPU {910E800A-59AE-46C4-B7C7-879986179246}.Release|x86.ActiveCfg = Release|Any CPU {910E800A-59AE-46C4-B7C7-879986179246}.Release|x86.Build.0 = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|Any CPU.Build.0 = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|x64.ActiveCfg = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|x64.Build.0 = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|x86.ActiveCfg = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Debug|x86.Build.0 = Debug|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|Any CPU.ActiveCfg = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|Any CPU.Build.0 = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|x64.ActiveCfg = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|x64.Build.0 = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|x86.ActiveCfg = Release|Any CPU + {305F640E-11BA-44F9-95E0-C6882E9CD151}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(NestedProjects) = preSolution {9D758F00-17FF-433D-B088-F9C2D97C9BD1} = {3C312E42-9A47-4BED-8265-A405FCA6AFFF} {468DB0E4-6221-4E01-BEFF-F452865E59C1} = {E8A2DF68-847A-4D88-B002-64FB666F696C} {910E800A-59AE-46C4-B7C7-879986179246} = {E8A2DF68-847A-4D88-B002-64FB666F696C} + {305F640E-11BA-44F9-95E0-C6882E9CD151} = {3C312E42-9A47-4BED-8265-A405FCA6AFFF} EndGlobalSection EndGlobal diff --git a/src/isn/IDataProtector.cs b/src/isn/IDataProtector.cs index 0c385da..22205d4 100644 --- a/src/isn/IDataProtector.cs +++ b/src/isn/IDataProtector.cs @@ -1,33 +1,45 @@ +using System; +using System.Collections.Generic; using System.Text; namespace isn { - internal interface IDataProtector + public interface IDataProtector { string Protect(string data); string UnProtect(string data); } - class DefaultDataProtector : IDataProtector + + public class DefaultDataProtector : IDataProtector { + private byte delta = 145; + + public DefaultDataProtector() + { + + } public string Protect(string data) { + List protd = new List(); StringBuilder sb = new StringBuilder(); - foreach (char c in data) + foreach (byte c in Encoding.UTF8.GetBytes(data)) { - sb.Append(c+13); + protd.Add((byte) (c ^ delta)); } - return sb.ToString(); + return System.Convert.ToBase64String(protd.ToArray()); } public string UnProtect(string data) { StringBuilder sb = new StringBuilder(); - foreach (char c in data) + List unps = new List(); + + foreach (byte c in System.Convert.FromBase64CharArray(data.ToCharArray(),0,data.Length)) { - sb.Append(c-13); + unps.Add((byte) (c ^ delta)); } - return sb.ToString(); + return Encoding.UTF8.GetString(unps.ToArray()); } } diff --git a/src/isn/Program.Commands.cs b/src/isn/Program.Commands.cs index 6ecf241..24d4849 100644 --- a/src/isn/Program.Commands.cs +++ b/src/isn/Program.Commands.cs @@ -47,7 +47,7 @@ namespace isn } public static IEnumerable Sources{ get; protected set; } - private static object StoreApiKey(IEnumerable storeArgs) + private static void StoreApiKey(IEnumerable storeArgs) { var args = storeoptions.Parse(storeArgs); if (shouldShowPushHelp) @@ -62,12 +62,13 @@ namespace isn EnsureKeyStored(source,keyv); } } - throw new NotImplementedException(); } private static void EnsureKeyStored(string source, string keyv) { - throw new NotImplementedException(); + var pkeyv = _protector.Protect(keyv); + + } } } \ No newline at end of file diff --git a/src/isn/Program.cs b/src/isn/Program.cs index 7099049..868b1f6 100644 --- a/src/isn/Program.cs +++ b/src/isn/Program.cs @@ -8,6 +8,20 @@ namespace isn { partial class Program { + public const string push = "push"; + static OptionSet options = new OptionSet { + { "h|help", "show this message and exit", h => shouldShowHelp = h != null }, + }; + static OptionSet pushoptions = new OptionSet { + { "k|api-key=", "use api key", val => apiKey = apiKey ?? val }, + { "s|source=", "use source", val => source = source ?? val }, + { "h|help", "show this message and exit", h => shouldShowPushHelp = h != null }, + }; + static OptionSet sourceoptions = new OptionSet { + { "h|help", "show this message and exit", h => shouldShowSourceHelp = h != null }, + }; + + private static bool shouldShowHelp; private static bool shouldShowSourceHelp; private static bool shouldShowPushHelp; @@ -15,7 +29,7 @@ namespace isn private static string source = null; private static int pushKO = 0; - private readonly isn.IDataProtector _protector; + private static readonly isn.IDataProtector _protector = new DefaultDataProtector(); static Program() { @@ -24,17 +38,6 @@ namespace isn static int Main(string[] args) { - var options = new OptionSet { - { "h|help", "show this message and exit", h => shouldShowHelp = h != null }, - }; - var pushoptions = new OptionSet { - { "k|api-key=", "use api key", val => apiKey = apiKey ?? val }, - { "s|source=", "use source", val => source = source ?? val }, - { "h|help", "show this message and exit", h => shouldShowPushHelp = h != null }, - }; - var sourceoptions = new OptionSet { - { "h|help", "show this message and exit", h => shouldShowSourceHelp = h != null }, - }; var commandSet = new CommandSet("isn"); @@ -49,9 +52,9 @@ namespace isn }; var srcCmd = new Command("sources") { - Run = sargs => + Run = sargs => { - + var sourcesCmdSet = new CommandSet("sources") { srclst, @@ -75,7 +78,7 @@ namespace isn }; commandSet.Add(add); - var push = new Command("push") + var pushCmd = new Command(push) { Run = async sargs => @@ -90,10 +93,10 @@ namespace isn } List reports = await PushPkgAsync(pargs); Console.WriteLine(JsonConvert.SerializeObject(reports)); - pushKO = reports.Count( r => !r.OK && !r.AlreadyPresent); + pushKO = reports.Count(r => !r.OK && !r.AlreadyPresent); } }; - commandSet.Add(push); + commandSet.Add(pushCmd); var setapikey = new Command("set-api-key") { Run = sargs => StoreApiKey(sargs) @@ -124,12 +127,12 @@ namespace isn options.WriteOptionDescriptions(Console.Out); return 1; } - + int runCode = commandSet.Run(args); - if (runCode == 0 ) if (pushKO>0) return 3; + if (runCode == 0) if (pushKO > 0) return 3; return runCode; - + } } } diff --git a/src/isn/isn.csproj b/src/isn/isn.csproj index 083caec..e11d38f 100644 --- a/src/isn/isn.csproj +++ b/src/isn/isn.csproj @@ -4,6 +4,9 @@ net472 nuget_cli 45b74c62-05bc-4603-95b4-3e80ae2fdf50 + 1.0.1 + true + WTFPL true diff --git a/test/isn.tests/UnitTest1.cs b/test/isn.tests/UnitTest1.cs new file mode 100644 index 0000000..bbce537 --- /dev/null +++ b/test/isn.tests/UnitTest1.cs @@ -0,0 +1,39 @@ +using System; +using NUnit.Framework; + +namespace isn.tests +{ + public class Tests + { + [SetUp] + public void Setup() + { + } + + [Test] + public void Test1() + { + string pass = "a"; + isn.IDataProtector _protector = new isn.DefaultDataProtector(); + string protectedpass = _protector.Protect(pass); + string unprotectedpass = _protector.UnProtect(protectedpass); + Console.WriteLine(protectedpass); + Assert.AreEqual(pass, unprotectedpass); + Assert.Pass(); + } + + + [Test] + public void Test26() + { + string pass = "a lame and big pass"; + isn.IDataProtector _protector = new isn.DefaultDataProtector(); + string protectedpass = _protector.Protect(pass); + string unprotectedpass = _protector.UnProtect(protectedpass); + Console.WriteLine(protectedpass); + Assert.AreEqual(pass, unprotectedpass); + Assert.Pass(); + } + + } +} \ No newline at end of file diff --git a/test/isn.tests/bin/Debug/net472/CoverletSourceRootsMapping b/test/isn.tests/bin/Debug/net472/CoverletSourceRootsMapping new file mode 100644 index 0000000..c910443 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/CoverletSourceRootsMapping differ diff --git a/test/isn.tests/bin/Debug/net472/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/test/isn.tests/bin/Debug/net472/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100755 index 0000000..647c0bb Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/test/isn.tests/bin/Debug/net472/Mono.Options.dll b/test/isn.tests/bin/Debug/net472/Mono.Options.dll new file mode 100755 index 0000000..d1fa12a Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/Mono.Options.dll differ diff --git a/test/isn.tests/bin/Debug/net472/MurmurHash.dll b/test/isn.tests/bin/Debug/net472/MurmurHash.dll new file mode 100755 index 0000000..2e9b377 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/MurmurHash.dll differ diff --git a/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.dll b/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.dll new file mode 100755 index 0000000..0bb7e54 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.dll differ diff --git a/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.pdb b/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.pdb new file mode 100755 index 0000000..39d50b5 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.pdb differ diff --git a/test/isn.tests/bin/Debug/net472/Newtonsoft.Json.dll b/test/isn.tests/bin/Debug/net472/Newtonsoft.Json.dll new file mode 100755 index 0000000..1971a35 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/Newtonsoft.Json.dll differ diff --git a/test/isn.tests/bin/Debug/net472/Unleash.Client.dll b/test/isn.tests/bin/Debug/net472/Unleash.Client.dll new file mode 100755 index 0000000..9b6cc1a Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/Unleash.Client.dll differ diff --git a/test/isn.tests/bin/Debug/net472/isn.exe b/test/isn.tests/bin/Debug/net472/isn.exe new file mode 100644 index 0000000..7fcdad5 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/isn.exe differ diff --git a/test/isn.tests/bin/Debug/net472/isn.exe.config b/test/isn.tests/bin/Debug/net472/isn.exe.config new file mode 100644 index 0000000..8f60dcb --- /dev/null +++ b/test/isn.tests/bin/Debug/net472/isn.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/test/isn.tests/bin/Debug/net472/isn.pdb b/test/isn.tests/bin/Debug/net472/isn.pdb new file mode 100644 index 0000000..1f85d07 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/isn.pdb differ diff --git a/test/isn.tests/bin/Debug/net472/isn.tests.dll b/test/isn.tests/bin/Debug/net472/isn.tests.dll new file mode 100644 index 0000000..8aa5676 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/isn.tests.dll differ diff --git a/test/isn.tests/bin/Debug/net472/isn.tests.pdb b/test/isn.tests/bin/Debug/net472/isn.tests.pdb new file mode 100644 index 0000000..6502c32 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/isn.tests.pdb differ diff --git a/test/isn.tests/bin/Debug/net472/nunit.engine.api.dll b/test/isn.tests/bin/Debug/net472/nunit.engine.api.dll new file mode 100755 index 0000000..4b90f17 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/nunit.engine.api.dll differ diff --git a/test/isn.tests/bin/Debug/net472/nunit.engine.core.dll b/test/isn.tests/bin/Debug/net472/nunit.engine.core.dll new file mode 100755 index 0000000..4fd9b08 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/nunit.engine.core.dll differ diff --git a/test/isn.tests/bin/Debug/net472/nunit.engine.dll b/test/isn.tests/bin/Debug/net472/nunit.engine.dll new file mode 100755 index 0000000..42b9e1b Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/nunit.engine.dll differ diff --git a/test/isn.tests/bin/Debug/net472/nunit.framework.dll b/test/isn.tests/bin/Debug/net472/nunit.framework.dll new file mode 100755 index 0000000..f0e8da9 Binary files /dev/null and b/test/isn.tests/bin/Debug/net472/nunit.framework.dll differ diff --git a/test/isn.tests/bin/Debug/net472/nunit_random_seed.tmp b/test/isn.tests/bin/Debug/net472/nunit_random_seed.tmp new file mode 100644 index 0000000..27a64f7 --- /dev/null +++ b/test/isn.tests/bin/Debug/net472/nunit_random_seed.tmp @@ -0,0 +1 @@ +246909449 \ No newline at end of file diff --git a/test/isn.tests/isn.tests.csproj b/test/isn.tests/isn.tests.csproj new file mode 100644 index 0000000..54aff13 --- /dev/null +++ b/test/isn.tests/isn.tests.csproj @@ -0,0 +1,20 @@ + + + + net472 + + false + + + + + + + + + + + + + + diff --git a/test/isn.tests/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/test/isn.tests/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..2084a4a --- /dev/null +++ b/test/isn.tests/obj/Debug/net472/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfo.cs b/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfo.cs new file mode 100644 index 0000000..b9b66e9 --- /dev/null +++ b/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Généré par la classe MSBuild WriteCodeFragment. + diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfoInputs.cache b/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2708f32 --- /dev/null +++ b/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6dda205da2fd166c118ffbc072720fa1e883c382 diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.assets.cache b/test/isn.tests/obj/Debug/net472/isn.tests.assets.cache new file mode 100644 index 0000000..32ca5a4 Binary files /dev/null and b/test/isn.tests/obj/Debug/net472/isn.tests.assets.cache differ diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.csproj.AssemblyReference.cache b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..2ca7467 Binary files /dev/null and b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.AssemblyReference.cache differ diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CopyComplete b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CoreCompileInputs.cache b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..267c886 --- /dev/null +++ b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a36496a80783294d6f60cfed17358cfb402f333c diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.csproj.FileListAbsolute.txt b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..206778a --- /dev/null +++ b/test/isn.tests/obj/Debug/net472/isn.tests.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfoInputs.cache +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.AssemblyInfo.cs +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CoreCompileInputs.cache +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/NUnit3.TestAdapter.pdb +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/nunit.engine.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/nunit.engine.api.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/nunit.engine.core.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/isn.tests.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/isn.tests.pdb +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/Microsoft.VisualStudio.CodeCoverage.Shim.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/Mono.Options.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/MurmurHash.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/Newtonsoft.Json.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/nunit.framework.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/Unleash.Client.dll +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/isn.exe +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/isn.pdb +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/isn.exe.config +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.csproj.CopyComplete +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.dll +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.pdb +/home/paul/workspace/isn/test/isn.tests/bin/Debug/net472/CoverletSourceRootsMapping +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net472/isn.tests.csproj.AssemblyReference.cache diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.dll b/test/isn.tests/obj/Debug/net472/isn.tests.dll new file mode 100644 index 0000000..8aa5676 Binary files /dev/null and b/test/isn.tests/obj/Debug/net472/isn.tests.dll differ diff --git a/test/isn.tests/obj/Debug/net472/isn.tests.pdb b/test/isn.tests/obj/Debug/net472/isn.tests.pdb new file mode 100644 index 0000000..6502c32 Binary files /dev/null and b/test/isn.tests/obj/Debug/net472/isn.tests.pdb differ diff --git a/test/isn.tests/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs b/test/isn.tests/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs new file mode 100644 index 0000000..614107e --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/.NETCoreApp,Version=v5.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")] diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfo.cs b/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfo.cs new file mode 100644 index 0000000..b9b66e9 --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Généré par la classe MSBuild WriteCodeFragment. + diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfoInputs.cache b/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2708f32 --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6dda205da2fd166c118ffbc072720fa1e883c382 diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.GeneratedMSBuildEditorConfig.editorconfig b/test/isn.tests/obj/Debug/net5.0/isn.tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d7e2983 --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/isn.tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,8 @@ +is_global = true +build_property.TargetFramework = net5.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.PublishSingleFile = +build_property.IncludeAllContentForSelfExtract = +build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.assets.cache b/test/isn.tests/obj/Debug/net5.0/isn.tests.assets.cache new file mode 100644 index 0000000..cef7fb1 Binary files /dev/null and b/test/isn.tests/obj/Debug/net5.0/isn.tests.assets.cache differ diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.AssemblyReference.cache b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.AssemblyReference.cache differ diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.CoreCompileInputs.cache b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ef03625 --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2a7177469d4a5ffbccb761cf38b8d55fbc49c26b diff --git a/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.FileListAbsolute.txt b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e8fbc57 --- /dev/null +++ b/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.FileListAbsolute.txt @@ -0,0 +1,5 @@ +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.AssemblyReference.cache +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net5.0/isn.tests.GeneratedMSBuildEditorConfig.editorconfig +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfoInputs.cache +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net5.0/isn.tests.AssemblyInfo.cs +/home/paul/workspace/isn/test/isn.tests/obj/Debug/net5.0/isn.tests.csproj.CoreCompileInputs.cache diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs b/test/isn.tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs new file mode 100644 index 0000000..711dd71 --- /dev/null +++ b/test/isn.tests/obj/Debug/netcoreapp2.1/.NETCoreApp,Version=v2.1.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.1", FrameworkDisplayName = "")] diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfo.cs b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfo.cs new file mode 100644 index 0000000..b9b66e9 --- /dev/null +++ b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("isn.tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Généré par la classe MSBuild WriteCodeFragment. + diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfoInputs.cache b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2708f32 --- /dev/null +++ b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6dda205da2fd166c118ffbc072720fa1e883c382 diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.assets.cache b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.assets.cache new file mode 100644 index 0000000..a37758e Binary files /dev/null and b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.assets.cache differ diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.AssemblyReference.cache b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f5e894a Binary files /dev/null and b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.AssemblyReference.cache differ diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.CoreCompileInputs.cache b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..62c16a6 --- /dev/null +++ b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +62dcc4076b081e71c24ac2022ffb03bd02712626 diff --git a/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.FileListAbsolute.txt b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..da10bde --- /dev/null +++ b/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.FileListAbsolute.txt @@ -0,0 +1,4 @@ +/home/paul/workspace/isn/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.AssemblyReference.cache +/home/paul/workspace/isn/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfoInputs.cache +/home/paul/workspace/isn/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.AssemblyInfo.cs +/home/paul/workspace/isn/test/isn.tests/obj/Debug/netcoreapp2.1/isn.tests.csproj.CoreCompileInputs.cache diff --git a/test/isn.tests/obj/isn.tests.csproj.nuget.dgspec.json b/test/isn.tests/obj/isn.tests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..1fe93fc --- /dev/null +++ b/test/isn.tests/obj/isn.tests.csproj.nuget.dgspec.json @@ -0,0 +1,136 @@ +{ + "format": 1, + "restore": { + "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj": {} + }, + "projects": { + "/home/paul/workspace/isn/src/isn/isn.csproj": { + "version": "1.0.1", + "restore": { + "projectUniqueName": "/home/paul/workspace/isn/src/isn/isn.csproj", + "projectName": "isn", + "projectPath": "/home/paul/workspace/isn/src/isn/isn.csproj", + "packagesPath": "/home/paul/.nuget/packages", + "outputPath": "/home/paul/workspace/isn/src/isn/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/paul/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net472" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies": { + "suppressParent": "All", + "target": "Package", + "version": "[1.0.0, )", + "autoReferenced": true + }, + "Mono.Options": { + "target": "Package", + "version": "[5.3.0, )" + }, + "Newtonsoft.Json": { + "target": "Package", + "version": "[11.0.1, )" + }, + "unleash.client": { + "target": "Package", + "version": "[1.6.1, )" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.302/RuntimeIdentifierGraph.json" + } + } + }, + "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj", + "projectName": "isn.tests", + "projectPath": "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj", + "packagesPath": "/home/paul/.nuget/packages", + "outputPath": "/home/paul/workspace/isn/test/isn.tests/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/paul/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net472" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "projectReferences": { + "/home/paul/workspace/isn/src/isn/isn.csproj": { + "projectPath": "/home/paul/workspace/isn/src/isn/isn.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.9.4, )" + }, + "Microsoft.NETFramework.ReferenceAssemblies": { + "suppressParent": "All", + "target": "Package", + "version": "[1.0.0, )", + "autoReferenced": true + }, + "NUnit": { + "target": "Package", + "version": "[3.13.1, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.17.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.0.2, )" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.302/RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/test/isn.tests/obj/isn.tests.csproj.nuget.g.props b/test/isn.tests/obj/isn.tests.csproj.nuget.g.props new file mode 100644 index 0000000..f95aadd --- /dev/null +++ b/test/isn.tests/obj/isn.tests.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/paul/.nuget/packages + /home/paul/.nuget/packages;/usr/share/dotnet/sdk/NuGetFallbackFolder + PackageReference + 5.10.0 + + + + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + \ No newline at end of file diff --git a/test/isn.tests/obj/isn.tests.csproj.nuget.g.targets b/test/isn.tests/obj/isn.tests.csproj.nuget.g.targets new file mode 100644 index 0000000..7cb770b --- /dev/null +++ b/test/isn.tests/obj/isn.tests.csproj.nuget.g.targets @@ -0,0 +1,12 @@ + + + + $(MSBuildAllProjects);$(MSBuildThisFileFullPath) + + + + + + + + \ No newline at end of file diff --git a/test/isn.tests/obj/project.assets.json b/test/isn.tests/obj/project.assets.json new file mode 100644 index 0000000..c7bc6a0 --- /dev/null +++ b/test/isn.tests/obj/project.assets.json @@ -0,0 +1,899 @@ +{ + "version": 3, + "targets": { + ".NETFramework,Version=v4.7.2": { + "coverlet.collector/3.0.2": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "Microsoft.CodeCoverage/16.9.4": { + "type": "package", + "compile": { + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.9.4" + }, + "compile": { + "lib/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + }, + "build": { + "build/net45/Microsoft.NET.Test.Sdk.props": {}, + "build/net45/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETFramework.ReferenceAssemblies.net472": "1.0.0" + } + }, + "Microsoft.NETFramework.ReferenceAssemblies.net472/1.0.0": { + "type": "package", + "build": { + "build/Microsoft.NETFramework.ReferenceAssemblies.net472.targets": {} + } + }, + "Mono.Options/5.3.0": { + "type": "package", + "compile": { + "lib/net4-client/Mono.Options.dll": {} + }, + "runtime": { + "lib/net4-client/Mono.Options.dll": {} + } + }, + "murmurhash/1.0.3": { + "type": "package", + "compile": { + "lib/net45/MurmurHash.dll": {} + }, + "runtime": { + "lib/net45/MurmurHash.dll": {} + } + }, + "Newtonsoft.Json/11.0.1": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "NUnit/3.13.1": { + "type": "package", + "compile": { + "lib/net45/nunit.framework.dll": {} + }, + "runtime": { + "lib/net45/nunit.framework.dll": {} + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit3TestAdapter/3.17.0": { + "type": "package", + "build": { + "build/net35/NUnit3TestAdapter.props": {} + } + }, + "Unleash.Client/1.6.1": { + "type": "package", + "dependencies": { + "murmurhash": "1.0.3" + }, + "frameworkAssemblies": [ + "Microsoft.CSharp", + "System.Net.Http" + ], + "compile": { + "lib/net47/Unleash.Client.dll": {} + }, + "runtime": { + "lib/net47/Unleash.Client.dll": {} + } + }, + "isn/1.0.1": { + "type": "project", + "framework": ".NETFramework,Version=v4.7.2", + "dependencies": { + "Mono.Options": "5.3.0", + "Newtonsoft.Json": "11.0.1", + "unleash.client": "1.6.1" + }, + "compile": { + "bin/placeholder/isn.dll": {} + }, + "runtime": { + "bin/placeholder/isn.dll": {} + } + } + } + }, + "libraries": { + "coverlet.collector/3.0.2": { + "sha512": "iBvPAIDaI7j/iMx/DzCGCJ3rdiOmel9VINEfaTiBv/NKIGHOP4X3hqc6Q1wgMtArEshlhXexQknP17SK4vXb1w==", + "type": "package", + "path": "coverlet.collector/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.CSharp.dll", + "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard1.0/Mono.Cecil.Mdb.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.Rocks.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/Newtonsoft.Json.dll", + "build/netstandard1.0/NuGet.Frameworks.dll", + "build/netstandard1.0/System.AppContext.dll", + "build/netstandard1.0/System.Collections.Immutable.dll", + "build/netstandard1.0/System.Dynamic.Runtime.dll", + "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", + "build/netstandard1.0/System.Linq.Expressions.dll", + "build/netstandard1.0/System.Linq.dll", + "build/netstandard1.0/System.ObjectModel.dll", + "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "build/netstandard1.0/System.Reflection.Emit.dll", + "build/netstandard1.0/System.Reflection.Metadata.dll", + "build/netstandard1.0/System.Reflection.TypeExtensions.dll", + "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "build/netstandard1.0/System.Text.RegularExpressions.dll", + "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard1.0/System.Threading.dll", + "build/netstandard1.0/System.Xml.ReaderWriter.dll", + "build/netstandard1.0/System.Xml.XDocument.dll", + "build/netstandard1.0/coverlet.collector.deps.json", + "build/netstandard1.0/coverlet.collector.dll", + "build/netstandard1.0/coverlet.collector.pdb", + "build/netstandard1.0/coverlet.collector.targets", + "build/netstandard1.0/coverlet.core.dll", + "build/netstandard1.0/coverlet.core.pdb", + "coverlet-icon.png", + "coverlet.collector.3.0.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.9.4": { + "sha512": "N/RYB07gJkPZ1nJiq0QGxFIL+X5vVl4GI99PiTYXpbfI30NTZMRJgZ+4jYLFYLDQqj9o1Juhv+3iiymd7lozrA==", + "type": "package", + "path": "microsoft.codecoverage/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/CodeCoverage/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/vcruntime140.dll", + "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.CoreLib.Net.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.Coverage.CoreLib.Net.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.9.4.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/16.9.4": { + "sha512": "M/k16vmS7Hz/+Kuy3p6XE743XPjYYMzfN5ZvpSLY44Ngh5IBMk0Je5Qed8oq6/kvzJA2DTrXa7YrfceHhbQKeQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.9.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/net45/Microsoft.NET.Test.Sdk.props", + "build/net45/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net40/_._", + "lib/net45/_._", + "lib/netcoreapp1.0/_._", + "lib/netcoreapp2.1/_._", + "lib/uap10.0/_._", + "microsoft.net.test.sdk.16.9.4.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETFramework.ReferenceAssemblies/1.0.0": { + "sha512": "7D2TMufjGiowmt0E941kVoTIS+GTNzaPopuzM1/1LSaJAdJdBrVP0SkZW7AgDd0a2U1DjsIeaKG1wxGVBNLDMw==", + "type": "package", + "path": "microsoft.netframework.referenceassemblies/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", + "microsoft.netframework.referenceassemblies.nuspec" + ] + }, + "Microsoft.NETFramework.ReferenceAssemblies.net472/1.0.0": { + "sha512": "VI0f22cH/xOlXLUVY7t6vr2Gi7cg0vzwpspNGz5isRusyspZblF7jJMw49E8mF1m071JyeVmZVkIK9c5kbiyFA==", + "type": "package", + "path": "microsoft.netframework.referenceassemblies.net472/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/.NETFramework/v4.7.2/Accessibility.dll", + "build/.NETFramework/v4.7.2/Accessibility.xml", + "build/.NETFramework/v4.7.2/CustomMarshalers.dll", + "build/.NETFramework/v4.7.2/CustomMarshalers.xml", + "build/.NETFramework/v4.7.2/Facades/Microsoft.Win32.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.AppContext.dll", + "build/.NETFramework/v4.7.2/Facades/System.Collections.Concurrent.dll", + "build/.NETFramework/v4.7.2/Facades/System.Collections.NonGeneric.dll", + "build/.NETFramework/v4.7.2/Facades/System.Collections.Specialized.dll", + "build/.NETFramework/v4.7.2/Facades/System.Collections.dll", + "build/.NETFramework/v4.7.2/Facades/System.ComponentModel.Annotations.dll", + "build/.NETFramework/v4.7.2/Facades/System.ComponentModel.EventBasedAsync.dll", + "build/.NETFramework/v4.7.2/Facades/System.ComponentModel.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.ComponentModel.TypeConverter.dll", + "build/.NETFramework/v4.7.2/Facades/System.ComponentModel.dll", + "build/.NETFramework/v4.7.2/Facades/System.Console.dll", + "build/.NETFramework/v4.7.2/Facades/System.Data.Common.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.Contracts.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.Debug.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.FileVersionInfo.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.Process.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.StackTrace.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.TextWriterTraceListener.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.Tools.dll", + "build/.NETFramework/v4.7.2/Facades/System.Diagnostics.TraceSource.dll", + "build/.NETFramework/v4.7.2/Facades/System.Drawing.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.Dynamic.Runtime.dll", + "build/.NETFramework/v4.7.2/Facades/System.Globalization.Calendars.dll", + "build/.NETFramework/v4.7.2/Facades/System.Globalization.Extensions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Globalization.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.Compression.ZipFile.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.FileSystem.DriveInfo.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.FileSystem.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.FileSystem.Watcher.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.FileSystem.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.IsolatedStorage.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.MemoryMappedFiles.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.Pipes.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.UnmanagedMemoryStream.dll", + "build/.NETFramework/v4.7.2/Facades/System.IO.dll", + "build/.NETFramework/v4.7.2/Facades/System.Linq.Expressions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Linq.Parallel.dll", + "build/.NETFramework/v4.7.2/Facades/System.Linq.Queryable.dll", + "build/.NETFramework/v4.7.2/Facades/System.Linq.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Http.Rtc.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.NameResolution.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.NetworkInformation.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Ping.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Requests.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Security.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.Sockets.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.WebHeaderCollection.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.WebSockets.Client.dll", + "build/.NETFramework/v4.7.2/Facades/System.Net.WebSockets.dll", + "build/.NETFramework/v4.7.2/Facades/System.ObjectModel.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.Emit.ILGeneration.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.Emit.Lightweight.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.Emit.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.Extensions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.Reflection.dll", + "build/.NETFramework/v4.7.2/Facades/System.Resources.Reader.dll", + "build/.NETFramework/v4.7.2/Facades/System.Resources.ResourceManager.dll", + "build/.NETFramework/v4.7.2/Facades/System.Resources.Writer.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.CompilerServices.VisualC.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Extensions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Handles.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.InteropServices.WindowsRuntime.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.InteropServices.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Numerics.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Serialization.Formatters.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Serialization.Json.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Serialization.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.Serialization.Xml.dll", + "build/.NETFramework/v4.7.2/Facades/System.Runtime.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Claims.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Cryptography.Algorithms.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Cryptography.Csp.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Cryptography.Encoding.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Cryptography.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Cryptography.X509Certificates.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.Principal.dll", + "build/.NETFramework/v4.7.2/Facades/System.Security.SecureString.dll", + "build/.NETFramework/v4.7.2/Facades/System.ServiceModel.Duplex.dll", + "build/.NETFramework/v4.7.2/Facades/System.ServiceModel.Http.dll", + "build/.NETFramework/v4.7.2/Facades/System.ServiceModel.NetTcp.dll", + "build/.NETFramework/v4.7.2/Facades/System.ServiceModel.Primitives.dll", + "build/.NETFramework/v4.7.2/Facades/System.ServiceModel.Security.dll", + "build/.NETFramework/v4.7.2/Facades/System.Text.Encoding.Extensions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Text.Encoding.dll", + "build/.NETFramework/v4.7.2/Facades/System.Text.RegularExpressions.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.Overlapped.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.Tasks.Parallel.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.Tasks.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.Thread.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.ThreadPool.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.Timer.dll", + "build/.NETFramework/v4.7.2/Facades/System.Threading.dll", + "build/.NETFramework/v4.7.2/Facades/System.ValueTuple.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.ReaderWriter.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.XDocument.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.XPath.XDocument.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.XPath.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.XmlDocument.dll", + "build/.NETFramework/v4.7.2/Facades/System.Xml.XmlSerializer.dll", + "build/.NETFramework/v4.7.2/Facades/netstandard.dll", + "build/.NETFramework/v4.7.2/ISymWrapper.dll", + "build/.NETFramework/v4.7.2/ISymWrapper.xml", + "build/.NETFramework/v4.7.2/Microsoft.Activities.Build.dll", + "build/.NETFramework/v4.7.2/Microsoft.Activities.Build.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.Conversion.v4.0.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.Conversion.v4.0.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.Engine.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.Engine.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.Framework.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.Framework.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.Tasks.v4.0.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.Tasks.v4.0.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.Utilities.v4.0.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.Utilities.v4.0.xml", + "build/.NETFramework/v4.7.2/Microsoft.Build.dll", + "build/.NETFramework/v4.7.2/Microsoft.Build.xml", + "build/.NETFramework/v4.7.2/Microsoft.CSharp.dll", + "build/.NETFramework/v4.7.2/Microsoft.CSharp.xml", + "build/.NETFramework/v4.7.2/Microsoft.JScript.dll", + "build/.NETFramework/v4.7.2/Microsoft.JScript.xml", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.Compatibility.Data.dll", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.Compatibility.Data.xml", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.Compatibility.dll", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.Compatibility.xml", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.dll", + "build/.NETFramework/v4.7.2/Microsoft.VisualBasic.xml", + "build/.NETFramework/v4.7.2/Microsoft.VisualC.STLCLR.dll", + "build/.NETFramework/v4.7.2/Microsoft.VisualC.STLCLR.xml", + "build/.NETFramework/v4.7.2/Microsoft.VisualC.dll", + "build/.NETFramework/v4.7.2/Microsoft.VisualC.xml", + "build/.NETFramework/v4.7.2/PermissionSets/FullTrust.xml", + "build/.NETFramework/v4.7.2/PermissionSets/Internet.xml", + "build/.NETFramework/v4.7.2/PermissionSets/LocalIntranet.xml", + "build/.NETFramework/v4.7.2/PresentationBuildTasks.dll", + "build/.NETFramework/v4.7.2/PresentationBuildTasks.xml", + "build/.NETFramework/v4.7.2/PresentationCore.dll", + "build/.NETFramework/v4.7.2/PresentationCore.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.Aero.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.Aero.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.Aero2.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.Aero2.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.AeroLite.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.AeroLite.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.Classic.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.Classic.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.Luna.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.Luna.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.Royale.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.Royale.xml", + "build/.NETFramework/v4.7.2/PresentationFramework.dll", + "build/.NETFramework/v4.7.2/PresentationFramework.xml", + "build/.NETFramework/v4.7.2/ReachFramework.dll", + "build/.NETFramework/v4.7.2/ReachFramework.xml", + "build/.NETFramework/v4.7.2/RedistList/FrameworkList.xml", + "build/.NETFramework/v4.7.2/System.Activities.Core.Presentation.dll", + "build/.NETFramework/v4.7.2/System.Activities.Core.Presentation.xml", + "build/.NETFramework/v4.7.2/System.Activities.DurableInstancing.dll", + "build/.NETFramework/v4.7.2/System.Activities.DurableInstancing.xml", + "build/.NETFramework/v4.7.2/System.Activities.Presentation.dll", + "build/.NETFramework/v4.7.2/System.Activities.Presentation.xml", + "build/.NETFramework/v4.7.2/System.Activities.dll", + "build/.NETFramework/v4.7.2/System.Activities.xml", + "build/.NETFramework/v4.7.2/System.AddIn.Contract.dll", + "build/.NETFramework/v4.7.2/System.AddIn.Contract.xml", + "build/.NETFramework/v4.7.2/System.AddIn.dll", + "build/.NETFramework/v4.7.2/System.AddIn.xml", + "build/.NETFramework/v4.7.2/System.ComponentModel.Composition.Registration.dll", + "build/.NETFramework/v4.7.2/System.ComponentModel.Composition.Registration.xml", + "build/.NETFramework/v4.7.2/System.ComponentModel.Composition.dll", + "build/.NETFramework/v4.7.2/System.ComponentModel.Composition.xml", + "build/.NETFramework/v4.7.2/System.ComponentModel.DataAnnotations.dll", + "build/.NETFramework/v4.7.2/System.ComponentModel.DataAnnotations.xml", + "build/.NETFramework/v4.7.2/System.Configuration.Install.dll", + "build/.NETFramework/v4.7.2/System.Configuration.Install.xml", + "build/.NETFramework/v4.7.2/System.Configuration.dll", + "build/.NETFramework/v4.7.2/System.Configuration.xml", + "build/.NETFramework/v4.7.2/System.Core.dll", + "build/.NETFramework/v4.7.2/System.Core.xml", + "build/.NETFramework/v4.7.2/System.Data.DataSetExtensions.dll", + "build/.NETFramework/v4.7.2/System.Data.DataSetExtensions.xml", + "build/.NETFramework/v4.7.2/System.Data.Entity.Design.dll", + "build/.NETFramework/v4.7.2/System.Data.Entity.Design.xml", + "build/.NETFramework/v4.7.2/System.Data.Entity.dll", + "build/.NETFramework/v4.7.2/System.Data.Entity.xml", + "build/.NETFramework/v4.7.2/System.Data.Linq.dll", + "build/.NETFramework/v4.7.2/System.Data.Linq.xml", + "build/.NETFramework/v4.7.2/System.Data.OracleClient.dll", + "build/.NETFramework/v4.7.2/System.Data.OracleClient.xml", + "build/.NETFramework/v4.7.2/System.Data.Services.Client.dll", + "build/.NETFramework/v4.7.2/System.Data.Services.Client.xml", + "build/.NETFramework/v4.7.2/System.Data.Services.Design.dll", + "build/.NETFramework/v4.7.2/System.Data.Services.Design.xml", + "build/.NETFramework/v4.7.2/System.Data.Services.dll", + "build/.NETFramework/v4.7.2/System.Data.Services.xml", + "build/.NETFramework/v4.7.2/System.Data.SqlXml.dll", + "build/.NETFramework/v4.7.2/System.Data.SqlXml.xml", + "build/.NETFramework/v4.7.2/System.Data.dll", + "build/.NETFramework/v4.7.2/System.Data.xml", + "build/.NETFramework/v4.7.2/System.Deployment.dll", + "build/.NETFramework/v4.7.2/System.Deployment.xml", + "build/.NETFramework/v4.7.2/System.Design.dll", + "build/.NETFramework/v4.7.2/System.Design.xml", + "build/.NETFramework/v4.7.2/System.Device.dll", + "build/.NETFramework/v4.7.2/System.Device.xml", + "build/.NETFramework/v4.7.2/System.Diagnostics.Tracing.dll", + "build/.NETFramework/v4.7.2/System.Diagnostics.Tracing.xml", + "build/.NETFramework/v4.7.2/System.DirectoryServices.AccountManagement.dll", + "build/.NETFramework/v4.7.2/System.DirectoryServices.AccountManagement.xml", + "build/.NETFramework/v4.7.2/System.DirectoryServices.Protocols.dll", + "build/.NETFramework/v4.7.2/System.DirectoryServices.Protocols.xml", + "build/.NETFramework/v4.7.2/System.DirectoryServices.dll", + "build/.NETFramework/v4.7.2/System.DirectoryServices.xml", + "build/.NETFramework/v4.7.2/System.Drawing.Design.dll", + "build/.NETFramework/v4.7.2/System.Drawing.Design.xml", + "build/.NETFramework/v4.7.2/System.Drawing.dll", + "build/.NETFramework/v4.7.2/System.Drawing.xml", + "build/.NETFramework/v4.7.2/System.Dynamic.dll", + "build/.NETFramework/v4.7.2/System.EnterpriseServices.Thunk.dll", + "build/.NETFramework/v4.7.2/System.EnterpriseServices.Wrapper.dll", + "build/.NETFramework/v4.7.2/System.EnterpriseServices.dll", + "build/.NETFramework/v4.7.2/System.EnterpriseServices.xml", + "build/.NETFramework/v4.7.2/System.IO.Compression.FileSystem.dll", + "build/.NETFramework/v4.7.2/System.IO.Compression.FileSystem.xml", + "build/.NETFramework/v4.7.2/System.IO.Compression.dll", + "build/.NETFramework/v4.7.2/System.IO.Compression.xml", + "build/.NETFramework/v4.7.2/System.IO.Log.dll", + "build/.NETFramework/v4.7.2/System.IO.Log.xml", + "build/.NETFramework/v4.7.2/System.IdentityModel.Selectors.dll", + "build/.NETFramework/v4.7.2/System.IdentityModel.Selectors.xml", + "build/.NETFramework/v4.7.2/System.IdentityModel.Services.dll", + "build/.NETFramework/v4.7.2/System.IdentityModel.Services.xml", + "build/.NETFramework/v4.7.2/System.IdentityModel.dll", + "build/.NETFramework/v4.7.2/System.IdentityModel.xml", + "build/.NETFramework/v4.7.2/System.Linq.xml", + "build/.NETFramework/v4.7.2/System.Management.Instrumentation.dll", + "build/.NETFramework/v4.7.2/System.Management.Instrumentation.xml", + "build/.NETFramework/v4.7.2/System.Management.dll", + "build/.NETFramework/v4.7.2/System.Management.xml", + "build/.NETFramework/v4.7.2/System.Messaging.dll", + "build/.NETFramework/v4.7.2/System.Messaging.xml", + "build/.NETFramework/v4.7.2/System.Net.Http.WebRequest.dll", + "build/.NETFramework/v4.7.2/System.Net.Http.WebRequest.xml", + "build/.NETFramework/v4.7.2/System.Net.Http.dll", + "build/.NETFramework/v4.7.2/System.Net.Http.xml", + "build/.NETFramework/v4.7.2/System.Net.dll", + "build/.NETFramework/v4.7.2/System.Net.xml", + "build/.NETFramework/v4.7.2/System.Numerics.dll", + "build/.NETFramework/v4.7.2/System.Numerics.xml", + "build/.NETFramework/v4.7.2/System.Printing.dll", + "build/.NETFramework/v4.7.2/System.Printing.xml", + "build/.NETFramework/v4.7.2/System.Reflection.Context.dll", + "build/.NETFramework/v4.7.2/System.Reflection.Context.xml", + "build/.NETFramework/v4.7.2/System.Runtime.Caching.dll", + "build/.NETFramework/v4.7.2/System.Runtime.Caching.xml", + "build/.NETFramework/v4.7.2/System.Runtime.DurableInstancing.dll", + "build/.NETFramework/v4.7.2/System.Runtime.DurableInstancing.xml", + "build/.NETFramework/v4.7.2/System.Runtime.Remoting.dll", + "build/.NETFramework/v4.7.2/System.Runtime.Remoting.xml", + "build/.NETFramework/v4.7.2/System.Runtime.Serialization.Formatters.Soap.dll", + "build/.NETFramework/v4.7.2/System.Runtime.Serialization.Formatters.Soap.xml", + "build/.NETFramework/v4.7.2/System.Runtime.Serialization.dll", + "build/.NETFramework/v4.7.2/System.Runtime.Serialization.xml", + "build/.NETFramework/v4.7.2/System.Security.dll", + "build/.NETFramework/v4.7.2/System.Security.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Activation.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Activation.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Activities.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Activities.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Channels.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Channels.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Discovery.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Discovery.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Routing.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Routing.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.Web.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.Web.xml", + "build/.NETFramework/v4.7.2/System.ServiceModel.dll", + "build/.NETFramework/v4.7.2/System.ServiceModel.xml", + "build/.NETFramework/v4.7.2/System.ServiceProcess.dll", + "build/.NETFramework/v4.7.2/System.ServiceProcess.xml", + "build/.NETFramework/v4.7.2/System.Speech.dll", + "build/.NETFramework/v4.7.2/System.Speech.xml", + "build/.NETFramework/v4.7.2/System.Threading.Tasks.Dataflow.xml", + "build/.NETFramework/v4.7.2/System.Transactions.dll", + "build/.NETFramework/v4.7.2/System.Transactions.xml", + "build/.NETFramework/v4.7.2/System.Web.Abstractions.dll", + "build/.NETFramework/v4.7.2/System.Web.ApplicationServices.dll", + "build/.NETFramework/v4.7.2/System.Web.ApplicationServices.xml", + "build/.NETFramework/v4.7.2/System.Web.DataVisualization.Design.dll", + "build/.NETFramework/v4.7.2/System.Web.DataVisualization.dll", + "build/.NETFramework/v4.7.2/System.Web.DataVisualization.xml", + "build/.NETFramework/v4.7.2/System.Web.DynamicData.Design.dll", + "build/.NETFramework/v4.7.2/System.Web.DynamicData.Design.xml", + "build/.NETFramework/v4.7.2/System.Web.DynamicData.dll", + "build/.NETFramework/v4.7.2/System.Web.DynamicData.xml", + "build/.NETFramework/v4.7.2/System.Web.Entity.Design.dll", + "build/.NETFramework/v4.7.2/System.Web.Entity.Design.xml", + "build/.NETFramework/v4.7.2/System.Web.Entity.dll", + "build/.NETFramework/v4.7.2/System.Web.Entity.xml", + "build/.NETFramework/v4.7.2/System.Web.Extensions.Design.dll", + "build/.NETFramework/v4.7.2/System.Web.Extensions.Design.xml", + "build/.NETFramework/v4.7.2/System.Web.Extensions.dll", + "build/.NETFramework/v4.7.2/System.Web.Extensions.xml", + "build/.NETFramework/v4.7.2/System.Web.Mobile.dll", + "build/.NETFramework/v4.7.2/System.Web.Mobile.xml", + "build/.NETFramework/v4.7.2/System.Web.RegularExpressions.dll", + "build/.NETFramework/v4.7.2/System.Web.RegularExpressions.xml", + "build/.NETFramework/v4.7.2/System.Web.Routing.dll", + "build/.NETFramework/v4.7.2/System.Web.Services.dll", + "build/.NETFramework/v4.7.2/System.Web.Services.xml", + "build/.NETFramework/v4.7.2/System.Web.dll", + "build/.NETFramework/v4.7.2/System.Web.xml", + "build/.NETFramework/v4.7.2/System.Windows.Controls.Ribbon.dll", + "build/.NETFramework/v4.7.2/System.Windows.Controls.Ribbon.xml", + "build/.NETFramework/v4.7.2/System.Windows.Forms.DataVisualization.Design.dll", + "build/.NETFramework/v4.7.2/System.Windows.Forms.DataVisualization.dll", + "build/.NETFramework/v4.7.2/System.Windows.Forms.DataVisualization.xml", + "build/.NETFramework/v4.7.2/System.Windows.Forms.dll", + "build/.NETFramework/v4.7.2/System.Windows.Forms.xml", + "build/.NETFramework/v4.7.2/System.Windows.Input.Manipulations.dll", + "build/.NETFramework/v4.7.2/System.Windows.Input.Manipulations.xml", + "build/.NETFramework/v4.7.2/System.Windows.Presentation.dll", + "build/.NETFramework/v4.7.2/System.Windows.Presentation.xml", + "build/.NETFramework/v4.7.2/System.Windows.dll", + "build/.NETFramework/v4.7.2/System.Workflow.Activities.dll", + "build/.NETFramework/v4.7.2/System.Workflow.Activities.xml", + "build/.NETFramework/v4.7.2/System.Workflow.ComponentModel.dll", + "build/.NETFramework/v4.7.2/System.Workflow.ComponentModel.xml", + "build/.NETFramework/v4.7.2/System.Workflow.Runtime.dll", + "build/.NETFramework/v4.7.2/System.Workflow.Runtime.xml", + "build/.NETFramework/v4.7.2/System.WorkflowServices.dll", + "build/.NETFramework/v4.7.2/System.WorkflowServices.xml", + "build/.NETFramework/v4.7.2/System.Xaml.dll", + "build/.NETFramework/v4.7.2/System.Xaml.xml", + "build/.NETFramework/v4.7.2/System.Xml.Linq.dll", + "build/.NETFramework/v4.7.2/System.Xml.Linq.xml", + "build/.NETFramework/v4.7.2/System.Xml.Serialization.dll", + "build/.NETFramework/v4.7.2/System.Xml.dll", + "build/.NETFramework/v4.7.2/System.Xml.xml", + "build/.NETFramework/v4.7.2/System.dll", + "build/.NETFramework/v4.7.2/System.xml", + "build/.NETFramework/v4.7.2/UIAutomationClient.dll", + "build/.NETFramework/v4.7.2/UIAutomationClient.xml", + "build/.NETFramework/v4.7.2/UIAutomationClientsideProviders.dll", + "build/.NETFramework/v4.7.2/UIAutomationClientsideProviders.xml", + "build/.NETFramework/v4.7.2/UIAutomationProvider.dll", + "build/.NETFramework/v4.7.2/UIAutomationProvider.xml", + "build/.NETFramework/v4.7.2/UIAutomationTypes.dll", + "build/.NETFramework/v4.7.2/UIAutomationTypes.xml", + "build/.NETFramework/v4.7.2/WindowsBase.dll", + "build/.NETFramework/v4.7.2/WindowsBase.xml", + "build/.NETFramework/v4.7.2/WindowsFormsIntegration.dll", + "build/.NETFramework/v4.7.2/WindowsFormsIntegration.xml", + "build/.NETFramework/v4.7.2/XamlBuildTask.dll", + "build/.NETFramework/v4.7.2/XamlBuildTask.xml", + "build/.NETFramework/v4.7.2/mscorlib.dll", + "build/.NETFramework/v4.7.2/mscorlib.xml", + "build/.NETFramework/v4.7.2/namespaces.xml", + "build/.NETFramework/v4.7.2/sysglobl.dll", + "build/.NETFramework/v4.7.2/sysglobl.xml", + "build/Microsoft.NETFramework.ReferenceAssemblies.net472.targets", + "microsoft.netframework.referenceassemblies.net472.1.0.0.nupkg.sha512", + "microsoft.netframework.referenceassemblies.net472.nuspec" + ] + }, + "Mono.Options/5.3.0": { + "sha512": "pRL0iiFkkUmQbdPDCpCQRee6w4jj63tdyS2F64jg9859t3DKBXlLpDCvZLs4C45ZSDmWD9tiJtIx/7O8/B1XkA==", + "type": "package", + "path": "mono.options/5.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "THIRD-PARTY-NOTICES.txt", + "lib/dnxcore/Mono.Options.dll", + "lib/net4-client/Mono.Options.dll", + "lib/netstandard1.3/Mono.Options.dll", + "lib/portable-net45+netcore45+wpa81+wp8+MonoAndroid+MonoTouch+XamariniOS+Xamarin.Mac/Mono.Options.dll", + "lib/portable-net45+netcore45+wpa81+wp8/Mono.Options.dll", + "mono.options.5.3.0.nupkg.sha512", + "mono.options.nuspec" + ] + }, + "murmurhash/1.0.3": { + "sha512": "56dW8jgSsvGs/tULn+r1UbS+o0rBvgMj+6Lta6uao4j8Kzx1kVxMf56LPKO070VqjWcGyMB4K4R6M4gVKutG9A==", + "type": "package", + "path": "murmurhash/1.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/MurmurHash.dll", + "lib/net40/MurmurHash.dll", + "lib/net45/MurmurHash.dll", + "lib/netstandard2.0/MurmurHash.dll", + "murmurhash.1.0.3.nupkg.sha512", + "murmurhash.nuspec" + ] + }, + "Newtonsoft.Json/11.0.1": { + "sha512": "pNN4l+J6LlpIvHOeNdXlwxv39NPJ2B5klz+Rd2UQZIx30Squ5oND1Yy3wEAUoKn0GPUj6Yxt9lxlYWQqfZcvKg==", + "type": "package", + "path": "newtonsoft.json/11.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml", + "newtonsoft.json.11.0.1.nupkg.sha512", + "newtonsoft.json.nuspec" + ] + }, + "NUnit/3.13.1": { + "sha512": "vWBvrSelmTYwqHWvO3dA63z7cOpaFR/3nJ9MMVLBkWeaWa7oiglPPm5g1h96B4i2XXqjFexxhR5MyMjmIJYPfg==", + "type": "package", + "path": "nunit/3.13.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "build/NUnit.props", + "icon.png", + "lib/net35/nunit.framework.dll", + "lib/net35/nunit.framework.xml", + "lib/net40/nunit.framework.dll", + "lib/net40/nunit.framework.xml", + "lib/net45/nunit.framework.dll", + "lib/net45/nunit.framework.xml", + "lib/netstandard2.0/nunit.framework.dll", + "lib/netstandard2.0/nunit.framework.xml", + "nunit.3.13.1.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit3TestAdapter/3.17.0": { + "sha512": "I9MNvK+GM2yXrHPitwZkAZKU9sYI2OO/8wKC+VuBD7V3z+ySQ1pSopX/urr0ooedI8/TIcajYPRO4vGRr7AM8A==", + "type": "package", + "path": "nunit3testadapter/3.17.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "build/net35/NUnit3.TestAdapter.dll", + "build/net35/NUnit3.TestAdapter.pdb", + "build/net35/NUnit3TestAdapter.props", + "build/net35/nunit.engine.api.dll", + "build/net35/nunit.engine.core.dll", + "build/net35/nunit.engine.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp2.1/NUnit3TestAdapter.props", + "build/netcoreapp2.1/nunit.engine.api.dll", + "build/netcoreapp2.1/nunit.engine.core.dll", + "build/netcoreapp2.1/nunit.engine.dll", + "nunit3testadapter.3.17.0.nupkg.sha512", + "nunit3testadapter.nuspec" + ] + }, + "Unleash.Client/1.6.1": { + "sha512": "7o3OoOEg25sEZz0wTgksqHx/IqP4ue7esM4AXA2w7PhAL2V7S3U/rFH2h5HfgqMziM5b/dzOLEwue1Osh65uKQ==", + "type": "package", + "path": "unleash.client/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Unleash.Client.dll", + "lib/net45/Unleash.Client.xml", + "lib/net451/Unleash.Client.dll", + "lib/net451/Unleash.Client.xml", + "lib/net46/Unleash.Client.dll", + "lib/net46/Unleash.Client.xml", + "lib/net461/Unleash.Client.dll", + "lib/net461/Unleash.Client.xml", + "lib/net47/Unleash.Client.dll", + "lib/net47/Unleash.Client.xml", + "lib/netstandard2.0/Unleash.Client.dll", + "lib/netstandard2.0/Unleash.Client.xml", + "unleash.client.1.6.1.nupkg.sha512", + "unleash.client.nuspec" + ] + }, + "isn/1.0.1": { + "type": "project", + "path": "../../src/isn/isn.csproj", + "msbuildProject": "../../src/isn/isn.csproj" + } + }, + "projectFileDependencyGroups": { + ".NETFramework,Version=v4.7.2": [ + "Microsoft.NET.Test.Sdk >= 16.9.4", + "Microsoft.NETFramework.ReferenceAssemblies >= 1.0.0", + "NUnit >= 3.13.1", + "NUnit3TestAdapter >= 3.17.0", + "coverlet.collector >= 3.0.2", + "isn >= 1.0.1" + ] + }, + "packageFolders": { + "/home/paul/.nuget/packages": {}, + "/usr/share/dotnet/sdk/NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj", + "projectName": "isn.tests", + "projectPath": "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj", + "packagesPath": "/home/paul/.nuget/packages", + "outputPath": "/home/paul/workspace/isn/test/isn.tests/obj/", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "/usr/share/dotnet/sdk/NuGetFallbackFolder" + ], + "configFilePaths": [ + "/home/paul/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net472" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "projectReferences": { + "/home/paul/workspace/isn/src/isn/isn.csproj": { + "projectPath": "/home/paul/workspace/isn/src/isn/isn.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net472": { + "targetAlias": "net472", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.9.4, )" + }, + "Microsoft.NETFramework.ReferenceAssemblies": { + "suppressParent": "All", + "target": "Package", + "version": "[1.0.0, )", + "autoReferenced": true + }, + "NUnit": { + "target": "Package", + "version": "[3.13.1, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[3.17.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.0.2, )" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/5.0.302/RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/test/isn.tests/obj/project.nuget.cache b/test/isn.tests/obj/project.nuget.cache new file mode 100644 index 0000000..ca2a634 --- /dev/null +++ b/test/isn.tests/obj/project.nuget.cache @@ -0,0 +1,20 @@ +{ + "version": 2, + "dgSpecHash": "rHuH+Uwaz9bhS216AfJUgN3TRbVLFqgVtAF08njPnAPJ1Qe6Rwbk0lDb2ai+siRG1vrmDzl0/losPL+UQMMurg==", + "success": true, + "projectFilePath": "/home/paul/workspace/isn/test/isn.tests/isn.tests.csproj", + "expectedPackageFiles": [ + "/home/paul/.nuget/packages/coverlet.collector/3.0.2/coverlet.collector.3.0.2.nupkg.sha512", + "/home/paul/.nuget/packages/microsoft.codecoverage/16.9.4/microsoft.codecoverage.16.9.4.nupkg.sha512", + "/home/paul/.nuget/packages/microsoft.net.test.sdk/16.9.4/microsoft.net.test.sdk.16.9.4.nupkg.sha512", + "/home/paul/.nuget/packages/microsoft.netframework.referenceassemblies/1.0.0/microsoft.netframework.referenceassemblies.1.0.0.nupkg.sha512", + "/home/paul/.nuget/packages/microsoft.netframework.referenceassemblies.net472/1.0.0/microsoft.netframework.referenceassemblies.net472.1.0.0.nupkg.sha512", + "/home/paul/.nuget/packages/mono.options/5.3.0/mono.options.5.3.0.nupkg.sha512", + "/home/paul/.nuget/packages/murmurhash/1.0.3/murmurhash.1.0.3.nupkg.sha512", + "/home/paul/.nuget/packages/newtonsoft.json/11.0.1/newtonsoft.json.11.0.1.nupkg.sha512", + "/home/paul/.nuget/packages/nunit/3.13.1/nunit.3.13.1.nupkg.sha512", + "/home/paul/.nuget/packages/nunit3testadapter/3.17.0/nunit3testadapter.3.17.0.nupkg.sha512", + "/home/paul/.nuget/packages/unleash.client/1.6.1/unleash.client.1.6.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file