pull/2/head
Maxence LANONE 2 years ago
parent 3865179e98
commit 674d841281

@ -1,37 +1,45 @@
<Properties GitUserInfo="UsingGIT" StartupConfiguration="{F4473EB6-6CD7-4A73-89BC-82C247A23412}|Default">
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.ItemProperties.Tests.TestUnitaireLOL PreferredExecutionTarget="MonoDevelop.Default" />
<MonoDevelop.Ide.ItemProperties.Tests.ConsoleDB PreferredExecutionTarget="MonoDevelop.Default" />
<MultiItemStartupConfigurations />
<MonoDevelop.Ide.Workbench ActiveDocument="Tests/ConsoleDB/Program.cs">
<MonoDevelop.Ide.Workbench ActiveDocument="../../EntityFrameWorkLib/EntityFrameWorkLib/ChampionEntity.cs">
<Files>
<File FileName="../../EntityFrameWorkLib/EntityFrameWorkLib/Class1.cs" />
<File FileName="Tests/ConsoleDB/Program.cs" Line="21" Column="19" />
<File FileName="Tests/ConsoleDB/Program.cs" />
<File FileName="../../EntityFrameWorkLib/EntityFrameWorkLib/LolContext.cs" />
<File FileName="../../EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj" />
<File FileName="Tests/ConsoleDB/ConsoleDB.csproj" />
<File FileName="Tests/TestUnitaireLOL/UnitTest1.cs" />
<File FileName="Tests/TestUnitaireLOL/UnitTest1.cs" Line="1" Column="1" />
<File FileName="Tests/TestUnitaireLOL/Usings.cs" />
<File FileName="Tests/ConsoleTests/Program.cs" />
<File FileName="Model/Champion.cs" Line="1" Column="1" />
<File FileName="Model/IDataManager.cs" Line="8" Column="7" />
<File FileName="DbDatamanager/Class1.cs" Line="13" Column="2" />
<File FileName="Shared/IGenericDataManager.cs" Line="1" Column="1" />
<File FileName="../../EntityFrameWorkLib/EntityFrameWorkLib/ChampionEntity.cs" Line="1" Column="1" />
</Files>
<Pads>
<Pad Id="ProjectPad">
<State name="__root__">
<Node name="LeagueOfLegends" expanded="True">
<Node name="Tests" expanded="True">
<Node name="ConsoleDB" expanded="True" />
<Node name="ConsoleTests" expanded="True" />
<Node name="TestUnitaireLOL" expanded="True">
<Node name="UnitTest1.cs" selected="True" />
</Node>
<Node name="DbDatamanager" expanded="True" />
<Node name="EntityFrameWorkLib" expanded="True">
<Node name="ChampionEntity.cs" selected="True" />
</Node>
<Node name="Model" expanded="True">
<Node name="enums" expanded="True" />
</Node>
<Node name="EntityFrameWorkLib" expanded="True" />
<Node name="Shared" expanded="True" />
</Node>
</State>
</Pad>
</Pads>
</MonoDevelop.Ide.Workbench>
<MonoDevelop.Ide.DebuggingService.Breakpoints />
<MonoDevelop.Ide.ItemProperties.Tests.TestUnitaireLOL PreferredExecutionTarget="MonoDevelop.Default" />
<MonoDevelop.Ide.ItemProperties.Tests.ConsoleTests PreferredExecutionTarget="MonoDevelop.Default" />
<MonoDevelop.Ide.ItemProperties.Tests.ConsoleDB PreferredExecutionTarget="MonoDevelop.Default" />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore />
</MonoDevelop.Ide.DebuggingService.Breakpoints>
<MonoDevelop.Ide.ItemProperties.DbDatamanager FirstBuild="True" />
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
<MultiItemStartupConfigurations />
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
</Properties>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,13 @@
using Model;
namespace DbDatamanager;
public class DbDataManager : IDataManager
{
public IChampionsManager ChampionsMgr => throw new NotImplementedException();
public ISkinsManager SkinsMgr => throw new NotImplementedException();
public IRunesManager RunesMgr => throw new NotImplementedException();
public IRunePagesManager RunePagesMgr => throw new NotImplementedException();
}

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Model\Model.csproj" />
<ProjectReference Include="..\..\..\EntityFrameWorkLib\EntityFrameWorkLib\EntityFrameWorkLib.csproj" />
</ItemGroup>
</Project>

@ -0,0 +1,251 @@
{
"format": 1,
"restore": {
"/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/DbDatamanager.csproj": {}
},
"projects": {
"/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj",
"projectName": "EntityFrameWorkLib",
"projectPath": "/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj",
"packagesPath": "/Users/malanone/.nuget/packages/",
"outputPath": "/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/malanone/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Microsoft.EntityFrameworkCore": {
"target": "Package",
"version": "[7.0.2, )"
},
"Microsoft.EntityFrameworkCore.Sqlite": {
"target": "Package",
"version": "[7.0.2, )"
},
"Microsoft.EntityFrameworkCore.Tools": {
"include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
"suppressParent": "All",
"target": "Package",
"version": "[7.0.2, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
"/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/DbDatamanager.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/DbDatamanager.csproj",
"projectName": "DbDatamanager",
"projectPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/DbDatamanager.csproj",
"packagesPath": "/Users/malanone/.nuget/packages/",
"outputPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/malanone/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {
"/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj": {
"projectPath": "/Users/malanone/Projects/EntityFrameWorkLib/EntityFrameWorkLib/EntityFrameWorkLib.csproj"
},
"/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj": {
"projectPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
"/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj",
"projectName": "Model",
"projectPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj",
"packagesPath": "/Users/malanone/.nuget/packages/",
"outputPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/malanone/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {
"/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj": {
"projectPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
"/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj",
"projectName": "Shared",
"projectPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj",
"packagesPath": "/Users/malanone/.nuget/packages/",
"outputPath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
"/Users/malanone/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net6.0"
],
"sources": {
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net6.0": {
"targetAlias": "net6.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,18 @@
<?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)' == '' ">/Users/malanone/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/malanone/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.3.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="/Users/malanone/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/7.0.2/buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/7.0.2/buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props')" />
</ImportGroup>
</Project>

@ -0,0 +1,8 @@
<?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)system.text.json/7.0.0/buildTransitive/net6.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/7.0.0/buildTransitive/net6.0/System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.2/buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets" Condition="Exists('$(NuGetPackageRoot)sqlitepclraw.lib.e_sqlite3/2.1.2/buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/7.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/7.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
</ImportGroup>
</Project>

@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

@ -0,0 +1,22 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
//
// 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("DbDatamanager")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DbDatamanager")]
[assembly: System.Reflection.AssemblyTitleAttribute("DbDatamanager")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DbDatamanager
build_property.ProjectDir = /Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/

@ -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;

File diff suppressed because it is too large Load Diff

@ -0,0 +1,33 @@
{
"version": 2,
"dgSpecHash": "nq4ylYBuADnYXImuCzpmalaonulwKBaWPNdI/eithUtdIYL5w8UevBt6ZQqJP8Y8mntSEUOT5mxDlCEqqwukRQ==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/DbDatamanager/DbDatamanager.csproj",
"expectedPackageFiles": [
"/Users/malanone/.nuget/packages/microsoft.data.sqlite.core/7.0.2/microsoft.data.sqlite.core.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore/7.0.2/microsoft.entityframeworkcore.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore.abstractions/7.0.2/microsoft.entityframeworkcore.abstractions.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore.analyzers/7.0.2/microsoft.entityframeworkcore.analyzers.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore.relational/7.0.2/microsoft.entityframeworkcore.relational.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore.sqlite/7.0.2/microsoft.entityframeworkcore.sqlite.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.entityframeworkcore.sqlite.core/7.0.2/microsoft.entityframeworkcore.sqlite.core.7.0.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.caching.abstractions/7.0.0/microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.caching.memory/7.0.0/microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.configuration.abstractions/7.0.0/microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.dependencyinjection/7.0.0/microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/7.0.0/microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.dependencymodel/7.0.0/microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.logging/7.0.0/microsoft.extensions.logging.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.logging.abstractions/7.0.0/microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.options/7.0.0/microsoft.extensions.options.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/microsoft.extensions.primitives/7.0.0/microsoft.extensions.primitives.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/sqlitepclraw.bundle_e_sqlite3/2.1.2/sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/sqlitepclraw.core/2.1.2/sqlitepclraw.core.2.1.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/sqlitepclraw.lib.e_sqlite3/2.1.2/sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/sqlitepclraw.provider.e_sqlite3/2.1.2/sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512",
"/Users/malanone/.nuget/packages/system.memory/4.5.3/system.memory.4.5.3.nupkg.sha512",
"/Users/malanone/.nuget/packages/system.text.encodings.web/7.0.0/system.text.encodings.web.7.0.0.nupkg.sha512",
"/Users/malanone/.nuget/packages/system.text.json/7.0.0/system.text.json.7.0.0.nupkg.sha512"
],
"logs": []
}

@ -21,6 +21,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleDB", "Tests\ConsoleD
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TestUnitaireLOL", "Tests\TestUnitaireLOL\TestUnitaireLOL.csproj", "{F4473EB6-6CD7-4A73-89BC-82C247A23412}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DbDatamanager", "DbDatamanager\DbDatamanager.csproj", "{B316E0A6-491B-45D6-A4E5-78AB662ABE1B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@ -55,6 +57,10 @@ Global
{F4473EB6-6CD7-4A73-89BC-82C247A23412}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F4473EB6-6CD7-4A73-89BC-82C247A23412}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F4473EB6-6CD7-4A73-89BC-82C247A23412}.Release|Any CPU.Build.0 = Release|Any CPU
{B316E0A6-491B-45D6-A4E5-78AB662ABE1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B316E0A6-491B-45D6-A4E5-78AB662ABE1B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B316E0A6-491B-45D6-A4E5-78AB662ABE1B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B316E0A6-491B-45D6-A4E5-78AB662ABE1B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

@ -58,7 +58,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -112,7 +112,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -83,7 +83,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "DGP1xhxYBeEhPhj9dJ582tM+Air8fIfhoZogv3w8z0+oT8Re5hEjM9KDLJ45I44UbfboXV3alrEtVnRypAPoQg==",
"dgSpecHash": "Ao5jSTT+yGabTAfYDg9P2A9++1IjHubTmpTELObId4uBtBEsl5Thlg9nVubRAPa1/L6iUltcFcpDKWlnyNafNA==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Model/Model.csproj",
"expectedPackageFiles": [],

@ -54,7 +54,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -60,7 +60,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "PPAk8cPLf/gSM9lZorcM7++cYed7D9Y5BTvQ9ihsfR4TWlbt3ew9S6cgaXKUsKZtv9yMC2c4woMjoyulTRmqKQ==",
"dgSpecHash": "diDX8z0L5xVobuYVBdf4W6bvbPkLTkowBHUW+fRrUKuLuJlOuB4PeTDuc3yHyDZEq4KOu2BSTeOSBhnh1D3uLA==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Shared/Shared.csproj",
"expectedPackageFiles": [],

@ -58,7 +58,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -112,7 +112,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -170,7 +170,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -101,7 +101,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "Ov1OdTyl/muA/+ePlh03rHMtO5nMTgATw3IgFzVlENjoGiFwksATZIRUKV9PofeByR493GHvF8WycKIPnJeGGw==",
"dgSpecHash": "kRTQFNFNDRLur2GlDoppxc++P+eq6D7eGh5i9jltneyIc78hDy9frtPDdDfLC1QI/CwHCxTeutOj3yoceZSnAg==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/StubLib/StubLib.csproj",
"expectedPackageFiles": [],

@ -70,7 +70,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -144,7 +144,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1390,7 +1390,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "0NiB/tfvdGZ0MRuOAwpkBhVi9mTjBO16MJshvRzzXQFh4x4zHQP0RgM2JS/6DlTpSgjnwBOWmH7zUb/RNGlJWg==",
"dgSpecHash": "IWHyMVt0VneZ7ryxNVGwBdAi79evcNFMIg+8brRYi2IbhaPV39h5cX3Xz8fKFGoqqrxXGeV7VGiAtMdihnTRIg==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Tests/ConsoleDB/ConsoleDB.csproj",
"expectedPackageFiles": [

@ -58,7 +58,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -112,7 +112,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -170,7 +170,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -237,7 +237,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -223,7 +223,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "p3XfYqLUgIRWGXb/lYbX2iaJ8xWMWAyKECYeDc48uR3ThDRHNZHhH+dorGFGwkv/7/8au5a1r2GlmVe5n8swPQ==",
"dgSpecHash": "w7alFDYViNV5abtDx6RKurLUBj/Fpaa/QndUv60ghr/O5SkN4ffaImVkr6J7ldZeRGj5cNTlE9k2ahxj/ribeA==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Tests/ConsoleTests/ConsoleTests.csproj",
"expectedPackageFiles": [

@ -70,7 +70,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
},
@ -154,7 +154,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -7339,7 +7339,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.101/RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.102/RuntimeIdentifierGraph.json"
}
}
}

@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "BfpzRYAMP9WgyHxJAhOV5ZcyN7x2ycwcJ2ZobCwOdEaW8x4vB4CC/FHuOLD67//VIQ7yE92HsOiVGUpH5LUS3Q==",
"dgSpecHash": "ai+mTt+yvptV7hv02h8nDE355PthLporohRfqTa9zizvDe1BGmeRvL+BtcPClZQjccFg4hVnFWnx3V0XFsNPdg==",
"success": true,
"projectFilePath": "/Users/malanone/Projects/EntityFramework_LoL/Sources/Tests/TestUnitaireLOL/TestUnitaireLOL.csproj",
"expectedPackageFiles": [

Loading…
Cancel
Save