Commit a50750dd authored by Yiğit Yusuf Çılgı's avatar Yiğit Yusuf Çılgı
Browse files

Initial commit

parents
using System;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Metadata.Internal;
public class LocationContext : DbContext
{
public DbSet<Cm_CustomerLocations> CustomerLocations { get; set; }
public DbSet<Cm_Customer> Customers { get; set; }
}
\ No newline at end of file
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.3" />
<PackageReference Include="NEST" Version="6.5.1" />
<PackageReference Include="System.Data.SqlClient" Version="4.6.0" />
</ItemGroup>
</Project>
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("Cm_Customer", Schema = "dbo")]
public class Cm_Customer
{
public Cm_Customer()
{
CmCustomerLocations = new HashSet<Cm_CustomerLocations>();
}
[Key]
public int Id { get; set; }
public string Name { get; set; }
public virtual ICollection<Cm_CustomerLocations> CmCustomerLocations { get; set; }
}
\ No newline at end of file
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("Cm_CustomerLocations", Schema = "dbo")]
public class Cm_CustomerLocations
{
public Cm_CustomerLocations()
{
}
[Key]
public int Id { get; set; }
public string Name { get; set; }
public int CustomerId { get; set; }
public string Longitude { get; set; }
public string Latitude { get; set; }
public bool IsDeleted { get; set; }
public virtual Cm_Customer Customer { get; set; }
}
\ No newline at end of file
using Nest;
public class CustomerModel
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public int LocationId { get; set; }
public string LocationName { get; set; }
public GeoLocation Location { get; set; }
}
public class Message
{
public GeoLocation Location { get; set; }
}
\ No newline at end of file
using System;
using System.Data;
using System.Linq;
using Microsoft.EntityFrameworkCore;
using Nest;
using System.Data.SqlClient;
namespace ElasticService
{
class Program
{
private static readonly ConnectionSettings connSettings =
new ConnectionSettings(new Uri("http://localhost:9200/"))
.DefaultIndex("customerlocation")
.DefaultMappingFor<CustomerModel>(m => m
.IndexName("customerlocation")
);
private static readonly ElasticClient elasticClient = new ElasticClient(connSettings);
// private static IDbConnection _db = new SqlConnection("");
static void Main(string[] args)
{
string sqlString = "Data Source=DESKTOP-MD3HK8G;Initial Catalog=Customer;User ID=root;Password=root;";
string qString = "select cs.Name,c1.Latitude,c1.Longitude from Cm_Customer as cs inner join [dbo].[Cm_CustomerLocations] as c1 on cs.id = c1.id";
SqlConnection connection = new SqlConnection(sqlString);
SqlCommand command = connection.CreateCommand();
command.CommandText = qString;
connection.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
Console.WriteLine(reader.GetString(0)+ " " +reader.GetFloat(1)+ " " +reader.GetFloat(2));
}
reader.Close();
connection.Close();
//Indexing();
// Search();
}
public static void Search()
{
var geoResult = elasticClient.Search<CustomerModel>(s => s.From(0).Size(10000).Query(query => query.Bool(b => b.Filter(filter => filter
.GeoDistance(geo => geo
.Field(f => f.Location)
.Distance("250km").Location(41, 28)
.DistanceType(GeoDistanceType.Plane)
))
)));
foreach (var customer in geoResult.Documents)
{
Console.WriteLine(customer.CustomerName + ":" + customer.LocationName + " = " + GetDistanceFromLatLonInKm(41, 28, customer.Location.Latitude, customer.Location.Longitude).ToString() + "km");
}
Console.ReadLine();
}
public static void Indexing()
{
using (LocationContext dbContext = new LocationContext())
{
var customerLocationList = dbContext.CustomerLocations.Where(s => !s.IsDeleted)
.Include(s => s.Customer)
.Select(s => new CustomerModel
{
CustomerId = s.CustomerId,
CustomerName = s.Customer.Name,
LocationId = s.Id,
LocationName = s.Name,
Location = new GeoLocation(Convert.ToDouble(s.Latitude), Convert.ToDouble(s.Longitude))
}).ToList();
var defaultIndex = "customerlocation";
var client = new ElasticClient();
if (client.IndexExists(defaultIndex).Exists)
{
client.DeleteIndex(defaultIndex);
}
if (!elasticClient.IndexExists("location_alias").Exists)
{
client.CreateIndex(defaultIndex, c => c
.Mappings(m => m
.Map<CustomerModel>(mm => mm
.AutoMap()
)
).Aliases(a => a.Alias("location_alias"))
);
}
// Insert Data Classic
// for (int i = 0; i < customerLocationList.Count; i++)
// {
// var item = customerLocationList[i];
// elasticClient.Index<CustomerModel>(item, idx => idx.Index("customerlocation").Id(item.LocationId));
// }
// Bulk Insert
var bulkIndexer = new BulkDescriptor();
foreach (var document in customerLocationList)
{
bulkIndexer.Index<CustomerModel>(i => i
.Document(document)
.Id(document.LocationId)
.Index("customerlocation"));
}
elasticClient.Bulk(bulkIndexer);
}
}
public static double GetDistanceFromLatLonInKm(double lat1, double lon1, double lat2, double lon2)
{
var R = 6371; //km cinsinden
var dLat = deg2rad(lat2 - lat1);
var dLon = deg2rad(lon2 - lon1);
var a =
Math.Sin(dLat / 2) * Math.Sin(dLat / 2) +
Math.Cos(deg2rad(lat1)) * Math.Cos(deg2rad(lat2)) *
Math.Sin(dLon / 2) * Math.Sin(dLon / 2)
;
var c = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
var d = R * c; // km cinsinden uzaklık
return d;
}
public static double deg2rad(double deg)
{
return deg * (Math.PI / 180);
}
}
}
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.2",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v2.2": {
"ElasticService/1.0.0": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "2.2.3",
"Microsoft.EntityFrameworkCore.Design": "2.2.3",
"Microsoft.EntityFrameworkCore.SqlServer": "2.2.3",
"NEST": "6.5.1",
"System.Data.SqlClient": "4.6.0"
},
"runtime": {
"ElasticService.dll": {}
}
},
"Elasticsearch.Net/6.5.1": {
"runtime": {
"lib/netstandard2.0/Elasticsearch.Net.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.5.1.0"
}
}
},
"Microsoft.CSharp/4.5.0": {},
"Microsoft.EntityFrameworkCore/2.2.3": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "2.2.3",
"Microsoft.EntityFrameworkCore.Analyzers": "2.2.3",
"Microsoft.Extensions.Caching.Memory": "2.2.0",
"Microsoft.Extensions.DependencyInjection": "2.2.0",
"Microsoft.Extensions.Logging": "2.2.0",
"Remotion.Linq": "2.2.0",
"System.Collections.Immutable": "1.5.0",
"System.ComponentModel.Annotations": "4.5.0",
"System.Diagnostics.DiagnosticSource": "4.5.0",
"System.Interactive.Async": "3.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.19047"
}
}
},
"Microsoft.EntityFrameworkCore.Abstractions/2.2.3": {
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.19047"
}
}
},
"Microsoft.EntityFrameworkCore.Analyzers/2.2.3": {},
"Microsoft.EntityFrameworkCore.Design/2.2.3": {
"dependencies": {
"Microsoft.CSharp": "4.5.0",
"Microsoft.EntityFrameworkCore.Relational": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Design.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.19047"
}
}
},
"Microsoft.EntityFrameworkCore.Relational/2.2.3": {
"dependencies": {
"Microsoft.EntityFrameworkCore": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.19047"
}
}
},
"Microsoft.EntityFrameworkCore.SqlServer/2.2.3": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Relational": "2.2.3",
"System.Data.SqlClient": "4.6.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.SqlServer.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.19047"
}
}
},
"Microsoft.Extensions.Caching.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Caching.Memory/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Caching.Abstractions": "2.2.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
"Microsoft.Extensions.Options": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Configuration/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Abstractions": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Primitives": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Configuration": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.DependencyInjection/2.2.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0"
},
"runtime": {
"lib/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Logging/2.2.0": {
"dependencies": {
"Microsoft.Extensions.Configuration.Binder": "2.2.0",
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
"Microsoft.Extensions.Logging.Abstractions": "2.2.0",
"Microsoft.Extensions.Options": "2.2.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Logging.Abstractions/2.2.0": {
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Options/2.2.0": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.2.0",
"Microsoft.Extensions.Primitives": "2.2.0",
"System.ComponentModel.Annotations": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Options.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Extensions.Primitives/2.2.0": {
"dependencies": {
"System.Memory": "4.5.1",
"System.Runtime.CompilerServices.Unsafe": "4.5.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.18315"
}
}
},
"Microsoft.Win32.Registry/4.5.0": {
"dependencies": {
"System.Security.AccessControl": "4.5.0",
"System.Security.Principal.Windows": "4.5.0"
}
},
"NEST/6.5.1": {
"dependencies": {
"Elasticsearch.Net": "6.5.1"
},
"runtime": {
"lib/netstandard2.0/Nest.dll": {
"assemblyVersion": "6.0.0.0",
"fileVersion": "6.5.1.0"
}
}
},
"Remotion.Linq/2.2.0": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Linq.Queryable": "4.0.1",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
},
"runtime": {
"lib/netstandard1.0/Remotion.Linq.dll": {
"assemblyVersion": "2.2.0.0",
"fileVersion": "2.2.0.30000"
}
}
},
"runtime.native.System.Data.SqlClient.sni/4.5.0": {
"dependencies": {
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0",
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0"
}
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-arm64/native/sni.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-x64/native/sni.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"runtimeTargets": {
"runtimes/win-x86/native/sni.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "4.6.25512.1"
}
}
},
"System.Collections/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Collections.Immutable/1.5.0": {},
"System.ComponentModel.Annotations/4.5.0": {},
"System.Data.SqlClient/4.6.0": {
"dependencies": {
"Microsoft.Win32.Registry": "4.5.0",
"System.Security.Principal.Windows": "4.5.0",
"System.Text.Encoding.CodePages": "4.5.0",
"runtime.native.System.Data.SqlClient.sni": "4.5.0"
},
"runtime": {
"lib/netcoreapp2.1/System.Data.SqlClient.dll": {
"assemblyVersion": "4.5.0.0",
"fileVersion": "4.6.27110.4"
}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "4.5.0.0",
"fileVersion": "4.6.27110.4"
},
"runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.5.0.0",
"fileVersion": "4.6.27110.4"
}
}
},
"System.Diagnostics.Debug/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Diagnostics.DiagnosticSource/4.5.0": {},
"System.Globalization/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Interactive.Async/3.2.0": {
"runtime": {
"lib/netstandard2.0/System.Interactive.Async.dll": {
"assemblyVersion": "3.2.0.0",
"fileVersion": "3.2.0.702"
}
}
},
"System.IO/4.1.0": {
"dependencies": {
"System.Runtime": "4.1.0",
"System.Text.Encoding": "4.0.11",
"System.Threading.Tasks": "4.0.11"
}
},
"System.Linq/4.1.0": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0"
}
},
"System.Linq.Expressions/4.1.0": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Globalization": "4.0.11",
"System.IO": "4.1.0",
"System.Linq": "4.1.0",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Emit": "4.0.1",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Emit.Lightweight": "4.0.1",
"System.Reflection.Extensions": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Reflection.TypeExtensions": "4.1.0",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Runtime.Extensions": "4.1.0",
"System.Threading": "4.0.11"
}
},
"System.Linq.Queryable/4.0.1": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0"
}
},
"System.Memory/4.5.1": {},
"System.ObjectModel/4.0.12": {
"dependencies": {
"System.Collections": "4.0.11",
"System.Diagnostics.Debug": "4.0.11",
"System.Resources.ResourceManager": "4.0.1",
"System.Runtime": "4.1.0",
"System.Threading": "4.0.11"
}
},
"System.Reflection/4.1.0": {
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
}
},
"System.Reflection.Emit/4.0.1": {
"dependencies": {
"System.IO": "4.1.0",
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
}
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
}
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"dependencies": {
"System.Reflection": "4.1.0",
"System.Reflection.Emit.ILGeneration": "4.0.1",
"System.Reflection.Primitives": "4.0.1",
"System.Runtime": "4.1.0"
}
},
"System.Reflection.Extensions/4.0.1": {
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
}
},
"System.Reflection.Primitives/4.0.1": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Reflection.TypeExtensions/4.1.0": {
"dependencies": {
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
}
},
"System.Resources.ResourceManager/4.0.1": {
"dependencies": {
"System.Globalization": "4.0.11",
"System.Reflection": "4.1.0",
"System.Runtime": "4.1.0"
}
},
"System.Runtime/4.1.0": {},
"System.Runtime.CompilerServices.Unsafe/4.5.1": {
"runtime": {
"lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
"assemblyVersion": "4.0.4.0",
"fileVersion": "0.0.0.0"
}
}
},
"System.Runtime.Extensions/4.1.0": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Security.AccessControl/4.5.0": {
"dependencies": {
"System.Security.Principal.Windows": "4.5.0"
}
},
"System.Security.Principal.Windows/4.5.0": {},
"System.Text.Encoding/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0"
}
},
"System.Text.Encoding.CodePages/4.5.0": {
"dependencies": {
"System.Runtime.CompilerServices.Unsafe": "4.5.1"
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "4.1.1.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.1.1.0",
"fileVersion": "4.6.26515.6"
}
}
},
"System.Threading/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0",
"System.Threading.Tasks": "4.0.11"
}
},
"System.Threading.Tasks/4.0.11": {
"dependencies": {
"System.Runtime": "4.1.0"
}
}
}
},
"libraries": {
"ElasticService/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Elasticsearch.Net/6.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-N3B4ignGMsWZEcofG3NEXLzuYAn2gZo+x0JJe7wMKuEtkJaB5A3HBKz4z3gK+xVfmbBl0KkHfe7+byvS2udj/w==",
"path": "elasticsearch.net/6.5.1",
"hashPath": "elasticsearch.net.6.5.1.nupkg.sha512"
},
"Microsoft.CSharp/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"path": "microsoft.csharp/4.5.0",
"hashPath": "microsoft.csharp.4.5.0.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GUiOOYMUiaXK6G/RqgBgI2NsHJLKSFrHuOVnpXQrC7VgmFGG7sFyQmh/j5cMJT5XeGCymNY3wnDlewZ1GEFYJg==",
"path": "microsoft.entityframeworkcore/2.2.3",
"hashPath": "microsoft.entityframeworkcore.2.2.3.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Abstractions/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-89dSjkZmLVnsbIoiQyMDdMBakTrgiY+1mfu4MRfWRX1ysSx+nGfcPPZ8QfRKLq+i7EIqylUNVJSHi7bHTwL9LQ==",
"path": "microsoft.entityframeworkcore.abstractions/2.2.3",
"hashPath": "microsoft.entityframeworkcore.abstractions.2.2.3.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Analyzers/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+7DQd8xaq1kh2szcVkMJAN4/TvjFt5gK4fIsRHcPvZrc10p9Rhhitd44xGTGs9e0RRVijz0+OVI7jPvKaVfwAQ==",
"path": "microsoft.entityframeworkcore.analyzers/2.2.3",
"hashPath": "microsoft.entityframeworkcore.analyzers.2.2.3.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Design/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EdKCRSAlVF0PLXl1vi5ojRh0jRhSDywPYN9+0UpKOBZ53Vpa+8Qyio6p9WMJNqp+LkXS5fRQshHuiljFTVGY/g==",
"path": "microsoft.entityframeworkcore.design/2.2.3",
"hashPath": "microsoft.entityframeworkcore.design.2.2.3.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.Relational/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gwB+FOVqI+lwTl9MCtH5iI6Zfes0JlCDBuxCQ3ngLMzSqFFzgLANmmgA/cl+D2WOZ01TXivpRSzNMrnDfOJljA==",
"path": "microsoft.entityframeworkcore.relational/2.2.3",
"hashPath": "microsoft.entityframeworkcore.relational.2.2.3.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore.SqlServer/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-O8eGpT3wDfMz1YHf0h5ph3eW+bkcoqaptqztcNxWyfZ76UJw4j8ohqj7leaDbuZh2W3HIK4O89N3A4a8pHNQ9g==",
"path": "microsoft.entityframeworkcore.sqlserver/2.2.3",
"hashPath": "microsoft.entityframeworkcore.sqlserver.2.2.3.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-spsJkYo8gGJapaxTSQFN/wqA+ghpJMLwB4ZyTB+fSdpd7AmMFP/YSpIcGmczcw4KggpxLGhLk7lCkSIlgvHaqQ==",
"path": "microsoft.extensions.caching.abstractions/2.2.0",
"hashPath": "microsoft.extensions.caching.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Caching.Memory/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-yFs44RzB2Pzfoj4uk+mEz3MTTQKyeWb8gDhv5GyVPfHnLv0eQhGwzbw/5WpxAcVyOgG/H3/0ULY6g0/7/B+r7w==",
"path": "microsoft.extensions.caching.memory/2.2.0",
"hashPath": "microsoft.extensions.caching.memory.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-nOP8R1mVb/6mZtm2qgAJXn/LFm/2kMjHDAg/QJLFG6CuWYJtaD3p1BwQhufBVvRzL9ceJ/xF0SQ0qsI2GkDQAA==",
"path": "microsoft.extensions.configuration/2.2.0",
"hashPath": "microsoft.extensions.configuration.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-65MrmXCziWaQFrI0UHkQbesrX5wTwf9XPjY5yFm/VkgJKFJ5gqvXRoXjIZcf2wLi5ZlwGz/oMYfyURVCWbM5iw==",
"path": "microsoft.extensions.configuration.abstractions/2.2.0",
"hashPath": "microsoft.extensions.configuration.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Configuration.Binder/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vJ9xvOZCnUAIHcGC3SU35r3HKmHTVIeHzo6u/qzlHAqD8m6xv92MLin4oJntTvkpKxVX3vI1GFFkIQtU3AdlsQ==",
"path": "microsoft.extensions.configuration.binder/2.2.0",
"hashPath": "microsoft.extensions.configuration.binder.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-MZtBIwfDFork5vfjpJdG5g8wuJFt7d/y3LOSVVtDK/76wlbtz6cjltfKHqLx2TKVqTj5/c41t77m1+h20zqtPA==",
"path": "microsoft.extensions.dependencyinjection/2.2.0",
"hashPath": "microsoft.extensions.dependencyinjection.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.DependencyInjection.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-f9hstgjVmr6rmrfGSpfsVOl2irKAgr1QjrSi3FgnS7kulxband50f2brRLwySAQTADPZeTdow0mpSMcoAdadCw==",
"path": "microsoft.extensions.dependencyinjection.abstractions/2.2.0",
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Nxqhadc9FCmFHzU+fz3oc8sFlE6IadViYg8dfUdGzJZ2JUxnCsRghBhhOWdM4B2zSZqEc+0BjliBh/oNdRZuig==",
"path": "microsoft.extensions.logging/2.2.0",
"hashPath": "microsoft.extensions.logging.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Logging.Abstractions/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-B2WqEox8o+4KUOpL7rZPyh6qYjik8tHi2tN8Z9jZkHzED8ElYgZa/h6K+xliB435SqUcWT290Fr2aa8BtZjn8A==",
"path": "microsoft.extensions.logging.abstractions/2.2.0",
"hashPath": "microsoft.extensions.logging.abstractions.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Options/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UpZLNLBpIZ0GTebShui7xXYh6DmBHjWM8NxGxZbdQh/bPZ5e6YswqI+bru6BnEL5eWiOdodsXtEz3FROcgi/qg==",
"path": "microsoft.extensions.options/2.2.0",
"hashPath": "microsoft.extensions.options.2.2.0.nupkg.sha512"
},
"Microsoft.Extensions.Primitives/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-azyQtqbm4fSaDzZHD/J+V6oWMFaf2tWP4WEGIYePLCMw3+b2RQdj9ybgbQyjCshcitQKQ4lEDOZjmSlTTrHxUg==",
"path": "microsoft.extensions.primitives/2.2.0",
"hashPath": "microsoft.extensions.primitives.2.2.0.nupkg.sha512"
},
"Microsoft.Win32.Registry/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
"path": "microsoft.win32.registry/4.5.0",
"hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
},
"NEST/6.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-ZKibeDRBNO1gA+iS/jH0vhrVuGn8aYX++1SGOo2SLBEyjrLEEZDiRjfZa4pgLoR93c5RZCycFxO/M0blRhQyhA==",
"path": "nest/6.5.1",
"hashPath": "nest.6.5.1.nupkg.sha512"
},
"Remotion.Linq/2.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fK/76UmpC0FXBlGDFVPLJHQlDLYnGC+XY3eoDgCgbtrhi0vzbXDQ3n/IYHhqSKqXQfGw/u04A1drWs7rFVkRjw==",
"path": "remotion.linq/2.2.0",
"hashPath": "remotion.linq.2.2.0.nupkg.sha512"
},
"runtime.native.System.Data.SqlClient.sni/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AJfX7owAAkMjWQYhoml5IBfXh8UyYPjktn8pK0BFGAdKgBS7HqMz1fw5vdzfZUWfhtTPDGCjgNttt46ZyEmSjg==",
"path": "runtime.native.system.data.sqlclient.sni/4.5.0",
"hashPath": "runtime.native.system.data.sqlclient.sni.4.5.0.nupkg.sha512"
},
"runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==",
"path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==",
"path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==",
"path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0",
"hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512"
},
"System.Collections/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==",
"path": "system.collections/4.0.11",
"hashPath": "system.collections.4.0.11.nupkg.sha512"
},
"System.Collections.Immutable/1.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EXKiDFsChZW0RjrZ4FYHu9aW6+P4MCgEDCklsVseRfhoO0F+dXeMSsMRAlVXIo06kGJ/zv+2w1a2uc2+kxxSaQ==",
"path": "system.collections.immutable/1.5.0",
"hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
},
"System.ComponentModel.Annotations/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
"path": "system.componentmodel.annotations/4.5.0",
"hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
},
"System.Data.SqlClient/4.6.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-gwItUWW1BMCckicFO85c8frFaMK8SGqYn5IeA3GSX4Lmid+CjXETfoHz7Uv+Vx6L0No7iRc/7cBL8gd6o9k9/g==",
"path": "system.data.sqlclient/4.6.0",
"hashPath": "system.data.sqlclient.4.6.0.nupkg.sha512"
},
"System.Diagnostics.Debug/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==",
"path": "system.diagnostics.debug/4.0.11",
"hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512"
},
"System.Diagnostics.DiagnosticSource/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eIHRELiYDQvsMToML81QFkXEEYXUSUT2F28t1SGrevWqP+epFdw80SyAXIKTXOHrIEXReFOEnEr7XlGiC2GgOg==",
"path": "system.diagnostics.diagnosticsource/4.5.0",
"hashPath": "system.diagnostics.diagnosticsource.4.5.0.nupkg.sha512"
},
"System.Globalization/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==",
"path": "system.globalization/4.0.11",
"hashPath": "system.globalization.4.0.11.nupkg.sha512"
},
"System.Interactive.Async/3.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-C07p0dAA5lGqYUPiPCK3paR709gqS4aMDDsje0v0pvffwzLaxmsn5YQTfZbyNG5qrudPx+BCxTqISnncQ3wIoQ==",
"path": "system.interactive.async/3.2.0",
"hashPath": "system.interactive.async.3.2.0.nupkg.sha512"
},
"System.IO/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==",
"path": "system.io/4.1.0",
"hashPath": "system.io.4.1.0.nupkg.sha512"
},
"System.Linq/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==",
"path": "system.linq/4.1.0",
"hashPath": "system.linq.4.1.0.nupkg.sha512"
},
"System.Linq.Expressions/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==",
"path": "system.linq.expressions/4.1.0",
"hashPath": "system.linq.expressions.4.1.0.nupkg.sha512"
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
"path": "system.linq.queryable/4.0.1",
"hashPath": "system.linq.queryable.4.0.1.nupkg.sha512"
},
"System.Memory/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sDJYJpGtTgx+23Ayu5euxG5mAXWdkDb4+b0rD0Cab0M1oQS9H0HXGPriKcqpXuiJDTV7fTp/d+fMDJmnr6sNvA==",
"path": "system.memory/4.5.1",
"hashPath": "system.memory.4.5.1.nupkg.sha512"
},
"System.ObjectModel/4.0.12": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==",
"path": "system.objectmodel/4.0.12",
"hashPath": "system.objectmodel.4.0.12.nupkg.sha512"
},
"System.Reflection/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==",
"path": "system.reflection/4.1.0",
"hashPath": "system.reflection.4.1.0.nupkg.sha512"
},
"System.Reflection.Emit/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==",
"path": "system.reflection.emit/4.0.1",
"hashPath": "system.reflection.emit.4.0.1.nupkg.sha512"
},
"System.Reflection.Emit.ILGeneration/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==",
"path": "system.reflection.emit.ilgeneration/4.0.1",
"hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512"
},
"System.Reflection.Emit.Lightweight/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==",
"path": "system.reflection.emit.lightweight/4.0.1",
"hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512"
},
"System.Reflection.Extensions/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==",
"path": "system.reflection.extensions/4.0.1",
"hashPath": "system.reflection.extensions.4.0.1.nupkg.sha512"
},
"System.Reflection.Primitives/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==",
"path": "system.reflection.primitives/4.0.1",
"hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512"
},
"System.Reflection.TypeExtensions/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==",
"path": "system.reflection.typeextensions/4.1.0",
"hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512"
},
"System.Resources.ResourceManager/4.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==",
"path": "system.resources.resourcemanager/4.0.1",
"hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512"
},
"System.Runtime/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==",
"path": "system.runtime/4.1.0",
"hashPath": "system.runtime.4.1.0.nupkg.sha512"
},
"System.Runtime.CompilerServices.Unsafe/4.5.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Zh8t8oqolRaFa9vmOZfdQm/qKejdqz0J9kr7o2Fu0vPeoH3BL1EOXipKWwkWtLT1JPzjByrF19fGuFlNbmPpiw==",
"path": "system.runtime.compilerservices.unsafe/4.5.1",
"hashPath": "system.runtime.compilerservices.unsafe.4.5.1.nupkg.sha512"
},
"System.Runtime.Extensions/4.1.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==",
"path": "system.runtime.extensions/4.1.0",
"hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512"
},
"System.Security.AccessControl/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
"path": "system.security.accesscontrol/4.5.0",
"hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
},
"System.Security.Principal.Windows/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
"path": "system.security.principal.windows/4.5.0",
"hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
},
"System.Text.Encoding/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==",
"path": "system.text.encoding/4.0.11",
"hashPath": "system.text.encoding.4.0.11.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-S0wEUiKcLvRlkFUXca8uio1UQ5bYQzYgOmOKtCqaBQC3GR9AJjh43otcM32IGsAyvadFTaAMw9Irm6dS4Evfng==",
"path": "system.text.encoding.codepages/4.5.0",
"hashPath": "system.text.encoding.codepages.4.5.0.nupkg.sha512"
},
"System.Threading/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==",
"path": "system.threading/4.0.11",
"hashPath": "system.threading.4.0.11.nupkg.sha512"
},
"System.Threading.Tasks/4.0.11": {
"type": "package",
"serviceable": true,
"sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==",
"path": "system.threading.tasks/4.0.11",
"hashPath": "system.threading.tasks.4.0.11.nupkg.sha512"
}
}
}
\ No newline at end of file
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\Yigit Yusuf\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\Yigit Yusuf\\.nuget\\packages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
]
}
}
\ No newline at end of file
{
"runtimeOptions": {
"tfm": "netcoreapp2.2",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "2.2.0"
}
}
}
\ No newline at end of file
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v2.2", FrameworkDisplayName = "")]
//------------------------------------------------------------------------------
// <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("ElasticService")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ElasticService")]
[assembly: System.Reflection.AssemblyTitleAttribute("ElasticService")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.
is_global = true
build_property.RootNamespace = ElasticService
build_property.ProjectDir = C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csprojAssemblyReference.cache
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csproj.CoreCompileInputs.cache
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfoInputs.cache
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfo.cs
C:/Source/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.deps.json
C:/Source/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.json
C:/Source/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.dev.json
C:/Source/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.dll
C:/Source/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.pdb
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.dll
C:/Source/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.pdb
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.deps.json
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.json
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.dev.json
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.dll
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.pdb
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csprojAssemblyReference.cache
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csproj.CoreCompileInputs.cache
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfoInputs.cache
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfo.cs
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.dll
/Users/borakasmer/Projects/ElasticSearchGeoLocationExample/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.pdb
/Users/borakasmer/Desktop/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.deps.json
/Users/borakasmer/Desktop/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.json
/Users/borakasmer/Desktop/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.runtimeconfig.dev.json
/Users/borakasmer/Desktop/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.dll
/Users/borakasmer/Desktop/ElasticService/bin/Debug/netcoreapp2.2/ElasticService.pdb
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csprojAssemblyReference.cache
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.csproj.CoreCompileInputs.cache
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfoInputs.cache
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.AssemblyInfo.cs
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.dll
/Users/borakasmer/Desktop/ElasticService/obj/Debug/netcoreapp2.2/ElasticService.pdb
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\bin\Debug\netcoreapp2.2\ElasticService.deps.json
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\bin\Debug\netcoreapp2.2\ElasticService.runtimeconfig.json
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\bin\Debug\netcoreapp2.2\ElasticService.runtimeconfig.dev.json
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\bin\Debug\netcoreapp2.2\ElasticService.dll
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\bin\Debug\netcoreapp2.2\ElasticService.pdb
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.csproj.AssemblyReference.cache
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.GeneratedMSBuildEditorConfig.editorconfig
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.AssemblyInfoInputs.cache
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.AssemblyInfo.cs
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.csproj.CoreCompileInputs.cache
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.dll
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.pdb
C:\Users\Yigit Yusuf\Desktop\ElasticSearchGeolocation-master\obj\Debug\netcoreapp2.2\ElasticService.genruntimeconfig.cache
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment