work on project
This commit is contained in:
parent
2c48e2ac47
commit
a71ffc36a0
BIN
Hotel_Example.zip
Normal file
BIN
Hotel_Example.zip
Normal file
Binary file not shown.
BIN
Hotel_Example/.vs/Hotel_Example/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
Hotel_Example/.vs/Hotel_Example/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
BIN
Hotel_Example/.vs/Hotel_Example/v15/.suo
Normal file
BIN
Hotel_Example/.vs/Hotel_Example/v15/.suo
Normal file
Binary file not shown.
BIN
Hotel_Example/.vs/Hotel_Example/v15/Server/sqlite3/storage.ide
Normal file
BIN
Hotel_Example/.vs/Hotel_Example/v15/Server/sqlite3/storage.ide
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Hotel_Example/.vs/Hotel_Example/v17/.futdcache.v1
Normal file
BIN
Hotel_Example/.vs/Hotel_Example/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
Hotel_Example/.vs/Hotel_Example/v17/.suo
Normal file
BIN
Hotel_Example/.vs/Hotel_Example/v17/.suo
Normal file
Binary file not shown.
BIN
Hotel_Example/.vs/ProjectEvaluation/hotel_example.metadata.v2
Normal file
BIN
Hotel_Example/.vs/ProjectEvaluation/hotel_example.metadata.v2
Normal file
Binary file not shown.
BIN
Hotel_Example/.vs/ProjectEvaluation/hotel_example.projects.v2
Normal file
BIN
Hotel_Example/.vs/ProjectEvaluation/hotel_example.projects.v2
Normal file
Binary file not shown.
25
Hotel_Example/Hotel_Example.sln
Normal file
25
Hotel_Example/Hotel_Example.sln
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.28307.271
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hotel_Example", "Hotel_Example\Hotel_Example.csproj", "{40905A58-5EE4-46E7-A0BD-AD6CF33AED06}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{40905A58-5EE4-46E7-A0BD-AD6CF33AED06}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{40905A58-5EE4-46E7-A0BD-AD6CF33AED06}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{40905A58-5EE4-46E7-A0BD-AD6CF33AED06}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{40905A58-5EE4-46E7-A0BD-AD6CF33AED06}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {9068EC93-3FCD-4296-A807-A22249011607}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
26
Hotel_Example/Hotel_Example/Customer.cs
Normal file
26
Hotel_Example/Hotel_Example/Customer.cs
Normal file
@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Hotel_Example
|
||||
{
|
||||
public class Customer
|
||||
{
|
||||
//Varje customer has one or more booked room
|
||||
|
||||
|
||||
//Customer has also other attributes like name, email-address and social security number
|
||||
public string Name { get; set; }
|
||||
public string Pnr { get; set; }
|
||||
|
||||
|
||||
|
||||
//constructor
|
||||
public Customer(string pnr, string name)
|
||||
{
|
||||
Pnr = pnr;
|
||||
Name = name;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
61
Hotel_Example/Hotel_Example/HotelLogic.cs
Normal file
61
Hotel_Example/Hotel_Example/HotelLogic.cs
Normal file
@ -0,0 +1,61 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Hotel_Example
|
||||
{
|
||||
public class HotelLogic
|
||||
{
|
||||
//Den här klassen representerar själva hotelet. Ett hotel har kunder.
|
||||
//Så i den här klassen ska vi ha en lista av alla kunder.
|
||||
private List<Customer> customers;
|
||||
|
||||
|
||||
public HotelLogic()
|
||||
{
|
||||
//Här skapar vi listan
|
||||
customers = new List<Customer>();
|
||||
|
||||
}
|
||||
|
||||
//den här metoden returnerar kund-listan
|
||||
public List<Customer> GetCustomers()
|
||||
{
|
||||
return customers;
|
||||
}
|
||||
|
||||
//A private method to check if a customer is already in the list
|
||||
//used by AddCustomer
|
||||
private bool CheckCustomerExist(Customer customer)
|
||||
{
|
||||
bool flag = false;
|
||||
|
||||
foreach (Customer c in customers)
|
||||
{
|
||||
if (c.Pnr == customer.Pnr)
|
||||
{
|
||||
flag = true;
|
||||
}
|
||||
}
|
||||
|
||||
return flag;
|
||||
|
||||
}
|
||||
|
||||
|
||||
public bool AddCustomer(Customer client)
|
||||
{
|
||||
|
||||
if (!CheckCustomerExist(client))
|
||||
{
|
||||
customers.Add(client);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
8
Hotel_Example/Hotel_Example/Hotel_Example.csproj
Normal file
8
Hotel_Example/Hotel_Example/Hotel_Example.csproj
Normal file
@ -0,0 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp2.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
73
Hotel_Example/Hotel_Example/Program.cs
Normal file
73
Hotel_Example/Hotel_Example/Program.cs
Normal file
@ -0,0 +1,73 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Hotel_Example
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
//Vi skapar bara ett objekt av HotelLogic i och med att den här appen ska
|
||||
//representera ett hotel.
|
||||
HotelLogic myHotel = new HotelLogic();
|
||||
|
||||
int option;
|
||||
|
||||
bool run = true;
|
||||
|
||||
while (run)
|
||||
{
|
||||
Console.WriteLine("Welcome, please choose from the following menu:" +
|
||||
"\n" + "1. Show list of all customer" +
|
||||
"\n" + "2. Add a new customer " +
|
||||
"\n" + "3. Exit");
|
||||
|
||||
bool success = Int32.TryParse(Console.ReadLine(), out option);
|
||||
|
||||
switch (option)
|
||||
{
|
||||
case 1:
|
||||
{
|
||||
//Anropar GetCustomer på objektet av HotelLogic
|
||||
List<Customer> customers = myHotel.GetCustomers();
|
||||
|
||||
//Vi går igenom listan och skriver ut alla kunder
|
||||
foreach (Customer c in customers)
|
||||
{ Console.WriteLine("Name: " + c.Name + "Personnummer: " + c.Pnr); }
|
||||
break;
|
||||
}
|
||||
|
||||
case 2:
|
||||
{
|
||||
Console.WriteLine("Input the personnumber: ");
|
||||
string pnr = Console.ReadLine();
|
||||
|
||||
Console.WriteLine("Input the name: ");
|
||||
string name = Console.ReadLine();
|
||||
|
||||
//Här skapar vi ett objekt av Customer med info som vi har fått från användaren
|
||||
Customer newCustomer = new Customer(pnr, name);
|
||||
|
||||
//Vi lägger till objektet i kund-listan i HotelLogic
|
||||
//genom att anropa metoden AddCustomer
|
||||
bool result=myHotel.AddCustomer(newCustomer);
|
||||
|
||||
if (result)
|
||||
Console.WriteLine("Customer added!");
|
||||
else
|
||||
Console.WriteLine("Customer is already exist");
|
||||
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
case 3:
|
||||
{
|
||||
run = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
12
Hotel_Example/Hotel_Example/Room.cs
Normal file
12
Hotel_Example/Hotel_Example/Room.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace Hotel_Example
|
||||
{
|
||||
public class Room
|
||||
{
|
||||
public int RoomNumber { get; set; }
|
||||
public double Price { get; set; }
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v2.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v2.1": {
|
||||
"Hotel_Example/1.0.0": {
|
||||
"runtime": {
|
||||
"Hotel_Example.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Hotel_Example/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\phils\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\phils\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp2.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "2.1.0"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.1", FrameworkDisplayName = "")]
|
@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Hotel_Example")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Hotel_Example")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Hotel_Example")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@ -0,0 +1 @@
|
||||
d2c15c86e36aa8fecce3c24e545c5696be3d4f24
|
@ -0,0 +1,3 @@
|
||||
is_global = true
|
||||
build_property.RootNamespace = Hotel_Example
|
||||
build_property.ProjectDir = C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
42d731b81ee1697b98b7c8faf86c196f37656c2c
|
@ -0,0 +1,24 @@
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.deps.json
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.runtimeconfig.json
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.runtimeconfig.dev.json
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.dll
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.pdb
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.csprojAssemblyReference.cache
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.csproj.CoreCompileInputs.cache
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.AssemblyInfoInputs.cache
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.AssemblyInfo.cs
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.dll
|
||||
H:\Documents\MyHKR\VT19\Grundläggande programmering i C#\Example_Application\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.pdb
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.deps.json
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.runtimeconfig.json
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.runtimeconfig.dev.json
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.dll
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\bin\Debug\netcoreapp2.1\Hotel_Example.pdb
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.csproj.AssemblyReference.cache
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.AssemblyInfoInputs.cache
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.AssemblyInfo.cs
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.csproj.CoreCompileInputs.cache
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.dll
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.pdb
|
||||
C:\Users\phils\git\Bashir-C-Sharp\Hotel_Example\Hotel_Example\obj\Debug\netcoreapp2.1\Hotel_Example.genruntimeconfig.cache
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
1ae7cb53828c30629cf1a06c8c812d9b26324c46
|
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": 1,
|
||||
"dgSpecHash": "c6H8UfPp+GhYfVeAIRmIPaM9dxgHFbjESxBFD3V75tNrnCgpNznzmu3BjcirmKL7R3VYoGmH1KhIerrZfYrGoA==",
|
||||
"success": true
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj",
|
||||
"projectName": "Hotel_Example",
|
||||
"projectPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj",
|
||||
"packagesPath": "C:\\Users\\phils\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\phils\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp2.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.1": {
|
||||
"targetAlias": "netcoreapp2.1",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.1": {
|
||||
"targetAlias": "netcoreapp2.1",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.1.0, )",
|
||||
"autoReferenced": true
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\phils\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\phils\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props" Condition="Exists('$(NuGetPackageRoot)microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netcore.app\2.1.0\build\netcoreapp2.1\Microsoft.NETCore.App.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
755
Hotel_Example/Hotel_Example/obj/project.assets.json
Normal file
755
Hotel_Example/Hotel_Example/obj/project.assets.json
Normal file
@ -0,0 +1,755 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v2.1": {
|
||||
"Microsoft.NETCore.App/2.1.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy": "2.1.0",
|
||||
"Microsoft.NETCore.Platforms": "2.1.0",
|
||||
"Microsoft.NETCore.Targets": "2.1.0",
|
||||
"NETStandard.Library": "2.0.3"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netcoreapp2.1/Microsoft.CSharp.dll": {},
|
||||
"ref/netcoreapp2.1/Microsoft.VisualBasic.dll": {},
|
||||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.AppContext.dll": {},
|
||||
"ref/netcoreapp2.1/System.Buffers.dll": {},
|
||||
"ref/netcoreapp2.1/System.Collections.Concurrent.dll": {},
|
||||
"ref/netcoreapp2.1/System.Collections.Immutable.dll": {},
|
||||
"ref/netcoreapp2.1/System.Collections.NonGeneric.dll": {},
|
||||
"ref/netcoreapp2.1/System.Collections.Specialized.dll": {},
|
||||
"ref/netcoreapp2.1/System.Collections.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll": {},
|
||||
"ref/netcoreapp2.1/System.ComponentModel.dll": {},
|
||||
"ref/netcoreapp2.1/System.Configuration.dll": {},
|
||||
"ref/netcoreapp2.1/System.Console.dll": {},
|
||||
"ref/netcoreapp2.1/System.Core.dll": {},
|
||||
"ref/netcoreapp2.1/System.Data.Common.dll": {},
|
||||
"ref/netcoreapp2.1/System.Data.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Debug.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Process.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tools.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll": {},
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.dll": {},
|
||||
"ref/netcoreapp2.1/System.Drawing.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.Drawing.dll": {},
|
||||
"ref/netcoreapp2.1/System.Dynamic.Runtime.dll": {},
|
||||
"ref/netcoreapp2.1/System.Globalization.Calendars.dll": {},
|
||||
"ref/netcoreapp2.1/System.Globalization.Extensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Globalization.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.Compression.Brotli.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.Compression.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.Pipes.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll": {},
|
||||
"ref/netcoreapp2.1/System.IO.dll": {},
|
||||
"ref/netcoreapp2.1/System.Linq.Expressions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Linq.Parallel.dll": {},
|
||||
"ref/netcoreapp2.1/System.Linq.Queryable.dll": {},
|
||||
"ref/netcoreapp2.1/System.Linq.dll": {},
|
||||
"ref/netcoreapp2.1/System.Memory.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Http.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.HttpListener.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Mail.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.NameResolution.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.NetworkInformation.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Ping.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Requests.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Security.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.ServicePoint.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.Sockets.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.WebClient.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.WebProxy.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.dll": {},
|
||||
"ref/netcoreapp2.1/System.Net.dll": {},
|
||||
"ref/netcoreapp2.1/System.Numerics.Vectors.dll": {},
|
||||
"ref/netcoreapp2.1/System.Numerics.dll": {},
|
||||
"ref/netcoreapp2.1/System.ObjectModel.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Extensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Metadata.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Reflection.dll": {},
|
||||
"ref/netcoreapp2.1/System.Resources.Reader.dll": {},
|
||||
"ref/netcoreapp2.1/System.Resources.ResourceManager.dll": {},
|
||||
"ref/netcoreapp2.1/System.Resources.Writer.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Extensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Handles.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Loader.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Numerics.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.dll": {},
|
||||
"ref/netcoreapp2.1/System.Runtime.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Claims.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.Principal.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.SecureString.dll": {},
|
||||
"ref/netcoreapp2.1/System.Security.dll": {},
|
||||
"ref/netcoreapp2.1/System.ServiceModel.Web.dll": {},
|
||||
"ref/netcoreapp2.1/System.ServiceProcess.dll": {},
|
||||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Text.Encoding.dll": {},
|
||||
"ref/netcoreapp2.1/System.Text.RegularExpressions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Overlapped.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Thread.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.ThreadPool.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.Timer.dll": {},
|
||||
"ref/netcoreapp2.1/System.Threading.dll": {},
|
||||
"ref/netcoreapp2.1/System.Transactions.Local.dll": {},
|
||||
"ref/netcoreapp2.1/System.Transactions.dll": {},
|
||||
"ref/netcoreapp2.1/System.ValueTuple.dll": {},
|
||||
"ref/netcoreapp2.1/System.Web.HttpUtility.dll": {},
|
||||
"ref/netcoreapp2.1/System.Web.dll": {},
|
||||
"ref/netcoreapp2.1/System.Windows.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.Linq.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.Serialization.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.XDocument.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.XmlDocument.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.dll": {},
|
||||
"ref/netcoreapp2.1/System.Xml.dll": {},
|
||||
"ref/netcoreapp2.1/System.dll": {},
|
||||
"ref/netcoreapp2.1/WindowsBase.dll": {},
|
||||
"ref/netcoreapp2.1/mscorlib.dll": {},
|
||||
"ref/netcoreapp2.1/netstandard.dll": {}
|
||||
},
|
||||
"build": {
|
||||
"build/netcoreapp2.1/Microsoft.NETCore.App.props": {},
|
||||
"build/netcoreapp2.1/Microsoft.NETCore.App.targets": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.DotNetAppHost/2.1.0": {
|
||||
"type": "package"
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetHostResolver": "2.1.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostResolver/2.1.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetAppHost": "2.1.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.1.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Targets/2.1.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"build": {
|
||||
"build/netstandard2.0/NETStandard.Library.targets": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETCore.App/2.1.0": {
|
||||
"sha512": "JNHhG+j5eIhG26+H721IDmwswGUznTwwSuJMFe/08h0X2YarHvA15sVAvUkA/2Sp3W0ENNm48t+J7KTPRqEpfA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.app/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"Microsoft.NETCore.App.versions.txt",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"build/netcoreapp2.1/Microsoft.NETCore.App.PlatformManifest.txt",
|
||||
"build/netcoreapp2.1/Microsoft.NETCore.App.props",
|
||||
"build/netcoreapp2.1/Microsoft.NETCore.App.targets",
|
||||
"microsoft.netcore.app.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.app.nuspec",
|
||||
"ref/netcoreapp/_._",
|
||||
"ref/netcoreapp2.1/Microsoft.CSharp.dll",
|
||||
"ref/netcoreapp2.1/Microsoft.CSharp.xml",
|
||||
"ref/netcoreapp2.1/Microsoft.VisualBasic.dll",
|
||||
"ref/netcoreapp2.1/Microsoft.VisualBasic.xml",
|
||||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.dll",
|
||||
"ref/netcoreapp2.1/Microsoft.Win32.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.AppContext.dll",
|
||||
"ref/netcoreapp2.1/System.Buffers.dll",
|
||||
"ref/netcoreapp2.1/System.Buffers.xml",
|
||||
"ref/netcoreapp2.1/System.Collections.Concurrent.dll",
|
||||
"ref/netcoreapp2.1/System.Collections.Concurrent.xml",
|
||||
"ref/netcoreapp2.1/System.Collections.Immutable.dll",
|
||||
"ref/netcoreapp2.1/System.Collections.Immutable.xml",
|
||||
"ref/netcoreapp2.1/System.Collections.NonGeneric.dll",
|
||||
"ref/netcoreapp2.1/System.Collections.NonGeneric.xml",
|
||||
"ref/netcoreapp2.1/System.Collections.Specialized.dll",
|
||||
"ref/netcoreapp2.1/System.Collections.Specialized.xml",
|
||||
"ref/netcoreapp2.1/System.Collections.dll",
|
||||
"ref/netcoreapp2.1/System.Collections.xml",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Annotations.xml",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.DataAnnotations.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.EventBasedAsync.xml",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.TypeConverter.xml",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.dll",
|
||||
"ref/netcoreapp2.1/System.ComponentModel.xml",
|
||||
"ref/netcoreapp2.1/System.Configuration.dll",
|
||||
"ref/netcoreapp2.1/System.Console.dll",
|
||||
"ref/netcoreapp2.1/System.Console.xml",
|
||||
"ref/netcoreapp2.1/System.Core.dll",
|
||||
"ref/netcoreapp2.1/System.Data.Common.dll",
|
||||
"ref/netcoreapp2.1/System.Data.Common.xml",
|
||||
"ref/netcoreapp2.1/System.Data.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Contracts.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Debug.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Debug.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.DiagnosticSource.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.FileVersionInfo.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Process.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Process.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.StackTrace.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TextWriterTraceListener.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tools.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tools.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.TraceSource.xml",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.dll",
|
||||
"ref/netcoreapp2.1/System.Diagnostics.Tracing.xml",
|
||||
"ref/netcoreapp2.1/System.Drawing.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.Drawing.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.Drawing.dll",
|
||||
"ref/netcoreapp2.1/System.Dynamic.Runtime.dll",
|
||||
"ref/netcoreapp2.1/System.Globalization.Calendars.dll",
|
||||
"ref/netcoreapp2.1/System.Globalization.Extensions.dll",
|
||||
"ref/netcoreapp2.1/System.Globalization.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.Brotli.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.FileSystem.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.ZipFile.xml",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Compression.xml",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.dll",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.DriveInfo.xml",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.dll",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.Watcher.xml",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.dll",
|
||||
"ref/netcoreapp2.1/System.IO.FileSystem.xml",
|
||||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.dll",
|
||||
"ref/netcoreapp2.1/System.IO.IsolatedStorage.xml",
|
||||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.dll",
|
||||
"ref/netcoreapp2.1/System.IO.MemoryMappedFiles.xml",
|
||||
"ref/netcoreapp2.1/System.IO.Pipes.dll",
|
||||
"ref/netcoreapp2.1/System.IO.Pipes.xml",
|
||||
"ref/netcoreapp2.1/System.IO.UnmanagedMemoryStream.dll",
|
||||
"ref/netcoreapp2.1/System.IO.dll",
|
||||
"ref/netcoreapp2.1/System.Linq.Expressions.dll",
|
||||
"ref/netcoreapp2.1/System.Linq.Expressions.xml",
|
||||
"ref/netcoreapp2.1/System.Linq.Parallel.dll",
|
||||
"ref/netcoreapp2.1/System.Linq.Parallel.xml",
|
||||
"ref/netcoreapp2.1/System.Linq.Queryable.dll",
|
||||
"ref/netcoreapp2.1/System.Linq.Queryable.xml",
|
||||
"ref/netcoreapp2.1/System.Linq.dll",
|
||||
"ref/netcoreapp2.1/System.Linq.xml",
|
||||
"ref/netcoreapp2.1/System.Memory.dll",
|
||||
"ref/netcoreapp2.1/System.Memory.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Http.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Http.xml",
|
||||
"ref/netcoreapp2.1/System.Net.HttpListener.dll",
|
||||
"ref/netcoreapp2.1/System.Net.HttpListener.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Mail.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Mail.xml",
|
||||
"ref/netcoreapp2.1/System.Net.NameResolution.dll",
|
||||
"ref/netcoreapp2.1/System.Net.NameResolution.xml",
|
||||
"ref/netcoreapp2.1/System.Net.NetworkInformation.dll",
|
||||
"ref/netcoreapp2.1/System.Net.NetworkInformation.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Ping.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Ping.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Requests.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Requests.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Security.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Security.xml",
|
||||
"ref/netcoreapp2.1/System.Net.ServicePoint.dll",
|
||||
"ref/netcoreapp2.1/System.Net.ServicePoint.xml",
|
||||
"ref/netcoreapp2.1/System.Net.Sockets.dll",
|
||||
"ref/netcoreapp2.1/System.Net.Sockets.xml",
|
||||
"ref/netcoreapp2.1/System.Net.WebClient.dll",
|
||||
"ref/netcoreapp2.1/System.Net.WebClient.xml",
|
||||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.dll",
|
||||
"ref/netcoreapp2.1/System.Net.WebHeaderCollection.xml",
|
||||
"ref/netcoreapp2.1/System.Net.WebProxy.dll",
|
||||
"ref/netcoreapp2.1/System.Net.WebProxy.xml",
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.dll",
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.Client.xml",
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.dll",
|
||||
"ref/netcoreapp2.1/System.Net.WebSockets.xml",
|
||||
"ref/netcoreapp2.1/System.Net.dll",
|
||||
"ref/netcoreapp2.1/System.Numerics.Vectors.dll",
|
||||
"ref/netcoreapp2.1/System.Numerics.Vectors.xml",
|
||||
"ref/netcoreapp2.1/System.Numerics.dll",
|
||||
"ref/netcoreapp2.1/System.ObjectModel.dll",
|
||||
"ref/netcoreapp2.1/System.ObjectModel.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.DispatchProxy.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.ILGeneration.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.Lightweight.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Emit.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.Extensions.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Metadata.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Metadata.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.dll",
|
||||
"ref/netcoreapp2.1/System.Reflection.TypeExtensions.xml",
|
||||
"ref/netcoreapp2.1/System.Reflection.dll",
|
||||
"ref/netcoreapp2.1/System.Resources.Reader.dll",
|
||||
"ref/netcoreapp2.1/System.Resources.ResourceManager.dll",
|
||||
"ref/netcoreapp2.1/System.Resources.ResourceManager.xml",
|
||||
"ref/netcoreapp2.1/System.Resources.Writer.dll",
|
||||
"ref/netcoreapp2.1/System.Resources.Writer.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.CompilerServices.VisualC.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Extensions.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Extensions.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Handles.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.RuntimeInformation.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.WindowsRuntime.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.InteropServices.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Loader.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Loader.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Numerics.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Numerics.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Formatters.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Json.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.Xml.xml",
|
||||
"ref/netcoreapp2.1/System.Runtime.Serialization.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.dll",
|
||||
"ref/netcoreapp2.1/System.Runtime.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Claims.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Claims.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Algorithms.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Csp.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Encoding.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Primitives.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.X509Certificates.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Principal.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Principal.xml",
|
||||
"ref/netcoreapp2.1/System.Security.SecureString.dll",
|
||||
"ref/netcoreapp2.1/System.Security.dll",
|
||||
"ref/netcoreapp2.1/System.ServiceModel.Web.dll",
|
||||
"ref/netcoreapp2.1/System.ServiceProcess.dll",
|
||||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.dll",
|
||||
"ref/netcoreapp2.1/System.Text.Encoding.Extensions.xml",
|
||||
"ref/netcoreapp2.1/System.Text.Encoding.dll",
|
||||
"ref/netcoreapp2.1/System.Text.RegularExpressions.dll",
|
||||
"ref/netcoreapp2.1/System.Text.RegularExpressions.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Overlapped.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Overlapped.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Dataflow.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Extensions.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.Parallel.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Tasks.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Thread.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Thread.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.ThreadPool.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.ThreadPool.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.Timer.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.Timer.xml",
|
||||
"ref/netcoreapp2.1/System.Threading.dll",
|
||||
"ref/netcoreapp2.1/System.Threading.xml",
|
||||
"ref/netcoreapp2.1/System.Transactions.Local.dll",
|
||||
"ref/netcoreapp2.1/System.Transactions.Local.xml",
|
||||
"ref/netcoreapp2.1/System.Transactions.dll",
|
||||
"ref/netcoreapp2.1/System.ValueTuple.dll",
|
||||
"ref/netcoreapp2.1/System.Web.HttpUtility.dll",
|
||||
"ref/netcoreapp2.1/System.Web.HttpUtility.xml",
|
||||
"ref/netcoreapp2.1/System.Web.dll",
|
||||
"ref/netcoreapp2.1/System.Windows.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.Linq.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.ReaderWriter.xml",
|
||||
"ref/netcoreapp2.1/System.Xml.Serialization.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XDocument.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XDocument.xml",
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.XDocument.xml",
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XPath.xml",
|
||||
"ref/netcoreapp2.1/System.Xml.XmlDocument.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.dll",
|
||||
"ref/netcoreapp2.1/System.Xml.XmlSerializer.xml",
|
||||
"ref/netcoreapp2.1/System.Xml.dll",
|
||||
"ref/netcoreapp2.1/System.dll",
|
||||
"ref/netcoreapp2.1/WindowsBase.dll",
|
||||
"ref/netcoreapp2.1/mscorlib.dll",
|
||||
"ref/netcoreapp2.1/netstandard.dll",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetAppHost/2.1.0": {
|
||||
"sha512": "vMn8V3GOp/SPOG2oE8WxswzAWZ/GZmc8EPiB3vc2EZ6us14ehXhsvUFXndYopGNSjCa9OdqC6L6xStF1KyUZnw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnetapphost/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnetapphost.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostPolicy/2.1.0": {
|
||||
"sha512": "vBUwNihtLUVS2HhO6WocYfAktRmfFihm6JB8/sJ53caVW+AelvbnYpfiGzaZDpkWjN6vA3xzOKPu9Vu8Zz3p8Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnethostpolicy/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnethostpolicy.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostResolver/2.1.0": {
|
||||
"sha512": "o0PRql5qOHFEY3d1WvzE+T7cMFKtOsWLMg8L1oTeGNnI4u5AzOj8o6AdZT3y2GxFA1DAx7AQ9qZjpCO2/bgZRw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnethostresolver/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnethostresolver.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.1.0": {
|
||||
"sha512": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.platforms/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"microsoft.netcore.platforms.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.platforms.nuspec",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.Targets/2.1.0": {
|
||||
"sha512": "x188gIZXOwFXkPXyGavEcPGcR6RGvjFOES2QzskN4gERZjWPN34qhRsZVMC0CLJfQLGSButarcgWxPPM4vmg0w==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.targets/2.1.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"microsoft.netcore.targets.2.1.0.nupkg.sha512",
|
||||
"microsoft.netcore.targets.nuspec",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"NETStandard.Library/2.0.3": {
|
||||
"sha512": "st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
|
||||
"type": "package",
|
||||
"path": "netstandard.library/2.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"build/netstandard2.0/NETStandard.Library.targets",
|
||||
"build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.AppContext.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.Concurrent.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.Specialized.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.dll",
|
||||
"build/netstandard2.0/ref/System.Console.dll",
|
||||
"build/netstandard2.0/ref/System.Core.dll",
|
||||
"build/netstandard2.0/ref/System.Data.Common.dll",
|
||||
"build/netstandard2.0/ref/System.Data.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Process.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
|
||||
"build/netstandard2.0/ref/System.Drawing.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Drawing.dll",
|
||||
"build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.Calendars.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.dll",
|
||||
"build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
|
||||
"build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Pipes.dll",
|
||||
"build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
|
||||
"build/netstandard2.0/ref/System.IO.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Expressions.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Parallel.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Queryable.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Http.dll",
|
||||
"build/netstandard2.0/ref/System.Net.NameResolution.dll",
|
||||
"build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Ping.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Requests.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Security.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Sockets.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebSockets.dll",
|
||||
"build/netstandard2.0/ref/System.Net.dll",
|
||||
"build/netstandard2.0/ref/System.Numerics.dll",
|
||||
"build/netstandard2.0/ref/System.ObjectModel.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.Reader.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.Writer.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Handles.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Numerics.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Claims.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Principal.dll",
|
||||
"build/netstandard2.0/ref/System.Security.SecureString.dll",
|
||||
"build/netstandard2.0/ref/System.ServiceModel.Web.dll",
|
||||
"build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Text.Encoding.dll",
|
||||
"build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Overlapped.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Tasks.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Thread.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Timer.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.dll",
|
||||
"build/netstandard2.0/ref/System.Transactions.dll",
|
||||
"build/netstandard2.0/ref/System.ValueTuple.dll",
|
||||
"build/netstandard2.0/ref/System.Web.dll",
|
||||
"build/netstandard2.0/ref/System.Windows.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.Linq.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.Serialization.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XPath.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.dll",
|
||||
"build/netstandard2.0/ref/System.dll",
|
||||
"build/netstandard2.0/ref/mscorlib.dll",
|
||||
"build/netstandard2.0/ref/netstandard.dll",
|
||||
"build/netstandard2.0/ref/netstandard.xml",
|
||||
"lib/netstandard1.0/_._",
|
||||
"netstandard.library.2.0.3.nupkg.sha512",
|
||||
"netstandard.library.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETCoreApp,Version=v2.1": [
|
||||
"Microsoft.NETCore.App >= 2.1.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\phils\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj",
|
||||
"projectName": "Hotel_Example",
|
||||
"projectPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj",
|
||||
"packagesPath": "C:\\Users\\phils\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\phils\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp2.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.1": {
|
||||
"targetAlias": "netcoreapp2.1",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.1": {
|
||||
"targetAlias": "netcoreapp2.1",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.1.0, )",
|
||||
"autoReferenced": true
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
16
Hotel_Example/Hotel_Example/obj/project.nuget.cache
Normal file
16
Hotel_Example/Hotel_Example/obj/project.nuget.cache
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "QdC76vwJ1FWSNEsigLu0KkkhgLGWTHUZt+z6XfUiugpQZ23t5/shUr/if7N1BAHMSesMRNogyjkd8Ro5WFg4QA==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\Hotel_Example\\Hotel_Example\\Hotel_Example.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.app\\2.1.0\\microsoft.netcore.app.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.1.0\\microsoft.netcore.dotnetapphost.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.1.0\\microsoft.netcore.dotnethostpolicy.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.1.0\\microsoft.netcore.dotnethostresolver.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.0\\microsoft.netcore.platforms.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.targets\\2.1.0\\microsoft.netcore.targets.2.1.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
BIN
List-Example.zip
Normal file
BIN
List-Example.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
List-Example2/List-Example/.vs/List-Example/v15/.suo
Normal file
BIN
List-Example2/List-Example/.vs/List-Example/v15/.suo
Normal file
Binary file not shown.
Binary file not shown.
BIN
List-Example2/List-Example/.vs/List-Example/v17/.suo
Normal file
BIN
List-Example2/List-Example/.vs/List-Example/v17/.suo
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
25
List-Example2/List-Example/List-Example.sln
Normal file
25
List-Example2/List-Example/List-Example.sln
Normal file
@ -0,0 +1,25 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27428.2002
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "List-Example", "List-Example\List-Example.csproj", "{E4DCB1B0-7F9B-43D4-AB4A-7CF6C068EE14}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{E4DCB1B0-7F9B-43D4-AB4A-7CF6C068EE14}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{E4DCB1B0-7F9B-43D4-AB4A-7CF6C068EE14}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{E4DCB1B0-7F9B-43D4-AB4A-7CF6C068EE14}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{E4DCB1B0-7F9B-43D4-AB4A-7CF6C068EE14}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {7958DB8C-1ACF-4D08-9655-8A0BA578FE28}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
@ -0,0 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
71
List-Example2/List-Example/List-Example/Program.cs
Normal file
71
List-Example2/List-Example/List-Example/Program.cs
Normal file
@ -0,0 +1,71 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace List_Example
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
List<string> names = new List<string>();
|
||||
|
||||
Console.WriteLine("Count: {0}", names.Count);
|
||||
|
||||
names.Add("Wera"); names.Add("Sven"); names.Add("Anna"); names.Add("Emilia"); names.Add("Mikael");
|
||||
|
||||
Console.WriteLine();
|
||||
|
||||
foreach (string name in names)
|
||||
{
|
||||
Console.WriteLine(name);
|
||||
}
|
||||
|
||||
Console.WriteLine("Count: {0}", names.Count);
|
||||
|
||||
Console.WriteLine("\nContains(\"Anna\"): {0}", names.Contains("Anna"));
|
||||
|
||||
Console.WriteLine("\nInsert(2, \"Hakan\")");
|
||||
|
||||
names.Insert(2, "Hakan");
|
||||
|
||||
Console.WriteLine();
|
||||
|
||||
foreach (string name in names)
|
||||
{
|
||||
Console.WriteLine(name);
|
||||
}
|
||||
|
||||
Console.WriteLine("\nnames[3]: {0}", names[3]);
|
||||
|
||||
Console.WriteLine("\nRemove(\"Hakan\")");
|
||||
|
||||
names.Remove("Hakan");
|
||||
|
||||
Console.WriteLine();
|
||||
|
||||
foreach (string name in names)
|
||||
{
|
||||
Console.WriteLine(name);
|
||||
}
|
||||
|
||||
Console.WriteLine();
|
||||
Console.WriteLine("Check this out! The list is sorted");
|
||||
|
||||
//sort the elements in the list
|
||||
names.Sort();
|
||||
|
||||
foreach (string name in names)
|
||||
{
|
||||
Console.WriteLine(name);
|
||||
}
|
||||
|
||||
Console.WriteLine("Count: {0}", names.Count);
|
||||
|
||||
names.Clear();
|
||||
|
||||
Console.WriteLine("\nClear()");
|
||||
Console.WriteLine("Count: {0}", names.Count);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v2.0",
|
||||
"signature": "da39a3ee5e6b4b0d3255bfef95601890afd80709"
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v2.0": {
|
||||
"List-Example/1.0.0": {
|
||||
"runtime": {
|
||||
"List-Example.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"List-Example/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\hasnaz\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\hasnaz\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackagesFallback",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp2.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "2.0.0"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.0", FrameworkDisplayName = "")]
|
@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("List-Example")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("List-Example")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("List-Example")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@ -0,0 +1 @@
|
||||
c7c0f1d0ba8f10cc457666707cfcd47818d112c7
|
@ -0,0 +1,3 @@
|
||||
is_global = true
|
||||
build_property.RootNamespace = List-Example
|
||||
build_property.ProjectDir = C:\Users\phils\git\Bashir-C-Sharp\List-Example2\List-Example\List-Example\
|
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
||||
c560ed82d7ef94cc05389acabf280ee4ce4d22cd
|
@ -0,0 +1,11 @@
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\bin\Debug\netcoreapp2.0\List-Example.deps.json
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\bin\Debug\netcoreapp2.0\List-Example.runtimeconfig.json
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\bin\Debug\netcoreapp2.0\List-Example.runtimeconfig.dev.json
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\bin\Debug\netcoreapp2.0\List-Example.dll
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\bin\Debug\netcoreapp2.0\List-Example.pdb
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.csprojResolveAssemblyReference.cache
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.csproj.CoreCompileInputs.cache
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.AssemblyInfoInputs.cache
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.AssemblyInfo.cs
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.dll
|
||||
C:\Users\hasnaz\source\repos\List-Example\List-Example\obj\Debug\netcoreapp2.0\List-Example.pdb
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,5 @@
|
||||
{
|
||||
"version": 1,
|
||||
"dgSpecHash": "fct04RuuaeXa29ClToU94zrbLoszze4llLCB3JKriz90rtsW7houIVnotFgkomcV4mHRMG3hsb9C980ii38ITg==",
|
||||
"success": true
|
||||
}
|
@ -0,0 +1,69 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj",
|
||||
"projectName": "List-Example",
|
||||
"projectPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj",
|
||||
"packagesPath": "C:\\Users\\phils\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\phils\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.0": {
|
||||
"targetAlias": "netcoreapp2.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.0": {
|
||||
"targetAlias": "netcoreapp2.0",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.0, )",
|
||||
"autoReferenced": true
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\phils\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\phils\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.props" Condition="Exists('$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.props')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.0\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.netcore.app\2.0.0\build\netcoreapp2.0\Microsoft.NETCore.App.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
731
List-Example2/List-Example/List-Example/obj/project.assets.json
Normal file
731
List-Example2/List-Example/List-Example/obj/project.assets.json
Normal file
@ -0,0 +1,731 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v2.0": {
|
||||
"Microsoft.NETCore.App/2.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy": "2.0.0",
|
||||
"Microsoft.NETCore.Platforms": "2.0.0",
|
||||
"NETStandard.Library": "2.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netcoreapp2.0/Microsoft.CSharp.dll": {},
|
||||
"ref/netcoreapp2.0/Microsoft.VisualBasic.dll": {},
|
||||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.AppContext.dll": {},
|
||||
"ref/netcoreapp2.0/System.Buffers.dll": {},
|
||||
"ref/netcoreapp2.0/System.Collections.Concurrent.dll": {},
|
||||
"ref/netcoreapp2.0/System.Collections.Immutable.dll": {},
|
||||
"ref/netcoreapp2.0/System.Collections.NonGeneric.dll": {},
|
||||
"ref/netcoreapp2.0/System.Collections.Specialized.dll": {},
|
||||
"ref/netcoreapp2.0/System.Collections.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Composition.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll": {},
|
||||
"ref/netcoreapp2.0/System.ComponentModel.dll": {},
|
||||
"ref/netcoreapp2.0/System.Configuration.dll": {},
|
||||
"ref/netcoreapp2.0/System.Console.dll": {},
|
||||
"ref/netcoreapp2.0/System.Core.dll": {},
|
||||
"ref/netcoreapp2.0/System.Data.Common.dll": {},
|
||||
"ref/netcoreapp2.0/System.Data.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Debug.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Process.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tools.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll": {},
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.dll": {},
|
||||
"ref/netcoreapp2.0/System.Drawing.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.Drawing.dll": {},
|
||||
"ref/netcoreapp2.0/System.Dynamic.Runtime.dll": {},
|
||||
"ref/netcoreapp2.0/System.Globalization.Calendars.dll": {},
|
||||
"ref/netcoreapp2.0/System.Globalization.Extensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Globalization.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.Compression.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.Pipes.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll": {},
|
||||
"ref/netcoreapp2.0/System.IO.dll": {},
|
||||
"ref/netcoreapp2.0/System.Linq.Expressions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Linq.Parallel.dll": {},
|
||||
"ref/netcoreapp2.0/System.Linq.Queryable.dll": {},
|
||||
"ref/netcoreapp2.0/System.Linq.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Http.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.HttpListener.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Mail.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.NameResolution.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.NetworkInformation.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Ping.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Requests.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Security.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.ServicePoint.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.Sockets.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.WebClient.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.WebProxy.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.dll": {},
|
||||
"ref/netcoreapp2.0/System.Net.dll": {},
|
||||
"ref/netcoreapp2.0/System.Numerics.Vectors.dll": {},
|
||||
"ref/netcoreapp2.0/System.Numerics.dll": {},
|
||||
"ref/netcoreapp2.0/System.ObjectModel.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Extensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Metadata.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Reflection.dll": {},
|
||||
"ref/netcoreapp2.0/System.Resources.Reader.dll": {},
|
||||
"ref/netcoreapp2.0/System.Resources.ResourceManager.dll": {},
|
||||
"ref/netcoreapp2.0/System.Resources.Writer.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Extensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Handles.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Loader.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Numerics.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.dll": {},
|
||||
"ref/netcoreapp2.0/System.Runtime.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Claims.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.Principal.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.SecureString.dll": {},
|
||||
"ref/netcoreapp2.0/System.Security.dll": {},
|
||||
"ref/netcoreapp2.0/System.ServiceModel.Web.dll": {},
|
||||
"ref/netcoreapp2.0/System.ServiceProcess.dll": {},
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.dll": {},
|
||||
"ref/netcoreapp2.0/System.Text.RegularExpressions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Overlapped.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Thread.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.ThreadPool.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.Timer.dll": {},
|
||||
"ref/netcoreapp2.0/System.Threading.dll": {},
|
||||
"ref/netcoreapp2.0/System.Transactions.Local.dll": {},
|
||||
"ref/netcoreapp2.0/System.Transactions.dll": {},
|
||||
"ref/netcoreapp2.0/System.ValueTuple.dll": {},
|
||||
"ref/netcoreapp2.0/System.Web.HttpUtility.dll": {},
|
||||
"ref/netcoreapp2.0/System.Web.dll": {},
|
||||
"ref/netcoreapp2.0/System.Windows.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.Linq.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.Serialization.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.XDocument.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.XmlDocument.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.dll": {},
|
||||
"ref/netcoreapp2.0/System.Xml.dll": {},
|
||||
"ref/netcoreapp2.0/System.dll": {},
|
||||
"ref/netcoreapp2.0/WindowsBase.dll": {},
|
||||
"ref/netcoreapp2.0/mscorlib.dll": {},
|
||||
"ref/netcoreapp2.0/netstandard.dll": {}
|
||||
},
|
||||
"build": {
|
||||
"build/netcoreapp2.0/Microsoft.NETCore.App.props": {},
|
||||
"build/netcoreapp2.0/Microsoft.NETCore.App.targets": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.DotNetAppHost/2.0.0": {
|
||||
"type": "package"
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetHostResolver": "2.0.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostResolver/2.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.DotNetAppHost": "2.0.0"
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"NETStandard.Library/2.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "1.1.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"build": {
|
||||
"build/netstandard2.0/NETStandard.Library.targets": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETCore.App/2.0.0": {
|
||||
"sha512": "/mzXF+UtZef+VpzzN88EpvFq5U6z4rj54ZMq/J968H6pcvyLOmcupmTRpJ3CJm8ILoCGh9WI7qpDdiKtuzswrQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.app/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"Microsoft.NETCore.App.versions.txt",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"build/netcoreapp2.0/Microsoft.NETCore.App.PlatformManifest.txt",
|
||||
"build/netcoreapp2.0/Microsoft.NETCore.App.props",
|
||||
"build/netcoreapp2.0/Microsoft.NETCore.App.targets",
|
||||
"microsoft.netcore.app.2.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.app.nuspec",
|
||||
"ref/netcoreapp/_._",
|
||||
"ref/netcoreapp2.0/Microsoft.CSharp.dll",
|
||||
"ref/netcoreapp2.0/Microsoft.CSharp.xml",
|
||||
"ref/netcoreapp2.0/Microsoft.VisualBasic.dll",
|
||||
"ref/netcoreapp2.0/Microsoft.VisualBasic.xml",
|
||||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.dll",
|
||||
"ref/netcoreapp2.0/Microsoft.Win32.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.AppContext.dll",
|
||||
"ref/netcoreapp2.0/System.AppContext.xml",
|
||||
"ref/netcoreapp2.0/System.Buffers.dll",
|
||||
"ref/netcoreapp2.0/System.Buffers.xml",
|
||||
"ref/netcoreapp2.0/System.Collections.Concurrent.dll",
|
||||
"ref/netcoreapp2.0/System.Collections.Concurrent.xml",
|
||||
"ref/netcoreapp2.0/System.Collections.Immutable.dll",
|
||||
"ref/netcoreapp2.0/System.Collections.Immutable.xml",
|
||||
"ref/netcoreapp2.0/System.Collections.NonGeneric.dll",
|
||||
"ref/netcoreapp2.0/System.Collections.NonGeneric.xml",
|
||||
"ref/netcoreapp2.0/System.Collections.Specialized.dll",
|
||||
"ref/netcoreapp2.0/System.Collections.Specialized.xml",
|
||||
"ref/netcoreapp2.0/System.Collections.dll",
|
||||
"ref/netcoreapp2.0/System.Collections.xml",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Annotations.xml",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Composition.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.DataAnnotations.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.EventBasedAsync.xml",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.TypeConverter.xml",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.dll",
|
||||
"ref/netcoreapp2.0/System.ComponentModel.xml",
|
||||
"ref/netcoreapp2.0/System.Configuration.dll",
|
||||
"ref/netcoreapp2.0/System.Console.dll",
|
||||
"ref/netcoreapp2.0/System.Console.xml",
|
||||
"ref/netcoreapp2.0/System.Core.dll",
|
||||
"ref/netcoreapp2.0/System.Data.Common.dll",
|
||||
"ref/netcoreapp2.0/System.Data.Common.xml",
|
||||
"ref/netcoreapp2.0/System.Data.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Contracts.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Debug.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Debug.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.DiagnosticSource.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.FileVersionInfo.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Process.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Process.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.StackTrace.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TextWriterTraceListener.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tools.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tools.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.TraceSource.xml",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.dll",
|
||||
"ref/netcoreapp2.0/System.Diagnostics.Tracing.xml",
|
||||
"ref/netcoreapp2.0/System.Drawing.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.Drawing.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.Drawing.dll",
|
||||
"ref/netcoreapp2.0/System.Dynamic.Runtime.dll",
|
||||
"ref/netcoreapp2.0/System.Dynamic.Runtime.xml",
|
||||
"ref/netcoreapp2.0/System.Globalization.Calendars.dll",
|
||||
"ref/netcoreapp2.0/System.Globalization.Calendars.xml",
|
||||
"ref/netcoreapp2.0/System.Globalization.Extensions.dll",
|
||||
"ref/netcoreapp2.0/System.Globalization.Extensions.xml",
|
||||
"ref/netcoreapp2.0/System.Globalization.dll",
|
||||
"ref/netcoreapp2.0/System.Globalization.xml",
|
||||
"ref/netcoreapp2.0/System.IO.Compression.FileSystem.dll",
|
||||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.dll",
|
||||
"ref/netcoreapp2.0/System.IO.Compression.ZipFile.xml",
|
||||
"ref/netcoreapp2.0/System.IO.Compression.dll",
|
||||
"ref/netcoreapp2.0/System.IO.Compression.xml",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.dll",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.DriveInfo.xml",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.dll",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.Watcher.xml",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.dll",
|
||||
"ref/netcoreapp2.0/System.IO.FileSystem.xml",
|
||||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.dll",
|
||||
"ref/netcoreapp2.0/System.IO.IsolatedStorage.xml",
|
||||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.dll",
|
||||
"ref/netcoreapp2.0/System.IO.MemoryMappedFiles.xml",
|
||||
"ref/netcoreapp2.0/System.IO.Pipes.dll",
|
||||
"ref/netcoreapp2.0/System.IO.Pipes.xml",
|
||||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.dll",
|
||||
"ref/netcoreapp2.0/System.IO.UnmanagedMemoryStream.xml",
|
||||
"ref/netcoreapp2.0/System.IO.dll",
|
||||
"ref/netcoreapp2.0/System.IO.xml",
|
||||
"ref/netcoreapp2.0/System.Linq.Expressions.dll",
|
||||
"ref/netcoreapp2.0/System.Linq.Expressions.xml",
|
||||
"ref/netcoreapp2.0/System.Linq.Parallel.dll",
|
||||
"ref/netcoreapp2.0/System.Linq.Parallel.xml",
|
||||
"ref/netcoreapp2.0/System.Linq.Queryable.dll",
|
||||
"ref/netcoreapp2.0/System.Linq.Queryable.xml",
|
||||
"ref/netcoreapp2.0/System.Linq.dll",
|
||||
"ref/netcoreapp2.0/System.Linq.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Http.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Http.xml",
|
||||
"ref/netcoreapp2.0/System.Net.HttpListener.dll",
|
||||
"ref/netcoreapp2.0/System.Net.HttpListener.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Mail.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Mail.xml",
|
||||
"ref/netcoreapp2.0/System.Net.NameResolution.dll",
|
||||
"ref/netcoreapp2.0/System.Net.NameResolution.xml",
|
||||
"ref/netcoreapp2.0/System.Net.NetworkInformation.dll",
|
||||
"ref/netcoreapp2.0/System.Net.NetworkInformation.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Ping.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Ping.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Requests.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Requests.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Security.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Security.xml",
|
||||
"ref/netcoreapp2.0/System.Net.ServicePoint.dll",
|
||||
"ref/netcoreapp2.0/System.Net.ServicePoint.xml",
|
||||
"ref/netcoreapp2.0/System.Net.Sockets.dll",
|
||||
"ref/netcoreapp2.0/System.Net.Sockets.xml",
|
||||
"ref/netcoreapp2.0/System.Net.WebClient.dll",
|
||||
"ref/netcoreapp2.0/System.Net.WebClient.xml",
|
||||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.dll",
|
||||
"ref/netcoreapp2.0/System.Net.WebHeaderCollection.xml",
|
||||
"ref/netcoreapp2.0/System.Net.WebProxy.dll",
|
||||
"ref/netcoreapp2.0/System.Net.WebProxy.xml",
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.dll",
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.Client.xml",
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.dll",
|
||||
"ref/netcoreapp2.0/System.Net.WebSockets.xml",
|
||||
"ref/netcoreapp2.0/System.Net.dll",
|
||||
"ref/netcoreapp2.0/System.Numerics.Vectors.dll",
|
||||
"ref/netcoreapp2.0/System.Numerics.Vectors.xml",
|
||||
"ref/netcoreapp2.0/System.Numerics.dll",
|
||||
"ref/netcoreapp2.0/System.ObjectModel.dll",
|
||||
"ref/netcoreapp2.0/System.ObjectModel.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.DispatchProxy.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.ILGeneration.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.Lightweight.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Emit.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Extensions.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Extensions.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Metadata.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Metadata.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.TypeExtensions.xml",
|
||||
"ref/netcoreapp2.0/System.Reflection.dll",
|
||||
"ref/netcoreapp2.0/System.Reflection.xml",
|
||||
"ref/netcoreapp2.0/System.Resources.Reader.dll",
|
||||
"ref/netcoreapp2.0/System.Resources.Reader.xml",
|
||||
"ref/netcoreapp2.0/System.Resources.ResourceManager.dll",
|
||||
"ref/netcoreapp2.0/System.Resources.ResourceManager.xml",
|
||||
"ref/netcoreapp2.0/System.Resources.Writer.dll",
|
||||
"ref/netcoreapp2.0/System.Resources.Writer.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.CompilerServices.VisualC.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Extensions.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Extensions.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Handles.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Handles.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.RuntimeInformation.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.WindowsRuntime.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.InteropServices.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Loader.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Loader.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Numerics.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Numerics.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Formatters.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Json.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.Xml.xml",
|
||||
"ref/netcoreapp2.0/System.Runtime.Serialization.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.dll",
|
||||
"ref/netcoreapp2.0/System.Runtime.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Claims.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Claims.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Algorithms.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Csp.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Encoding.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Primitives.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.X509Certificates.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Principal.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Principal.xml",
|
||||
"ref/netcoreapp2.0/System.Security.SecureString.dll",
|
||||
"ref/netcoreapp2.0/System.Security.SecureString.xml",
|
||||
"ref/netcoreapp2.0/System.Security.dll",
|
||||
"ref/netcoreapp2.0/System.ServiceModel.Web.dll",
|
||||
"ref/netcoreapp2.0/System.ServiceProcess.dll",
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.dll",
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.Extensions.xml",
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.dll",
|
||||
"ref/netcoreapp2.0/System.Text.Encoding.xml",
|
||||
"ref/netcoreapp2.0/System.Text.RegularExpressions.dll",
|
||||
"ref/netcoreapp2.0/System.Text.RegularExpressions.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Overlapped.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Overlapped.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Dataflow.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Extensions.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.Parallel.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Tasks.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Thread.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Thread.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.ThreadPool.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.ThreadPool.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.Timer.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.Timer.xml",
|
||||
"ref/netcoreapp2.0/System.Threading.dll",
|
||||
"ref/netcoreapp2.0/System.Threading.xml",
|
||||
"ref/netcoreapp2.0/System.Transactions.Local.dll",
|
||||
"ref/netcoreapp2.0/System.Transactions.Local.xml",
|
||||
"ref/netcoreapp2.0/System.Transactions.dll",
|
||||
"ref/netcoreapp2.0/System.ValueTuple.dll",
|
||||
"ref/netcoreapp2.0/System.ValueTuple.xml",
|
||||
"ref/netcoreapp2.0/System.Web.HttpUtility.dll",
|
||||
"ref/netcoreapp2.0/System.Web.HttpUtility.xml",
|
||||
"ref/netcoreapp2.0/System.Web.dll",
|
||||
"ref/netcoreapp2.0/System.Windows.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.Linq.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.ReaderWriter.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.Serialization.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XDocument.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XDocument.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.XDocument.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XPath.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.XmlDocument.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XmlDocument.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.dll",
|
||||
"ref/netcoreapp2.0/System.Xml.XmlSerializer.xml",
|
||||
"ref/netcoreapp2.0/System.Xml.dll",
|
||||
"ref/netcoreapp2.0/System.dll",
|
||||
"ref/netcoreapp2.0/WindowsBase.dll",
|
||||
"ref/netcoreapp2.0/mscorlib.dll",
|
||||
"ref/netcoreapp2.0/netstandard.dll",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetAppHost/2.0.0": {
|
||||
"sha512": "L4GGkcI/Mxl8PKLRpFdGmLb5oI8sGIR05bDTGkzCoamAjdUl1Zhkov2swjEsZvKYT8kkdiz39LtwyGYuCJxm1A==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnetapphost/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnetapphost.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostPolicy/2.0.0": {
|
||||
"sha512": "rm7mMn0A93fwyAwVhbyOCcPuu2hZNL0A0dAur9sNG9pEkONPfCEQeF7m2mC8KpqZO0Ol6tpV5J0AF3HTXT3GXA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnethostpolicy/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnethostpolicy.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.DotNetHostResolver/2.0.0": {
|
||||
"sha512": "uBbjpeSrwsaTCADZCzRk+3aBzNnMqkC4zftJWBsL+Zk+8u+W+/lMb2thM5Y4hiVrv1YQg9t6dKldXzOKkY+pQw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.dotnethostresolver/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.dotnethostresolver.nuspec",
|
||||
"runtime.json"
|
||||
]
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.0.0": {
|
||||
"sha512": "VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.platforms/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"Microsoft.NETCore.Platforms.2.0.0.nupkg.sha512",
|
||||
"Microsoft.NETCore.Platforms.nuspec",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"NETStandard.Library/2.0.0": {
|
||||
"sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==",
|
||||
"type": "package",
|
||||
"path": "netstandard.library/2.0.0",
|
||||
"files": [
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"build/NETStandard.Library.targets",
|
||||
"build/netstandard2.0/NETStandard.Library.targets",
|
||||
"build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.AppContext.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.Concurrent.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.NonGeneric.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.Specialized.dll",
|
||||
"build/netstandard2.0/ref/System.Collections.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.Composition.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll",
|
||||
"build/netstandard2.0/ref/System.ComponentModel.dll",
|
||||
"build/netstandard2.0/ref/System.Console.dll",
|
||||
"build/netstandard2.0/ref/System.Core.dll",
|
||||
"build/netstandard2.0/ref/System.Data.Common.dll",
|
||||
"build/netstandard2.0/ref/System.Data.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Contracts.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Debug.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Process.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Tools.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll",
|
||||
"build/netstandard2.0/ref/System.Diagnostics.Tracing.dll",
|
||||
"build/netstandard2.0/ref/System.Drawing.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Drawing.dll",
|
||||
"build/netstandard2.0/ref/System.Dynamic.Runtime.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.Calendars.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Globalization.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Compression.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll",
|
||||
"build/netstandard2.0/ref/System.IO.FileSystem.dll",
|
||||
"build/netstandard2.0/ref/System.IO.IsolatedStorage.dll",
|
||||
"build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll",
|
||||
"build/netstandard2.0/ref/System.IO.Pipes.dll",
|
||||
"build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll",
|
||||
"build/netstandard2.0/ref/System.IO.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Expressions.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Parallel.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.Queryable.dll",
|
||||
"build/netstandard2.0/ref/System.Linq.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Http.dll",
|
||||
"build/netstandard2.0/ref/System.Net.NameResolution.dll",
|
||||
"build/netstandard2.0/ref/System.Net.NetworkInformation.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Ping.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Requests.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Security.dll",
|
||||
"build/netstandard2.0/ref/System.Net.Sockets.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebSockets.Client.dll",
|
||||
"build/netstandard2.0/ref/System.Net.WebSockets.dll",
|
||||
"build/netstandard2.0/ref/System.Net.dll",
|
||||
"build/netstandard2.0/ref/System.Numerics.dll",
|
||||
"build/netstandard2.0/ref/System.ObjectModel.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Reflection.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.Reader.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.ResourceManager.dll",
|
||||
"build/netstandard2.0/ref/System.Resources.Writer.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Handles.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.InteropServices.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Numerics.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.Serialization.dll",
|
||||
"build/netstandard2.0/ref/System.Runtime.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Claims.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll",
|
||||
"build/netstandard2.0/ref/System.Security.Principal.dll",
|
||||
"build/netstandard2.0/ref/System.Security.SecureString.dll",
|
||||
"build/netstandard2.0/ref/System.ServiceModel.Web.dll",
|
||||
"build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll",
|
||||
"build/netstandard2.0/ref/System.Text.Encoding.dll",
|
||||
"build/netstandard2.0/ref/System.Text.RegularExpressions.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Overlapped.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Tasks.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Thread.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.ThreadPool.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.Timer.dll",
|
||||
"build/netstandard2.0/ref/System.Threading.dll",
|
||||
"build/netstandard2.0/ref/System.Transactions.dll",
|
||||
"build/netstandard2.0/ref/System.ValueTuple.dll",
|
||||
"build/netstandard2.0/ref/System.Web.dll",
|
||||
"build/netstandard2.0/ref/System.Windows.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.Linq.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.ReaderWriter.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.Serialization.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XPath.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XmlDocument.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.XmlSerializer.dll",
|
||||
"build/netstandard2.0/ref/System.Xml.dll",
|
||||
"build/netstandard2.0/ref/System.dll",
|
||||
"build/netstandard2.0/ref/mscorlib.dll",
|
||||
"build/netstandard2.0/ref/netstandard.dll",
|
||||
"build/netstandard2.0/ref/netstandard.xml",
|
||||
"lib/netstandard1.0/_._",
|
||||
"netstandard.library.2.0.0.nupkg.sha512",
|
||||
"netstandard.library.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETCoreApp,Version=v2.0": [
|
||||
"Microsoft.NETCore.App >= 2.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\phils\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj",
|
||||
"projectName": "List-Example",
|
||||
"projectPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj",
|
||||
"packagesPath": "C:\\Users\\phils\\.nuget\\packages\\",
|
||||
"outputPath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\phils\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.0": {
|
||||
"targetAlias": "netcoreapp2.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp2.0": {
|
||||
"targetAlias": "netcoreapp2.0",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.0, )",
|
||||
"autoReferenced": true
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "ObBfWOYa5Qwi0s19GDHVzm9YGXij4Zy0z5Cua3sT/SlYOfmhR0AZq0SPRQqPG25miJjWTFE+dPSJX3uYSzdp7w==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\phils\\git\\Bashir-C-Sharp\\List-Example2\\List-Example\\List-Example\\List-Example.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.app\\2.0.0\\microsoft.netcore.app.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnetapphost\\2.0.0\\microsoft.netcore.dotnetapphost.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnethostpolicy\\2.0.0\\microsoft.netcore.dotnethostpolicy.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.dotnethostresolver\\2.0.0\\microsoft.netcore.dotnethostresolver.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\microsoft.netcore.platforms\\2.0.0\\microsoft.netcore.platforms.2.0.0.nupkg.sha512",
|
||||
"C:\\Users\\phils\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Module4-Assignments/.vs/Module4-Assignments/v17/.futdcache.v1
Normal file
BIN
Module4-Assignments/.vs/Module4-Assignments/v17/.futdcache.v1
Normal file
Binary file not shown.
BIN
Module4-Assignments/.vs/Module4-Assignments/v17/.suo
Normal file
BIN
Module4-Assignments/.vs/Module4-Assignments/v17/.suo
Normal file
Binary file not shown.
@ -7,6 +7,20 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task1", "Task1\Task1.csproj
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task2", "Task2\Task2.csproj", "{0C50AA3F-F49E-403A-A3E2-821336B52E9D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task3", "Task_\Task3.csproj", "{320CDC05-CC76-4733-A2AF-89799476A187}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task4", "Task4\Task4.csproj", "{22556755-9369-4585-AA62-BDB6AFA29F09}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task5", "Task5\Task5.csproj", "{F62337FD-231A-4B83-9F02-0C26D679CEA5}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task7", "Task7\Task7.csproj", "{CA5A5BC0-DC09-4BBC-B3D6-4CC5D7C0940B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task6", "Task6\Task6.csproj", "{556034C7-79D4-48C2-BE94-1118C86F27E3}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task9", "Task8\Task9.csproj", "{9EC9B70B-26B6-43BC-8BC4-364F3A06A98E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Task8_", "Task8_\Task8_.csproj", "{AEB9334D-45A4-46AE-8D03-AB2624D41E71}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@ -21,6 +35,34 @@ Global
|
||||
{0C50AA3F-F49E-403A-A3E2-821336B52E9D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0C50AA3F-F49E-403A-A3E2-821336B52E9D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0C50AA3F-F49E-403A-A3E2-821336B52E9D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{320CDC05-CC76-4733-A2AF-89799476A187}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{320CDC05-CC76-4733-A2AF-89799476A187}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{320CDC05-CC76-4733-A2AF-89799476A187}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{320CDC05-CC76-4733-A2AF-89799476A187}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{22556755-9369-4585-AA62-BDB6AFA29F09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{22556755-9369-4585-AA62-BDB6AFA29F09}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{22556755-9369-4585-AA62-BDB6AFA29F09}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{22556755-9369-4585-AA62-BDB6AFA29F09}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{F62337FD-231A-4B83-9F02-0C26D679CEA5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{F62337FD-231A-4B83-9F02-0C26D679CEA5}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{F62337FD-231A-4B83-9F02-0C26D679CEA5}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F62337FD-231A-4B83-9F02-0C26D679CEA5}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{CA5A5BC0-DC09-4BBC-B3D6-4CC5D7C0940B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{CA5A5BC0-DC09-4BBC-B3D6-4CC5D7C0940B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{CA5A5BC0-DC09-4BBC-B3D6-4CC5D7C0940B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{CA5A5BC0-DC09-4BBC-B3D6-4CC5D7C0940B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{556034C7-79D4-48C2-BE94-1118C86F27E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{556034C7-79D4-48C2-BE94-1118C86F27E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{556034C7-79D4-48C2-BE94-1118C86F27E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{556034C7-79D4-48C2-BE94-1118C86F27E3}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{9EC9B70B-26B6-43BC-8BC4-364F3A06A98E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{9EC9B70B-26B6-43BC-8BC4-364F3A06A98E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{9EC9B70B-26B6-43BC-8BC4-364F3A06A98E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{9EC9B70B-26B6-43BC-8BC4-364F3A06A98E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{AEB9334D-45A4-46AE-8D03-AB2624D41E71}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{AEB9334D-45A4-46AE-8D03-AB2624D41E71}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{AEB9334D-45A4-46AE-8D03-AB2624D41E71}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{AEB9334D-45A4-46AE-8D03-AB2624D41E71}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
Binary file not shown.
Binary file not shown.
2
Module4-Assignments/Task3/Program.cs
Normal file
2
Module4-Assignments/Task3/Program.cs
Normal file
@ -0,0 +1,2 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
Console.WriteLine("Hello, World!");
|
10
Module4-Assignments/Task3/Task3.csproj
Normal file
10
Module4-Assignments/Task3/Task3.csproj
Normal file
@ -0,0 +1,10 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
|
@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
// Runtime Version:4.0.30319.42000
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Task3")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Task3")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Task3")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
@ -0,0 +1 @@
|
||||
ef5db4a2d8c9c628734a6c46cff1efa454372b8f
|
@ -0,0 +1,10 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net6.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Task3
|
||||
build_property.ProjectDir = C:\Users\phils\git\Bashir-C-Sharp\Module4-Assignments\Task3\
|
@ -0,0 +1,8 @@
|
||||
// <auto-generated/>
|
||||
global using global::System;
|
||||
global using global::System.Collections.Generic;
|
||||
global using global::System.IO;
|
||||
global using global::System.Linq;
|
||||
global using global::System.Net.Http;
|
||||
global using global::System.Threading;
|
||||
global using global::System.Threading.Tasks;
|
BIN
Module4-Assignments/Task3/obj/Debug/net6.0/Task3.assets.cache
Normal file
BIN
Module4-Assignments/Task3/obj/Debug/net6.0/Task3.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user