Projekt

Obecné

Profil

« Předchozí | Další » 

Revize e4df5943

Přidáno uživatelem Jakub Schenk před asi 2 roky(ů)

  • ID e4df5943ec5107cf54f8383efeb1bf02d0fe32bb
  • Rodič 858edfe4

Backend testing

Založení projektu pro testování backendu

Zobrazit rozdíly:

Backend/BackendTesting/AnotationTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class AnotationTesting
10
    {
11
    }
12
}
Backend/BackendTesting/BackendTesting.csproj
1
<Project Sdk="Microsoft.NET.Sdk">
2

  
3
  <PropertyGroup>
4
    <TargetFramework>net6.0</TargetFramework>
5
    <Nullable>enable</Nullable>
6

  
7
    <IsPackable>false</IsPackable>
8
  </PropertyGroup>
9

  
10
  <ItemGroup>
11
    <PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.4" />
12
    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4">
13
      <PrivateAssets>all</PrivateAssets>
14
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
15
    </PackageReference>
16
    <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="6.0.4" />
17
    <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.4" />
18
    <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.4">
19
      <PrivateAssets>all</PrivateAssets>
20
      <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
21
    </PackageReference>
22
    <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
23
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
24
    <PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
25
    <PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
26
    <PackageReference Include="coverlet.collector" Version="3.1.0" />
27
    <PackageReference Include="Selenium.WebDriver" Version="4.1.0" />
28
    <PackageReference Include="Selenium.WebDriver.ChromeDriver" Version="100.0.4896.6000" />
29
    <PackageReference Include="Selenium.WebDriver.GeckoDriver" Version="0.30.0.1" />
30
  </ItemGroup>
31

  
32
</Project>
Backend/BackendTesting/Constants.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class Constants
10
    {
11
    }
12
}
Backend/BackendTesting/DocumentManagementTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class DocumentManagementTesting
10
    {
11
    }
12
}
Backend/BackendTesting/FiltersTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class FiltersTesting
10
    {
11
    }
12
}
Backend/BackendTesting/ImportExportTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class ImportExportTesting
10
    {
11
    }
12
}
Backend/BackendTesting/LoginTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class LoginTesting
10
    {
11
    }
12
}
Backend/BackendTesting/Main_Testing_Class.cs
1
using Microsoft.VisualStudio.TestTools.UnitTesting;
2
using OpenQA.Selenium;
3
using OpenQA.Selenium.Chrome;
4
using OpenQA.Selenium.Firefox;
5

  
6
using System;
7
using System.Collections;
8
using System.Collections.Generic;
9
using System.Threading;
10

  
11
namespace BackendTesting
12
{
13
    [TestClass]
14
    public class Main_Testing_Class
15
    {
16
        public IWebDriver fDriver = new FirefoxDriver();
17
        public IWebDriver cDriver = new ChromeDriver();
18

  
19

  
20
        [TestMethod]
21
        public void DummyTutorial()
22
        {
23
            var webDriver = cDriver; //potrebuje "using selenium a chrome (firefox)
24
            //priprava promennych
25
            By googleSearchBar = By.Name("q");
26
            By googleSearchButton = By.Name("btnK");
27
            By searchName = By.XPath("//h2//span[text()='Elden Ring']");
28
            By googleCoockieAggreementButton = By.Id("L2AGLb");
29

  
30
            //prace s driverem
31
            webDriver.Manage().Window.Maximize();
32
            webDriver.Navigate().GoToUrl("https://www.google.com/");    //zakladni stranka
33
            Thread.Sleep(500);
34

  
35
            webDriver.FindElement(googleCoockieAggreementButton).Click();           //odsouhlaseni coockies
36
            Thread.Sleep(500);
37

  
38
            webDriver.FindElement(googleSearchBar).SendKeys("Elden Ring");          //napsat Elden Ring do hledani
39
            Thread.Sleep(500);
40
            webDriver.FindElement(googleSearchButton).Click();                      //kliknout na button pro poslani prikazu
41
            Thread.Sleep(500);
42

  
43
            var resultText = webDriver.FindElement(searchName);                     //najit pomoci xpath pozadovany element a ulozit si ho
44

  
45
            Assert.IsTrue(resultText.Text == "Elden Ring"); //samotny test pro otestovani stazene hodnoty
46

  
47

  
48
            webDriver.Quit();                                                          //ukonceni webdriveru
49
        }
50

  
51

  
52
    }
53
}
Backend/BackendTesting/TagsManagementTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class TagsManagementTesting
10
    {
11
    }
12
}
Backend/BackendTesting/UserManagementTesting.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class UserManagementTesting
10
    {
11
    }
12
}
Backend/BackendTesting/Utils.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Linq;
4
using System.Text;
5
using System.Threading.Tasks;
6

  
7
namespace BackendTesting
8
{
9
    internal class Utils
10
    {
11
    }
12
}
Backend/BackendTesting/obj/BackendTesting.csproj.nuget.dgspec.json
1
{
2
  "format": 1,
3
  "restore": {
4
    "C:\\Users\\jakub\\C#\\ASWI\\project\\Backend\\BackendTesting\\BackendTesting.csproj": {}
5
  },
6
  "projects": {
7
    "C:\\Users\\jakub\\C#\\ASWI\\project\\Backend\\BackendTesting\\BackendTesting.csproj": {
8
      "version": "1.0.0",
9
      "restore": {
10
        "projectUniqueName": "C:\\Users\\jakub\\C#\\ASWI\\project\\Backend\\BackendTesting\\BackendTesting.csproj",
11
        "projectName": "BackendTesting",
12
        "projectPath": "C:\\Users\\jakub\\C#\\ASWI\\project\\Backend\\BackendTesting\\BackendTesting.csproj",
13
        "packagesPath": "C:\\Users\\jakub\\.nuget\\packages\\",
14
        "outputPath": "C:\\Users\\jakub\\C#\\ASWI\\project\\Backend\\BackendTesting\\obj\\",
15
        "projectStyle": "PackageReference",
16
        "configFilePaths": [
17
          "C:\\Users\\jakub\\AppData\\Roaming\\NuGet\\NuGet.Config",
18
          "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
19
        ],
20
        "originalTargetFrameworks": [
21
          "net6.0"
22
        ],
23
        "sources": {
24
          "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
25
          "https://api.nuget.org/v3/index.json": {}
26
        },
27
        "frameworks": {
28
          "net6.0": {
29
            "targetAlias": "net6.0",
30
            "projectReferences": {}
31
          }
32
        },
33
        "warningProperties": {
34
          "warnAsError": [
35
            "NU1605"
36
          ]
37
        }
38
      },
39
      "frameworks": {
40
        "net6.0": {
41
          "targetAlias": "net6.0",
42
          "dependencies": {
43
            "MSTest.TestAdapter": {
44
              "target": "Package",
45
              "version": "[2.2.7, )"
46
            },
47
            "MSTest.TestFramework": {
48
              "target": "Package",
49
              "version": "[2.2.7, )"
50
            },
51
            "Microsoft.EntityFrameworkCore": {
52
              "target": "Package",
53
              "version": "[6.0.4, )"
54
            },
55
            "Microsoft.EntityFrameworkCore.Design": {
56
              "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
57
              "suppressParent": "All",
58
              "target": "Package",
59
              "version": "[6.0.4, )"
60
            },
61
            "Microsoft.EntityFrameworkCore.Proxies": {
62
              "target": "Package",
63
              "version": "[6.0.4, )"
64
            },
65
            "Microsoft.EntityFrameworkCore.Sqlite": {
66
              "target": "Package",
67
              "version": "[6.0.4, )"
68
            },
69
            "Microsoft.EntityFrameworkCore.Tools": {
70
              "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
71
              "suppressParent": "All",
72
              "target": "Package",
73
              "version": "[6.0.4, )"
74
            },
75
            "Microsoft.Extensions.Logging.Console": {
76
              "target": "Package",
77
              "version": "[6.0.0, )"
78
            },
79
            "Microsoft.NET.Test.Sdk": {
80
              "target": "Package",
81
              "version": "[16.11.0, )"
82
            },
83
            "Selenium.WebDriver": {
84
              "target": "Package",
85
              "version": "[4.1.0, )"
86
            },
87
            "Selenium.WebDriver.ChromeDriver": {
88
              "target": "Package",
89
              "version": "[100.0.4896.6000, )"
90
            },
91
            "Selenium.WebDriver.GeckoDriver": {
92
              "target": "Package",
93
              "version": "[0.30.0.1, )"
94
            },
95
            "coverlet.collector": {
96
              "target": "Package",
97
              "version": "[3.1.0, )"
98
            }
99
          },
100
          "imports": [
101
            "net461",
102
            "net462",
103
            "net47",
104
            "net471",
105
            "net472",
106
            "net48"
107
          ],
108
          "assetTargetFallback": true,
109
          "warn": true,
110
          "frameworkReferences": {
111
            "Microsoft.NETCore.App": {
112
              "privateAssets": "all"
113
            }
114
          },
115
          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.102\\RuntimeIdentifierGraph.json"
116
        }
117
      }
118
    }
119
  }
120
}
Backend/BackendTesting/obj/BackendTesting.csproj.nuget.g.props
1
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
    <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
5
    <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
6
    <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
7
    <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
8
    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\jakub\.nuget\packages\</NuGetPackageFolders>
9
    <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10
    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.1</NuGetToolVersion>
11
  </PropertyGroup>
12
  <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13
    <SourceRoot Include="C:\Users\jakub\.nuget\packages\" />
14
  </ItemGroup>
15
  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
16
    <Import Project="$(NuGetPackageRoot)mstest.testadapter\2.2.7\build\netcoreapp1.0\MSTest.TestAdapter.props" Condition="Exists('$(NuGetPackageRoot)mstest.testadapter\2.2.7\build\netcoreapp1.0\MSTest.TestAdapter.props')" />
17
    <Import Project="$(NuGetPackageRoot)microsoft.testplatform.testhost\16.11.0\build\netcoreapp2.1\Microsoft.TestPlatform.TestHost.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testplatform.testhost\16.11.0\build\netcoreapp2.1\Microsoft.TestPlatform.TestHost.props')" />
18
    <Import Project="$(NuGetPackageRoot)microsoft.codecoverage\16.11.0\build\netstandard1.0\Microsoft.CodeCoverage.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\16.11.0\build\netstandard1.0\Microsoft.CodeCoverage.props')" />
19
    <Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk\16.11.0\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk\16.11.0\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.props')" />
20
    <Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.4\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" />
21
  </ImportGroup>
22
  <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
23
    <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\jakub\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.4</PkgMicrosoft_EntityFrameworkCore_Tools>
24
  </PropertyGroup>
25
</Project>
Backend/BackendTesting/obj/BackendTesting.csproj.nuget.g.targets
1
<?xml version="1.0" encoding="utf-8" standalone="no"?>
2
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
4
    <Import Project="$(NuGetPackageRoot)selenium.webdriver.geckodriver\0.30.0.1\build\Selenium.WebDriver.GeckoDriver.targets" Condition="Exists('$(NuGetPackageRoot)selenium.webdriver.geckodriver\0.30.0.1\build\Selenium.WebDriver.GeckoDriver.targets')" />
5
    <Import Project="$(NuGetPackageRoot)selenium.webdriver.chromedriver\100.0.4896.6000\build\Selenium.WebDriver.ChromeDriver.targets" Condition="Exists('$(NuGetPackageRoot)selenium.webdriver.chromedriver\100.0.4896.6000\build\Selenium.WebDriver.ChromeDriver.targets')" />
6
    <Import Project="$(NuGetPackageRoot)microsoft.codecoverage\16.11.0\build\netstandard1.0\Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage\16.11.0\build\netstandard1.0\Microsoft.CodeCoverage.targets')" />
7
    <Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk\16.11.0\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk\16.11.0\build\netcoreapp2.1\Microsoft.NET.Test.Sdk.targets')" />
8
    <Import Project="$(NuGetPackageRoot)coverlet.collector\3.1.0\build\netstandard1.0\coverlet.collector.targets" Condition="Exists('$(NuGetPackageRoot)coverlet.collector\3.1.0\build\netstandard1.0\coverlet.collector.targets')" />
9
  </ImportGroup>
10
</Project>
Backend/BackendTesting/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes (2).cs
1
// <autogenerated />
2
using System;
3
using System.Reflection;
4
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
Backend/BackendTesting/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
1
// <autogenerated />
2
using System;
3
using System.Reflection;
4
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.AssemblyInfo (2).cs
1
//------------------------------------------------------------------------------
2
// <auto-generated>
3
//     This code was generated by a tool.
4
//     Runtime Version:4.0.30319.42000
5
//
6
//     Changes to this file may cause incorrect behavior and will be lost if
7
//     the code is regenerated.
8
// </auto-generated>
9
//------------------------------------------------------------------------------
10

  
11
using System;
12
using System.Reflection;
13

  
14
[assembly: System.Reflection.AssemblyCompanyAttribute("BackendTesting")]
15
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18
[assembly: System.Reflection.AssemblyProductAttribute("BackendTesting")]
19
[assembly: System.Reflection.AssemblyTitleAttribute("BackendTesting")]
20
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21

  
22
// Generated by the MSBuild WriteCodeFragment class.
23

  
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.AssemblyInfo.cs
1
//------------------------------------------------------------------------------
2
// <auto-generated>
3
//     This code was generated by a tool.
4
//     Runtime Version:4.0.30319.42000
5
//
6
//     Changes to this file may cause incorrect behavior and will be lost if
7
//     the code is regenerated.
8
// </auto-generated>
9
//------------------------------------------------------------------------------
10

  
11
using System;
12
using System.Reflection;
13

  
14
[assembly: System.Reflection.AssemblyCompanyAttribute("BackendTesting")]
15
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
16
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
17
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
18
[assembly: System.Reflection.AssemblyProductAttribute("BackendTesting")]
19
[assembly: System.Reflection.AssemblyTitleAttribute("BackendTesting")]
20
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
21

  
22
// Generated by the MSBuild WriteCodeFragment class.
23

  
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.AssemblyInfoInputs (2).cache
1
e234235fea212ab0358f7aa8d75cdf9480fd02a7
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.AssemblyInfoInputs.cache
1
e234235fea212ab0358f7aa8d75cdf9480fd02a7
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.GeneratedMSBuildEditorConfig (2).editorconfig
1
is_global = true
2
build_property.TargetFramework = net6.0
3
build_property.TargetPlatformMinVersion = 
4
build_property.UsingMicrosoftNETSdkWeb = 
5
build_property.ProjectTypeGuids = 
6
build_property.InvariantGlobalization = 
7
build_property.PlatformNeutralAssembly = 
8
build_property._SupportedPlatformList = Linux,macOS,Windows
9
build_property.RootNamespace = BackendTesting
10
build_property.ProjectDir = C:\Users\jakub\C#\ASWI\project\Backend\BackendTesting\
Backend/BackendTesting/obj/Debug/net6.0/BackendTesting.GeneratedMSBuildEditorConfig.editorconfig
1
is_global = true
2
build_property.TargetFramework = net6.0
3
build_property.TargetPlatformMinVersion = 
4
build_property.UsingMicrosoftNETSdkWeb = 
5
build_property.ProjectTypeGuids = 
6
build_property.InvariantGlobalization = 
7
build_property.PlatformNeutralAssembly = 
8
build_property._SupportedPlatformList = Linux,macOS,Windows
9
build_property.RootNamespace = BackendTesting
10
build_property.ProjectDir = C:\Users\jakub\C#\ASWI\project\Backend\BackendTesting\
Backend/BackendTesting/obj/project.assets.json
1
{
2
  "version": 3,
3
  "targets": {
4
    "net6.0": {
5
      "Castle.Core/4.4.1": {
6
        "type": "package",
7
        "dependencies": {
8
          "NETStandard.Library": "1.6.1",
9
          "System.Collections.Specialized": "4.3.0",
10
          "System.ComponentModel": "4.3.0",
11
          "System.ComponentModel.TypeConverter": "4.3.0",
12
          "System.Diagnostics.TraceSource": "4.3.0",
13
          "System.Dynamic.Runtime": "4.3.0",
14
          "System.Reflection": "4.3.0",
15
          "System.Reflection.Emit": "4.3.0",
16
          "System.Reflection.TypeExtensions": "4.3.0",
17
          "System.Xml.XmlDocument": "4.3.0"
18
        },
19
        "compile": {
20
          "lib/netstandard1.5/Castle.Core.dll": {}
21
        },
22
        "runtime": {
23
          "lib/netstandard1.5/Castle.Core.dll": {}
24
        }
25
      },
26
      "coverlet.collector/3.1.0": {
27
        "type": "package",
28
        "build": {
29
          "build/netstandard1.0/coverlet.collector.targets": {}
30
        }
31
      },
32
      "Humanizer.Core/2.8.26": {
33
        "type": "package",
34
        "compile": {
35
          "lib/netstandard2.0/_._": {}
36
        },
37
        "runtime": {
38
          "lib/netstandard2.0/Humanizer.dll": {}
39
        }
40
      },
41
      "Microsoft.CodeCoverage/16.11.0": {
42
        "type": "package",
43
        "compile": {
44
          "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
45
        },
46
        "runtime": {
47
          "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {}
48
        },
49
        "build": {
50
          "build/netstandard1.0/Microsoft.CodeCoverage.props": {},
51
          "build/netstandard1.0/Microsoft.CodeCoverage.targets": {}
52
        }
53
      },
54
      "Microsoft.Data.Sqlite.Core/6.0.4": {
55
        "type": "package",
56
        "dependencies": {
57
          "SQLitePCLRaw.core": "2.0.6"
58
        },
59
        "compile": {
60
          "lib/net6.0/Microsoft.Data.Sqlite.dll": {}
61
        },
62
        "runtime": {
63
          "lib/net6.0/Microsoft.Data.Sqlite.dll": {}
64
        }
65
      },
66
      "Microsoft.EntityFrameworkCore/6.0.4": {
67
        "type": "package",
68
        "dependencies": {
69
          "Microsoft.EntityFrameworkCore.Abstractions": "6.0.4",
70
          "Microsoft.EntityFrameworkCore.Analyzers": "6.0.4",
71
          "Microsoft.Extensions.Caching.Memory": "6.0.1",
72
          "Microsoft.Extensions.DependencyInjection": "6.0.0",
73
          "Microsoft.Extensions.Logging": "6.0.0",
74
          "System.Collections.Immutable": "6.0.0",
75
          "System.Diagnostics.DiagnosticSource": "6.0.0"
76
        },
77
        "compile": {
78
          "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
79
        },
80
        "runtime": {
81
          "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {}
82
        }
83
      },
84
      "Microsoft.EntityFrameworkCore.Abstractions/6.0.4": {
85
        "type": "package",
86
        "compile": {
87
          "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
88
        },
89
        "runtime": {
90
          "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
91
        }
92
      },
93
      "Microsoft.EntityFrameworkCore.Analyzers/6.0.4": {
94
        "type": "package",
95
        "compile": {
96
          "lib/netstandard2.0/_._": {}
97
        },
98
        "runtime": {
99
          "lib/netstandard2.0/_._": {}
100
        }
101
      },
102
      "Microsoft.EntityFrameworkCore.Design/6.0.4": {
103
        "type": "package",
104
        "dependencies": {
105
          "Humanizer.Core": "2.8.26",
106
          "Microsoft.EntityFrameworkCore.Relational": "6.0.4"
107
        },
108
        "compile": {
109
          "lib/net6.0/_._": {}
110
        },
111
        "runtime": {
112
          "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {}
113
        },
114
        "build": {
115
          "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
116
        }
117
      },
118
      "Microsoft.EntityFrameworkCore.Proxies/6.0.4": {
119
        "type": "package",
120
        "dependencies": {
121
          "Castle.Core": "4.4.1",
122
          "Microsoft.EntityFrameworkCore": "6.0.4"
123
        },
124
        "compile": {
125
          "lib/net6.0/Microsoft.EntityFrameworkCore.Proxies.dll": {}
126
        },
127
        "runtime": {
128
          "lib/net6.0/Microsoft.EntityFrameworkCore.Proxies.dll": {}
129
        }
130
      },
131
      "Microsoft.EntityFrameworkCore.Relational/6.0.4": {
132
        "type": "package",
133
        "dependencies": {
134
          "Microsoft.EntityFrameworkCore": "6.0.4",
135
          "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
136
        },
137
        "compile": {
138
          "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
139
        },
140
        "runtime": {
141
          "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {}
142
        }
143
      },
144
      "Microsoft.EntityFrameworkCore.Sqlite/6.0.4": {
145
        "type": "package",
146
        "dependencies": {
147
          "Microsoft.EntityFrameworkCore.Sqlite.Core": "6.0.4",
148
          "SQLitePCLRaw.bundle_e_sqlite3": "2.0.6"
149
        },
150
        "compile": {
151
          "lib/net6.0/_._": {}
152
        },
153
        "runtime": {
154
          "lib/net6.0/_._": {}
155
        }
156
      },
157
      "Microsoft.EntityFrameworkCore.Sqlite.Core/6.0.4": {
158
        "type": "package",
159
        "dependencies": {
160
          "Microsoft.Data.Sqlite.Core": "6.0.4",
161
          "Microsoft.EntityFrameworkCore.Relational": "6.0.4",
162
          "Microsoft.Extensions.DependencyModel": "6.0.0"
163
        },
164
        "compile": {
165
          "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {}
166
        },
167
        "runtime": {
168
          "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {}
169
        }
170
      },
171
      "Microsoft.EntityFrameworkCore.Tools/6.0.4": {
172
        "type": "package",
173
        "dependencies": {
174
          "Microsoft.EntityFrameworkCore.Design": "6.0.4"
175
        },
176
        "compile": {
177
          "lib/net6.0/_._": {}
178
        },
179
        "runtime": {
180
          "lib/net6.0/_._": {}
181
        }
182
      },
183
      "Microsoft.Extensions.Caching.Abstractions/6.0.0": {
184
        "type": "package",
185
        "dependencies": {
186
          "Microsoft.Extensions.Primitives": "6.0.0"
187
        },
188
        "compile": {
189
          "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
190
        },
191
        "runtime": {
192
          "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {}
193
        }
194
      },
195
      "Microsoft.Extensions.Caching.Memory/6.0.1": {
196
        "type": "package",
197
        "dependencies": {
198
          "Microsoft.Extensions.Caching.Abstractions": "6.0.0",
199
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
200
          "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
201
          "Microsoft.Extensions.Options": "6.0.0",
202
          "Microsoft.Extensions.Primitives": "6.0.0"
203
        },
204
        "compile": {
205
          "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
206
        },
207
        "runtime": {
208
          "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {}
209
        }
210
      },
211
      "Microsoft.Extensions.Configuration/6.0.0": {
212
        "type": "package",
213
        "dependencies": {
214
          "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
215
          "Microsoft.Extensions.Primitives": "6.0.0"
216
        },
217
        "compile": {
218
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
219
        },
220
        "runtime": {
221
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {}
222
        }
223
      },
224
      "Microsoft.Extensions.Configuration.Abstractions/6.0.0": {
225
        "type": "package",
226
        "dependencies": {
227
          "Microsoft.Extensions.Primitives": "6.0.0"
228
        },
229
        "compile": {
230
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
231
        },
232
        "runtime": {
233
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
234
        }
235
      },
236
      "Microsoft.Extensions.Configuration.Binder/6.0.0": {
237
        "type": "package",
238
        "dependencies": {
239
          "Microsoft.Extensions.Configuration.Abstractions": "6.0.0"
240
        },
241
        "compile": {
242
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
243
        },
244
        "runtime": {
245
          "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {}
246
        }
247
      },
248
      "Microsoft.Extensions.DependencyInjection/6.0.0": {
249
        "type": "package",
250
        "dependencies": {
251
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
252
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
253
        },
254
        "compile": {
255
          "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
256
        },
257
        "runtime": {
258
          "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {}
259
        },
260
        "build": {
261
          "buildTransitive/netcoreapp3.1/_._": {}
262
        }
263
      },
264
      "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": {
265
        "type": "package",
266
        "compile": {
267
          "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
268
        },
269
        "runtime": {
270
          "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
271
        },
272
        "build": {
273
          "buildTransitive/netcoreapp3.1/_._": {}
274
        }
275
      },
276
      "Microsoft.Extensions.DependencyModel/6.0.0": {
277
        "type": "package",
278
        "dependencies": {
279
          "System.Buffers": "4.5.1",
280
          "System.Memory": "4.5.4",
281
          "System.Runtime.CompilerServices.Unsafe": "6.0.0",
282
          "System.Text.Encodings.Web": "6.0.0",
283
          "System.Text.Json": "6.0.0"
284
        },
285
        "compile": {
286
          "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
287
        },
288
        "runtime": {
289
          "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll": {}
290
        }
291
      },
292
      "Microsoft.Extensions.Logging/6.0.0": {
293
        "type": "package",
294
        "dependencies": {
295
          "Microsoft.Extensions.DependencyInjection": "6.0.0",
296
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
297
          "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
298
          "Microsoft.Extensions.Options": "6.0.0",
299
          "System.Diagnostics.DiagnosticSource": "6.0.0"
300
        },
301
        "compile": {
302
          "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
303
        },
304
        "runtime": {
305
          "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
306
        }
307
      },
308
      "Microsoft.Extensions.Logging.Abstractions/6.0.0": {
309
        "type": "package",
310
        "compile": {
311
          "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
312
        },
313
        "runtime": {
314
          "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
315
        },
316
        "build": {
317
          "buildTransitive/netcoreapp3.1/_._": {}
318
        }
319
      },
320
      "Microsoft.Extensions.Logging.Configuration/6.0.0": {
321
        "type": "package",
322
        "dependencies": {
323
          "Microsoft.Extensions.Configuration": "6.0.0",
324
          "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
325
          "Microsoft.Extensions.Configuration.Binder": "6.0.0",
326
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
327
          "Microsoft.Extensions.Logging": "6.0.0",
328
          "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
329
          "Microsoft.Extensions.Options": "6.0.0",
330
          "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0"
331
        },
332
        "compile": {
333
          "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
334
        },
335
        "runtime": {
336
          "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll": {}
337
        }
338
      },
339
      "Microsoft.Extensions.Logging.Console/6.0.0": {
340
        "type": "package",
341
        "dependencies": {
342
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
343
          "Microsoft.Extensions.Logging": "6.0.0",
344
          "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
345
          "Microsoft.Extensions.Logging.Configuration": "6.0.0",
346
          "Microsoft.Extensions.Options": "6.0.0",
347
          "System.Text.Json": "6.0.0"
348
        },
349
        "compile": {
350
          "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": {}
351
        },
352
        "runtime": {
353
          "lib/net6.0/Microsoft.Extensions.Logging.Console.dll": {}
354
        },
355
        "build": {
356
          "buildTransitive/netcoreapp3.1/_._": {}
357
        }
358
      },
359
      "Microsoft.Extensions.Options/6.0.0": {
360
        "type": "package",
361
        "dependencies": {
362
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
363
          "Microsoft.Extensions.Primitives": "6.0.0"
364
        },
365
        "compile": {
366
          "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
367
        },
368
        "runtime": {
369
          "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {}
370
        }
371
      },
372
      "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": {
373
        "type": "package",
374
        "dependencies": {
375
          "Microsoft.Extensions.Configuration.Abstractions": "6.0.0",
376
          "Microsoft.Extensions.Configuration.Binder": "6.0.0",
377
          "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0",
378
          "Microsoft.Extensions.Options": "6.0.0",
379
          "Microsoft.Extensions.Primitives": "6.0.0"
380
        },
381
        "compile": {
382
          "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
383
        },
384
        "runtime": {
385
          "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {}
386
        }
387
      },
388
      "Microsoft.Extensions.Primitives/6.0.0": {
389
        "type": "package",
390
        "dependencies": {
391
          "System.Runtime.CompilerServices.Unsafe": "6.0.0"
392
        },
393
        "compile": {
394
          "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
395
        },
396
        "runtime": {
397
          "lib/net6.0/Microsoft.Extensions.Primitives.dll": {}
398
        },
399
        "build": {
400
          "buildTransitive/netcoreapp3.1/_._": {}
401
        }
402
      },
403
      "Microsoft.NET.Test.Sdk/16.11.0": {
404
        "type": "package",
405
        "dependencies": {
406
          "Microsoft.CodeCoverage": "16.11.0",
407
          "Microsoft.TestPlatform.TestHost": "16.11.0"
408
        },
409
        "compile": {
410
          "lib/netcoreapp2.1/_._": {}
411
        },
412
        "runtime": {
413
          "lib/netcoreapp2.1/_._": {}
414
        },
415
        "build": {
416
          "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {},
417
          "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {}
418
        },
419
        "buildMultiTargeting": {
420
          "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {}
421
        }
422
      },
423
      "Microsoft.NETCore.Platforms/1.1.0": {
424
        "type": "package",
425
        "compile": {
426
          "lib/netstandard1.0/_._": {}
427
        },
428
        "runtime": {
429
          "lib/netstandard1.0/_._": {}
430
        }
431
      },
432
      "Microsoft.NETCore.Targets/1.1.0": {
433
        "type": "package",
434
        "compile": {
435
          "lib/netstandard1.0/_._": {}
436
        },
437
        "runtime": {
438
          "lib/netstandard1.0/_._": {}
439
        }
440
      },
441
      "Microsoft.TestPlatform.ObjectModel/16.11.0": {
442
        "type": "package",
443
        "dependencies": {
444
          "NuGet.Frameworks": "5.0.0",
445
          "System.Reflection.Metadata": "1.6.0"
446
        },
447
        "compile": {
448
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
449
          "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
450
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
451
        },
452
        "runtime": {
453
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
454
          "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
455
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}
456
        },
457
        "resource": {
458
          "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
459
            "locale": "cs"
460
          },
461
          "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
462
            "locale": "cs"
463
          },
464
          "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
465
            "locale": "de"
466
          },
467
          "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
468
            "locale": "de"
469
          },
470
          "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
471
            "locale": "es"
472
          },
473
          "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
474
            "locale": "es"
475
          },
476
          "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
477
            "locale": "fr"
478
          },
479
          "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
480
            "locale": "fr"
481
          },
482
          "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
483
            "locale": "it"
484
          },
485
          "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
486
            "locale": "it"
487
          },
488
          "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
489
            "locale": "ja"
490
          },
491
          "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
492
            "locale": "ja"
493
          },
494
          "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
495
            "locale": "ko"
496
          },
497
          "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
498
            "locale": "ko"
499
          },
500
          "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
501
            "locale": "pl"
502
          },
503
          "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
504
            "locale": "pl"
505
          },
506
          "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
507
            "locale": "pt-BR"
508
          },
509
          "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
510
            "locale": "pt-BR"
511
          },
512
          "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
513
            "locale": "ru"
514
          },
515
          "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
516
            "locale": "ru"
517
          },
518
          "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
519
            "locale": "tr"
520
          },
521
          "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
522
            "locale": "tr"
523
          },
524
          "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
525
            "locale": "zh-Hans"
526
          },
527
          "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
528
            "locale": "zh-Hans"
529
          },
530
          "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": {
531
            "locale": "zh-Hant"
532
          },
533
          "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": {
534
            "locale": "zh-Hant"
535
          }
536
        }
537
      },
538
      "Microsoft.TestPlatform.TestHost/16.11.0": {
539
        "type": "package",
540
        "dependencies": {
541
          "Microsoft.TestPlatform.ObjectModel": "16.11.0",
542
          "Newtonsoft.Json": "9.0.1"
543
        },
544
        "compile": {
545
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
546
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
547
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
548
          "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
549
          "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
550
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
551
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
552
          "lib/netcoreapp2.1/testhost.dll": {}
553
        },
554
        "runtime": {
555
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {},
556
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {},
557
          "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {},
558
          "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {},
559
          "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {},
560
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {},
561
          "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {},
562
          "lib/netcoreapp2.1/testhost.dll": {}
563
        },
564
        "resource": {
565
          "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
566
            "locale": "cs"
567
          },
568
          "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
569
            "locale": "cs"
570
          },
571
          "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
572
            "locale": "cs"
573
          },
574
          "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
575
            "locale": "de"
576
          },
577
          "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
578
            "locale": "de"
579
          },
580
          "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
581
            "locale": "de"
582
          },
583
          "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
584
            "locale": "es"
585
          },
586
          "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
587
            "locale": "es"
588
          },
589
          "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
590
            "locale": "es"
591
          },
592
          "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
593
            "locale": "fr"
594
          },
595
          "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
596
            "locale": "fr"
597
          },
598
          "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
599
            "locale": "fr"
600
          },
601
          "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
602
            "locale": "it"
603
          },
604
          "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
605
            "locale": "it"
606
          },
607
          "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
608
            "locale": "it"
609
          },
610
          "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
611
            "locale": "ja"
612
          },
613
          "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
614
            "locale": "ja"
615
          },
616
          "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
617
            "locale": "ja"
618
          },
619
          "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
620
            "locale": "ko"
621
          },
622
          "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
623
            "locale": "ko"
624
          },
625
          "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
626
            "locale": "ko"
627
          },
628
          "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
629
            "locale": "pl"
630
          },
631
          "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
632
            "locale": "pl"
633
          },
634
          "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
635
            "locale": "pl"
636
          },
637
          "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
638
            "locale": "pt-BR"
639
          },
640
          "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
641
            "locale": "pt-BR"
642
          },
643
          "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
644
            "locale": "pt-BR"
645
          },
646
          "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
647
            "locale": "ru"
648
          },
649
          "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
650
            "locale": "ru"
651
          },
652
          "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
653
            "locale": "ru"
654
          },
655
          "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
656
            "locale": "tr"
657
          },
658
          "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
659
            "locale": "tr"
660
          },
661
          "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
662
            "locale": "tr"
663
          },
664
          "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
665
            "locale": "zh-Hans"
666
          },
667
          "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
668
            "locale": "zh-Hans"
669
          },
670
          "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
671
            "locale": "zh-Hans"
672
          },
673
          "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": {
674
            "locale": "zh-Hant"
675
          },
676
          "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": {
677
            "locale": "zh-Hant"
678
          },
679
          "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": {
680
            "locale": "zh-Hant"
681
          }
682
        },
683
        "build": {
684
          "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {}
685
        }
686
      },
687
      "Microsoft.Win32.Primitives/4.3.0": {
688
        "type": "package",
689
        "dependencies": {
690
          "Microsoft.NETCore.Platforms": "1.1.0",
691
          "Microsoft.NETCore.Targets": "1.1.0",
692
          "System.Runtime": "4.3.0"
693
        },
694
        "compile": {
695
          "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {}
696
        }
697
      },
698
      "MSTest.TestAdapter/2.2.7": {
699
        "type": "package",
700
        "dependencies": {
701
          "NETStandard.Library": "1.6.1",
702
          "System.Diagnostics.TextWriterTraceListener": "4.3.0"
703
        },
704
        "build": {
705
          "build/netcoreapp1.0/MSTest.TestAdapter.props": {}
706
        }
707
      },
708
      "MSTest.TestFramework/2.2.7": {
709
        "type": "package",
710
        "dependencies": {
711
          "NETStandard.Library": "1.6.1",
712
          "System.Diagnostics.TextWriterTraceListener": "4.3.0"
713
        },
714
        "compile": {
715
          "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
716
          "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
717
        },
718
        "runtime": {
719
          "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll": {},
720
          "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll": {}
721
        }
722
      },
723
      "NETStandard.Library/1.6.1": {
724
        "type": "package",
725
        "dependencies": {
726
          "Microsoft.NETCore.Platforms": "1.1.0",
727
          "Microsoft.Win32.Primitives": "4.3.0",
728
          "System.AppContext": "4.3.0",
729
          "System.Collections": "4.3.0",
730
          "System.Collections.Concurrent": "4.3.0",
731
          "System.Console": "4.3.0",
732
          "System.Diagnostics.Debug": "4.3.0",
733
          "System.Diagnostics.Tools": "4.3.0",
734
          "System.Diagnostics.Tracing": "4.3.0",
735
          "System.Globalization": "4.3.0",
736
          "System.Globalization.Calendars": "4.3.0",
737
          "System.IO": "4.3.0",
738
          "System.IO.Compression": "4.3.0",
739
          "System.IO.Compression.ZipFile": "4.3.0",
740
          "System.IO.FileSystem": "4.3.0",
741
          "System.IO.FileSystem.Primitives": "4.3.0",
742
          "System.Linq": "4.3.0",
743
          "System.Linq.Expressions": "4.3.0",
744
          "System.Net.Http": "4.3.0",
745
          "System.Net.Primitives": "4.3.0",
746
          "System.Net.Sockets": "4.3.0",
747
          "System.ObjectModel": "4.3.0",
748
          "System.Reflection": "4.3.0",
749
          "System.Reflection.Extensions": "4.3.0",
750
          "System.Reflection.Primitives": "4.3.0",
751
          "System.Resources.ResourceManager": "4.3.0",
752
          "System.Runtime": "4.3.0",
753
          "System.Runtime.Extensions": "4.3.0",
754
          "System.Runtime.Handles": "4.3.0",
755
          "System.Runtime.InteropServices": "4.3.0",
756
          "System.Runtime.InteropServices.RuntimeInformation": "4.3.0",
757
          "System.Runtime.Numerics": "4.3.0",
758
          "System.Security.Cryptography.Algorithms": "4.3.0",
759
          "System.Security.Cryptography.Encoding": "4.3.0",
760
          "System.Security.Cryptography.Primitives": "4.3.0",
761
          "System.Security.Cryptography.X509Certificates": "4.3.0",
762
          "System.Text.Encoding": "4.3.0",
763
          "System.Text.Encoding.Extensions": "4.3.0",
764
          "System.Text.RegularExpressions": "4.3.0",
765
          "System.Threading": "4.3.0",
766
          "System.Threading.Tasks": "4.3.0",
767
          "System.Threading.Timer": "4.3.0",
768
          "System.Xml.ReaderWriter": "4.3.0",
769
          "System.Xml.XDocument": "4.3.0"
770
        }
771
      },
772
      "Newtonsoft.Json/12.0.3": {
773
        "type": "package",
774
        "compile": {
775
          "lib/netstandard2.0/Newtonsoft.Json.dll": {}
776
        },
777
        "runtime": {
778
          "lib/netstandard2.0/Newtonsoft.Json.dll": {}
779
        }
780
      },
781
      "NuGet.Frameworks/5.0.0": {
782
        "type": "package",
783
        "compile": {
784
          "lib/netstandard2.0/NuGet.Frameworks.dll": {}
785
        },
786
        "runtime": {
787
          "lib/netstandard2.0/NuGet.Frameworks.dll": {}
788
        }
789
      },
790
      "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
791
        "type": "package",
792
        "runtimeTargets": {
793
          "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
794
            "assetType": "native",
795
            "rid": "debian.8-x64"
796
          }
797
        }
798
      },
799
      "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
800
        "type": "package",
801
        "runtimeTargets": {
802
          "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
803
            "assetType": "native",
804
            "rid": "fedora.23-x64"
805
          }
806
        }
807
      },
808
      "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
809
        "type": "package",
810
        "runtimeTargets": {
811
          "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
812
            "assetType": "native",
813
            "rid": "fedora.24-x64"
814
          }
815
        }
816
      },
817
      "runtime.native.System/4.3.0": {
818
        "type": "package",
819
        "dependencies": {
820
          "Microsoft.NETCore.Platforms": "1.1.0",
821
          "Microsoft.NETCore.Targets": "1.1.0"
822
        },
823
        "compile": {
824
          "lib/netstandard1.0/_._": {}
825
        },
826
        "runtime": {
827
          "lib/netstandard1.0/_._": {}
828
        }
829
      },
830
      "runtime.native.System.IO.Compression/4.3.0": {
831
        "type": "package",
832
        "dependencies": {
833
          "Microsoft.NETCore.Platforms": "1.1.0",
834
          "Microsoft.NETCore.Targets": "1.1.0"
835
        },
836
        "compile": {
837
          "lib/netstandard1.0/_._": {}
838
        },
839
        "runtime": {
840
          "lib/netstandard1.0/_._": {}
841
        }
842
      },
843
      "runtime.native.System.Net.Http/4.3.0": {
844
        "type": "package",
845
        "dependencies": {
846
          "Microsoft.NETCore.Platforms": "1.1.0",
847
          "Microsoft.NETCore.Targets": "1.1.0"
848
        },
849
        "compile": {
850
          "lib/netstandard1.0/_._": {}
851
        },
852
        "runtime": {
853
          "lib/netstandard1.0/_._": {}
854
        }
855
      },
856
      "runtime.native.System.Security.Cryptography.Apple/4.3.0": {
857
        "type": "package",
858
        "dependencies": {
859
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0"
860
        },
861
        "compile": {
862
          "lib/netstandard1.0/_._": {}
863
        },
864
        "runtime": {
865
          "lib/netstandard1.0/_._": {}
866
        }
867
      },
868
      "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
869
        "type": "package",
870
        "dependencies": {
871
          "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
872
          "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
873
          "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
874
          "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
875
          "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
876
          "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
877
          "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
878
          "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
879
          "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0",
880
          "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0"
881
        },
882
        "compile": {
883
          "lib/netstandard1.0/_._": {}
884
        },
885
        "runtime": {
886
          "lib/netstandard1.0/_._": {}
887
        }
888
      },
889
      "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
890
        "type": "package",
891
        "runtimeTargets": {
892
          "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
893
            "assetType": "native",
894
            "rid": "opensuse.13.2-x64"
895
          }
896
        }
897
      },
898
      "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {
899
        "type": "package",
900
        "runtimeTargets": {
901
          "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": {
902
            "assetType": "native",
903
            "rid": "opensuse.42.1-x64"
904
          }
905
        }
906
      },
907
      "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {
908
        "type": "package",
909
        "runtimeTargets": {
910
          "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": {
911
            "assetType": "native",
912
            "rid": "osx.10.10-x64"
... Rozdílový soubor je zkrácen, protože jeho délka přesahuje max. limit.

Také k dispozici: Unified diff