diff --git a/Project/EntityFramework/Entities/GroupEntity.cs b/Project/EntityFramework/Entities/GroupEntity.cs index 7e2d371..b359dd4 100644 --- a/Project/EntityFramework/Entities/GroupEntity.cs +++ b/Project/EntityFramework/Entities/GroupEntity.cs @@ -1,4 +1,6 @@ -namespace Entities +using System.ComponentModel.DataAnnotations; + +namespace Entities { public class GroupEntity { @@ -6,6 +8,9 @@ public int Num { get; set; } public int year { get; set; } public string sector { get; set; } + public ICollection Users { get; set; } = new List(); + + public ICollection VocabularyList { get; set; } = new List(); } } diff --git a/Project/EntityFramework/Entities/LangueEntity.cs b/Project/EntityFramework/Entities/LangueEntity.cs index 314f4b2..c85ce49 100644 --- a/Project/EntityFramework/Entities/LangueEntity.cs +++ b/Project/EntityFramework/Entities/LangueEntity.cs @@ -11,5 +11,7 @@ namespace Entities { [Key] public string name { get; set; } + + public ICollection vocabularys { get; set; } = new List(); } } diff --git a/Project/EntityFramework/Entities/RegisterEntity.cs b/Project/EntityFramework/Entities/RegisterEntity.cs deleted file mode 100644 index 7f3aabd..0000000 --- a/Project/EntityFramework/Entities/RegisterEntity.cs +++ /dev/null @@ -1,16 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel.DataAnnotations; -using System.Linq; -using System.Text; -using System.Threading.Tasks; - -namespace Entities -{ - public class RegisterEntity - { - [Key] - public string language { get; set; } - public string word { get; set; } - } -} diff --git a/Project/EntityFramework/Entities/RoleEntity.cs b/Project/EntityFramework/Entities/RoleEntity.cs index 79dbfa4..8c51e80 100644 --- a/Project/EntityFramework/Entities/RoleEntity.cs +++ b/Project/EntityFramework/Entities/RoleEntity.cs @@ -10,5 +10,6 @@ namespace Entities { public int Id { get; set; } public string Name { get; set; } + public ICollection Users { get; set; } = new List(); } } diff --git a/Project/EntityFramework/Entities/TranslateEntity.cs b/Project/EntityFramework/Entities/TranslateEntity.cs index 7c65287..dc498c6 100644 --- a/Project/EntityFramework/Entities/TranslateEntity.cs +++ b/Project/EntityFramework/Entities/TranslateEntity.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -9,9 +10,19 @@ namespace Entities public class TranslateEntity { public int Id { get; set; } - public string FirstWord { get; set; } - public string SecondWord { get; set; } - public int ListVoc { get; set; } + + [ForeignKey(nameof(WordsId))] + public string WordsId { get; set; } + public ICollection Words { get; set; } = new List(); + + // [ForeignKey(nameof(SecondWordId))] + // public string? SecondWordId { get; set; } + // public VocabularyEntity SecondWord { get; set; } = null!; + + [ForeignKey(nameof(VocabularyListVocId))] + public long VocabularyListVocId { get; set; } + public VocabularyListEntity VocabularyListVoc { get; set; } = null!; + } } diff --git a/Project/EntityFramework/Entities/UserEntity.cs b/Project/EntityFramework/Entities/UserEntity.cs index fc8790c..86ebdb0 100644 --- a/Project/EntityFramework/Entities/UserEntity.cs +++ b/Project/EntityFramework/Entities/UserEntity.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -8,14 +9,18 @@ namespace Entities { public class UserEntity { - public int Id { get; set; } + public long Id { get; set; } public string Password { get; set; } public string Email { get; set; } public string Name { get; set; } public string UserName { get; set; } public string NickName { get; set; } public string? image { get; set; } = null; - public int GroupId { get; set; } + public long GroupId { get; set; } + public GroupEntity? Group { get; set; } = null; + public long RoleId { get; set; } + public RoleEntity? Role { get; set; } = null!; public Boolean ExtraTime { get; set; } + public ICollection VocabularyList { get; set; } = new List(); } } diff --git a/Project/EntityFramework/Entities/VocabularyEntity.cs b/Project/EntityFramework/Entities/VocabularyEntity.cs index fbb637d..a19419a 100644 --- a/Project/EntityFramework/Entities/VocabularyEntity.cs +++ b/Project/EntityFramework/Entities/VocabularyEntity.cs @@ -1,6 +1,7 @@ using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -10,6 +11,13 @@ namespace Entities public class VocabularyEntity { [Key] + [DatabaseGenerated(DatabaseGeneratedOption.None)] public string word { get; set; } + public ICollection translations { get; } = new List(); + + public string LangueName { get; set; } + public LangueEntity? Langue { get; set; } = null!; + + } } diff --git a/Project/EntityFramework/Entities/VocabularyListEntity.cs b/Project/EntityFramework/Entities/VocabularyListEntity.cs index 9499386..c0a6f47 100644 --- a/Project/EntityFramework/Entities/VocabularyListEntity.cs +++ b/Project/EntityFramework/Entities/VocabularyListEntity.cs @@ -1,5 +1,6 @@ using System; using System.Collections.Generic; +using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; @@ -11,6 +12,12 @@ namespace Entities public int Id { get; set; } public string Name { get; set; } public string Image { get; set; } - public int UserId { get; set; } + + [ForeignKey(nameof(UserId))] + public long UserId { get; set; } + public UserEntity User { get; set; } = null!; + + public ICollection translation { get; set; } = new List(); + public ICollection Groups { get; } = new List(); } } diff --git a/Project/EntityFramework/Entities/BeEntity.cs b/Project/EntityFramework/Entities/VocabularyListGroup.cs similarity index 54% rename from Project/EntityFramework/Entities/BeEntity.cs rename to Project/EntityFramework/Entities/VocabularyListGroup.cs index 3695ba6..5c9e8f4 100644 --- a/Project/EntityFramework/Entities/BeEntity.cs +++ b/Project/EntityFramework/Entities/VocabularyListGroup.cs @@ -6,10 +6,9 @@ using System.Threading.Tasks; namespace Entities { - public class BeEntity + public class VocabularyListGroup { - public int Id { get; set; } - public int RoleId { get; set; } - + public long GroupId { get; set; } + public long VocabularyListId { get; set; } } } diff --git a/Project/EntityFramework/Entities/PracticeEntity.cs b/Project/EntityFramework/Entities/VocabularyTranslateEntity.cs similarity index 54% rename from Project/EntityFramework/Entities/PracticeEntity.cs rename to Project/EntityFramework/Entities/VocabularyTranslateEntity.cs index da391c3..a594c1c 100644 --- a/Project/EntityFramework/Entities/PracticeEntity.cs +++ b/Project/EntityFramework/Entities/VocabularyTranslateEntity.cs @@ -1,13 +1,14 @@ using System; using System.Collections.Generic; -using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Entities { - public class PracticeEntity + public class VocabularyTranslateEntity { + public string Word { get; set; } + public string Translation { get; set; } } } diff --git a/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.dll b/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.dll index 0bcfd59..dae1301 100644 Binary files a/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.dll and b/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.dll differ diff --git a/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.pdb b/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.pdb index 40d6320..af9aac2 100644 Binary files a/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.pdb and b/Project/EntityFramework/Entities/bin/Debug/net8.0/Entities.pdb differ diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfo.cs b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfo.cs index 08d0839..b983d4b 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfo.cs +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("Entities")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3ea94dc8442f9d0e48e8fb70f0954cb0d4a78aea")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d7479939b16a7d8808f4bcb3bc30a25df35d90f1")] [assembly: System.Reflection.AssemblyProductAttribute("Entities")] [assembly: System.Reflection.AssemblyTitleAttribute("Entities")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfoInputs.cache b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfoInputs.cache index 4835a3c..090caf2 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfoInputs.cache +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.AssemblyInfoInputs.cache @@ -1 +1 @@ -c105925b50b8060aeef8eb23bbf1e1cbc6914d3209f0d7b99bd44c5d48c5bb6d +0a4c03277f1ef66d265d49347c2c11562a8e2f168f122e4838de7a46e5d12151 diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.GeneratedMSBuildEditorConfig.editorconfig b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.GeneratedMSBuildEditorConfig.editorconfig index ae802e4..faa11a0 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.GeneratedMSBuildEditorConfig.editorconfig +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Entities -build_property.ProjectDir = C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\Entities\ +build_property.ProjectDir = C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.assets.cache b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.assets.cache index c1c0507..226552c 100644 Binary files a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.assets.cache and b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.assets.cache differ diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.CoreCompileInputs.cache b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.CoreCompileInputs.cache index 80a515e..f234636 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.CoreCompileInputs.cache +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -070cc31feb55d078798f689692a6c2005051367bff2bc166b5be930f97f1ed30 +2a237c22c653ec8daeaff3bca00bf48bd2296af599ae6eaca30e4510dec8afdd diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.FileListAbsolute.txt b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.FileListAbsolute.txt index 7bd5528..420f9dd 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.FileListAbsolute.txt +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.csproj.FileListAbsolute.txt @@ -12,3 +12,17 @@ C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\Entities\ C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.pdb C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.genruntimeconfig.cache C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\Entities\obj\Debug\net8.0\ref\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\bin\Debug\net8.0\Entities.deps.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\bin\Debug\net8.0\Entities.runtimeconfig.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\bin\Debug\net8.0\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\bin\Debug\net8.0\Entities.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.csproj.AssemblyReference.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.AssemblyInfoInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.AssemblyInfo.cs +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.csproj.CoreCompileInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\refint\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\Entities.genruntimeconfig.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\Entities\obj\Debug\net8.0\ref\Entities.dll diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.dll b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.dll index 0bcfd59..dae1301 100644 Binary files a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.dll and b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.dll differ diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.genruntimeconfig.cache b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.genruntimeconfig.cache index 00cfae8..6237a44 100644 --- a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.genruntimeconfig.cache +++ b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.genruntimeconfig.cache @@ -1 +1 @@ -a5b881f3c07a91a9862800360a9116886971e41b4a5d943b6613b8bcae9d5ba5 +e135e3d75a7f5dbec4bc303707ba7d29ec24e3defc935ad2da2269bf3bccaabb diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.pdb b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.pdb index 40d6320..af9aac2 100644 Binary files a/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.pdb and b/Project/EntityFramework/Entities/obj/Debug/net8.0/Entities.pdb differ diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/ref/Entities.dll b/Project/EntityFramework/Entities/obj/Debug/net8.0/ref/Entities.dll index 8aaf5b2..cf24e9e 100644 Binary files a/Project/EntityFramework/Entities/obj/Debug/net8.0/ref/Entities.dll and b/Project/EntityFramework/Entities/obj/Debug/net8.0/ref/Entities.dll differ diff --git a/Project/EntityFramework/Entities/obj/Debug/net8.0/refint/Entities.dll b/Project/EntityFramework/Entities/obj/Debug/net8.0/refint/Entities.dll index 8aaf5b2..cf24e9e 100644 Binary files a/Project/EntityFramework/Entities/obj/Debug/net8.0/refint/Entities.dll and b/Project/EntityFramework/Entities/obj/Debug/net8.0/refint/Entities.dll differ diff --git a/Project/EntityFramework/Entities/obj/Entities.csproj.nuget.dgspec.json b/Project/EntityFramework/Entities/obj/Entities.csproj.nuget.dgspec.json index e2ea06b..ec19e16 100644 --- a/Project/EntityFramework/Entities/obj/Entities.csproj.nuget.dgspec.json +++ b/Project/EntityFramework/Entities/obj/Entities.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": {} + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": {} }, "projects": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "projectName": "Entities", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" diff --git a/Project/EntityFramework/Entities/obj/project.assets.json b/Project/EntityFramework/Entities/obj/project.assets.json index c7cdeb0..e12aa7e 100644 --- a/Project/EntityFramework/Entities/obj/project.assets.json +++ b/Project/EntityFramework/Entities/obj/project.assets.json @@ -4335,11 +4335,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "projectName": "Entities", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" diff --git a/Project/EntityFramework/Entities/obj/project.nuget.cache b/Project/EntityFramework/Entities/obj/project.nuget.cache index 57d1e6b..611eabc 100644 --- a/Project/EntityFramework/Entities/obj/project.nuget.cache +++ b/Project/EntityFramework/Entities/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "/RvhOITSdgqxHrcb+QdMJLXeiuvCQRI9rAenM/6OCo4nXTULQHBJBT6IUTplo0z9ro3R3dpxQ/wWkOVK0k5RiA==", + "dgSpecHash": "5y9iid4I7StzBvvXjxo7fKGNbe6ghHTjVJaqago8/k/pmbUiJjyuio6zbgiGaBc2bdnbcjoKZPqiEVVOiOhV9A==", "success": true, - "projectFilePath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectFilePath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "expectedPackageFiles": [ "C:\\Users\\Brugiere\\.nuget\\packages\\azure.core\\1.25.0\\azure.core.1.25.0.nupkg.sha512", "C:\\Users\\Brugiere\\.nuget\\packages\\azure.identity\\1.7.0\\azure.identity.1.7.0.nupkg.sha512", diff --git a/Project/EntityFramework/StubbedContext/StubbedContext.cs b/Project/EntityFramework/StubbedContext/StubbedContext.cs index a844413..da89457 100644 --- a/Project/EntityFramework/StubbedContext/StubbedContext.cs +++ b/Project/EntityFramework/StubbedContext/StubbedContext.cs @@ -10,6 +10,16 @@ namespace StubbedContextLib protected override void OnModelCreating(ModelBuilder modelBuilder) { + base.OnModelCreating(modelBuilder); + modelBuilder.Entity() + .HasMany(al => al.translations) + .WithMany(ar => ar.Words).UsingEntity(); + + modelBuilder.Entity() + .HasMany(u => u.Groups) + .WithMany(g => g.VocabularyList) + .UsingEntity(); + modelBuilder.Entity().HasData( new UserEntity { diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.dll b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.dll index 05ae23e..6908460 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.dll and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.dll differ diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.pdb b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.pdb index 29eaaa7..8319393 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.pdb and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/DbContextLib.pdb differ diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.dll b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.dll index 0bcfd59..dae1301 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.dll and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.dll differ diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.pdb b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.pdb index 40d6320..af9aac2 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.pdb and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/Entities.pdb differ diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.dll b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.dll index 2a529a8..1d2e8dc 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.dll and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.dll differ diff --git a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.pdb b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.pdb index 730fdbe..084a73d 100644 Binary files a/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.pdb and b/Project/EntityFramework/StubbedContext/bin/Debug/net8.0/StubbedContext.pdb differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfo.cs b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfo.cs index ea5b629..68369ab 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfo.cs +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("StubbedContext")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3ea94dc8442f9d0e48e8fb70f0954cb0d4a78aea")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d7479939b16a7d8808f4bcb3bc30a25df35d90f1")] [assembly: System.Reflection.AssemblyProductAttribute("StubbedContext")] [assembly: System.Reflection.AssemblyTitleAttribute("StubbedContext")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfoInputs.cache b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfoInputs.cache index 9e836dc..aaa0af9 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfoInputs.cache +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.AssemblyInfoInputs.cache @@ -1 +1 @@ -b974a6362aacbccc021decd7ef03b10d79e12ecba397cbb75b5a7ef2ffb7a8ad +19bead6524fc8f79bfb8d075d7920be21ec5b1c35060573f3f90eac913300589 diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.GeneratedMSBuildEditorConfig.editorconfig b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.GeneratedMSBuildEditorConfig.editorconfig index dbeaa5c..98b7047 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.GeneratedMSBuildEditorConfig.editorconfig +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = StubbedContext -build_property.ProjectDir = C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\StubbedContext\ +build_property.ProjectDir = C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.assets.cache b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.assets.cache index d64750d..80008d8 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.assets.cache and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.assets.cache differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.AssemblyReference.cache b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.AssemblyReference.cache index 3094b1f..9bc6b3c 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.AssemblyReference.cache and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.AssemblyReference.cache differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.CoreCompileInputs.cache b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.CoreCompileInputs.cache index c01628a..c57ffb1 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.CoreCompileInputs.cache +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -3c89f918df29f4e9932f95d42659359680f123aaea273c0ff7fe70a53d6d562a +70dd50d7901dfac5660d024a5fe199dbcd3a545cc24505aba298a3c305e4cd7b diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.FileListAbsolute.txt b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.FileListAbsolute.txt index 49d6b73..39c9ab7 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.FileListAbsolute.txt +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.csproj.FileListAbsolute.txt @@ -17,3 +17,22 @@ C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\StubbedCo C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.pdb C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.genruntimeconfig.cache C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\ref\StubbedContext.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\StubbedContext.deps.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\StubbedContext.runtimeconfig.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\StubbedContext.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\StubbedContext.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\DbContextLib.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\DbContextLib.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\bin\Debug\net8.0\Entities.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.csproj.AssemblyReference.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.AssemblyInfoInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.AssemblyInfo.cs +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.csproj.CoreCompileInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.csproj.CopyComplete +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\refint\StubbedContext.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\StubbedContext.genruntimeconfig.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\StubbedContext\obj\Debug\net8.0\ref\StubbedContext.dll diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.dll b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.dll index 2a529a8..1d2e8dc 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.dll and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.dll differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.genruntimeconfig.cache b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.genruntimeconfig.cache index c6071b7..03ae3dc 100644 --- a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.genruntimeconfig.cache +++ b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.genruntimeconfig.cache @@ -1 +1 @@ -ef4174677b1e58b4935d742d958b33ff2ba04df46a1a4015d4b88ce57c5248f1 +405f6e9632a1ddeaa35ae436e163d04c07f6e2bc216a86ae63160bf7c0620788 diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.pdb b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.pdb index 730fdbe..084a73d 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.pdb and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/StubbedContext.pdb differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/ref/StubbedContext.dll b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/ref/StubbedContext.dll index cab0865..9301cbe 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/ref/StubbedContext.dll and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/ref/StubbedContext.dll differ diff --git a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/refint/StubbedContext.dll b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/refint/StubbedContext.dll index cab0865..9301cbe 100644 Binary files a/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/refint/StubbedContext.dll and b/Project/EntityFramework/StubbedContext/obj/Debug/net8.0/refint/StubbedContext.dll differ diff --git a/Project/EntityFramework/StubbedContext/obj/StubbedContext.csproj.nuget.dgspec.json b/Project/EntityFramework/StubbedContext/obj/StubbedContext.csproj.nuget.dgspec.json index 8c0dc44..5c9b60c 100644 --- a/Project/EntityFramework/StubbedContext/obj/StubbedContext.csproj.nuget.dgspec.json +++ b/Project/EntityFramework/StubbedContext/obj/StubbedContext.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": {} + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": {} }, "projects": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", "projectName": "DbContextLib", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -33,8 +33,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj" } } } @@ -88,14 +88,14 @@ } } }, - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "projectName": "Entities", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -168,14 +168,14 @@ } } }, - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "projectName": "StubbedContext", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -197,8 +197,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" } } } diff --git a/Project/EntityFramework/StubbedContext/obj/project.assets.json b/Project/EntityFramework/StubbedContext/obj/project.assets.json index 13f9cd3..0189b44 100644 --- a/Project/EntityFramework/StubbedContext/obj/project.assets.json +++ b/Project/EntityFramework/StubbedContext/obj/project.assets.json @@ -4377,11 +4377,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "projectName": "StubbedContext", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -4403,8 +4403,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" } } } diff --git a/Project/EntityFramework/StubbedContext/obj/project.nuget.cache b/Project/EntityFramework/StubbedContext/obj/project.nuget.cache index 81f9b07..c209c1d 100644 --- a/Project/EntityFramework/StubbedContext/obj/project.nuget.cache +++ b/Project/EntityFramework/StubbedContext/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "ZNWCgfsdlX1adX/qRCkque2Xz8uvFbrleztuQmeWLkAiY3/gybGyqIJ3+tIhRHwjM+negFbtGv/tJEmt1RDsEA==", + "dgSpecHash": "M4DwTp0M27eM116E4aTdqQ4fUavklaG/37lwJCZtebUvlMhQJ/NQU71x8iR49Cf2hoL1yxY0W4kL3nGpzeZSIg==", "success": true, - "projectFilePath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectFilePath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "expectedPackageFiles": [ "C:\\Users\\Brugiere\\.nuget\\packages\\azure.core\\1.25.0\\azure.core.1.25.0.nupkg.sha512", "C:\\Users\\Brugiere\\.nuget\\packages\\azure.identity\\1.7.0\\azure.identity.1.7.0.nupkg.sha512", diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.dll b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.dll index 05ae23e..6908460 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.dll and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.dll differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.pdb b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.pdb index 29eaaa7..8319393 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.pdb and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/DbContextLib.pdb differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.dll b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.dll index 0bcfd59..dae1301 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.dll and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.dll differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.pdb b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.pdb index 40d6320..af9aac2 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.pdb and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/Entities.pdb differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.dll b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.dll index 2a529a8..1d2e8dc 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.dll and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.dll differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.pdb b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.pdb index 730fdbe..084a73d 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.pdb and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/StubbedContext.pdb differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.dll b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.dll index fd3ccfc..c0a9319 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.dll and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.dll differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.exe b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.exe index af88ce4..a3295b4 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.exe and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.exe differ diff --git a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.pdb b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.pdb index 4f0e4be..06b8d33 100644 Binary files a/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.pdb and b/Project/EntityFramework/TestConsole/bin/Debug/net8.0/TestConsole.pdb differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfo.cs b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfo.cs index 32f6cd9..808ce2d 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfo.cs +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TestConsole")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3ea94dc8442f9d0e48e8fb70f0954cb0d4a78aea")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d7479939b16a7d8808f4bcb3bc30a25df35d90f1")] [assembly: System.Reflection.AssemblyProductAttribute("TestConsole")] [assembly: System.Reflection.AssemblyTitleAttribute("TestConsole")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfoInputs.cache b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfoInputs.cache index 70dca8a..2ea53dc 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfoInputs.cache +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.AssemblyInfoInputs.cache @@ -1 +1 @@ -b8ec324498b955cde10e0d447472053089677636866fd10913182e4cd771449f +445ae7200d3a86d64fd8d84132af4fd684dfd8243e26c01efb8397c63f675ac3 diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.GeneratedMSBuildEditorConfig.editorconfig b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.GeneratedMSBuildEditorConfig.editorconfig index ec18aaf..dde4c56 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.GeneratedMSBuildEditorConfig.editorconfig +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.GeneratedMSBuildEditorConfig.editorconfig @@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = TestConsole -build_property.ProjectDir = C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\TestConsole\ +build_property.ProjectDir = C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\ build_property.EnableComHosting = build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.assets.cache b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.assets.cache index 8151180..80caf9c 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.assets.cache and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.assets.cache differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.AssemblyReference.cache b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.AssemblyReference.cache index 509dc8b..0afe1ab 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.AssemblyReference.cache and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.AssemblyReference.cache differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.CoreCompileInputs.cache b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.CoreCompileInputs.cache index 048d0de..b32829d 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.CoreCompileInputs.cache +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -fe728fa02375c064b5b90fbe0e283eb32a46cda81b9d22ad4d322ba6ba1775c4 +e51a7f913fc323b8678ee45f620deaa8285fe413e97f4e357f31dbc6bfd79333 diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.FileListAbsolute.txt b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.FileListAbsolute.txt index 71ab84a..39dfffa 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.FileListAbsolute.txt +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.csproj.FileListAbsolute.txt @@ -159,3 +159,164 @@ C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\TestConso C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.pdb C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.genruntimeconfig.cache C:\Users\Brugiere\source\repos\SAE_2A_Anglais3\Project\EntityFramework\TestConsole\obj\Debug\net8.0\ref\TestConsole.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\TestConsole.exe +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\TestConsole.deps.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\TestConsole.runtimeconfig.json +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\TestConsole.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\TestConsole.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Azure.Core.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Azure.Identity.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Humanizer.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Identity.Client.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Mono.TextTemplating.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\SQLitePCLRaw.core.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.CodeDom.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Composition.AttributedModel.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Composition.Convention.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Composition.Hosting.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Composition.Runtime.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Composition.TypedParts.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Drawing.Common.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.IO.Pipelines.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Memory.Data.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Runtime.Caching.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Security.Permissions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\System.Windows.Extensions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\DbContextLib.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Entities.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\StubbedContext.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\StubbedContext.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\DbContextLib.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\bin\Debug\net8.0\Entities.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.csproj.AssemblyReference.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.AssemblyInfoInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.AssemblyInfo.cs +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.csproj.CoreCompileInputs.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.csproj.CopyComplete +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\refint\TestConsole.dll +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.pdb +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\TestConsole.genruntimeconfig.cache +C:\Users\Brugiere\Source\Repos\SAE_2A_Anglais\Project\EntityFramework\TestConsole\obj\Debug\net8.0\ref\TestConsole.dll diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.dll b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.dll index fd3ccfc..c0a9319 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.dll and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.dll differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.genruntimeconfig.cache b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.genruntimeconfig.cache index f46ee45..6e592e2 100644 --- a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.genruntimeconfig.cache +++ b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.genruntimeconfig.cache @@ -1 +1 @@ -4171d4845236dfebd4517a123f834cdcacd581f8fd8f9f05c829f46f3df25821 +b66ce82bc3f28fca567a16df3d09894be4ad7f9d09ab80efeed5229ddc0c10f4 diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.pdb b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.pdb index 4f0e4be..06b8d33 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.pdb and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/TestConsole.pdb differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/apphost.exe b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/apphost.exe index af88ce4..a3295b4 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/apphost.exe and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/apphost.exe differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/ref/TestConsole.dll b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/ref/TestConsole.dll index 032564e..6cc7cfc 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/ref/TestConsole.dll and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/ref/TestConsole.dll differ diff --git a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/refint/TestConsole.dll b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/refint/TestConsole.dll index 032564e..6cc7cfc 100644 Binary files a/Project/EntityFramework/TestConsole/obj/Debug/net8.0/refint/TestConsole.dll and b/Project/EntityFramework/TestConsole/obj/Debug/net8.0/refint/TestConsole.dll differ diff --git a/Project/EntityFramework/TestConsole/obj/TestConsole.csproj.nuget.dgspec.json b/Project/EntityFramework/TestConsole/obj/TestConsole.csproj.nuget.dgspec.json index 1c3f439..542cd50 100644 --- a/Project/EntityFramework/TestConsole/obj/TestConsole.csproj.nuget.dgspec.json +++ b/Project/EntityFramework/TestConsole/obj/TestConsole.csproj.nuget.dgspec.json @@ -1,17 +1,17 @@ { "format": 1, "restore": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj": {} + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj": {} }, "projects": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", "projectName": "DbContextLib", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -33,8 +33,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj" } } } @@ -88,14 +88,14 @@ } } }, - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "projectName": "Entities", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\Entities.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\Entities.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\Entities\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\Entities\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -168,14 +168,14 @@ } } }, - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "projectName": "StubbedContext", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -197,8 +197,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\DbContext\\DbContextLib.csproj" } } } @@ -252,14 +252,14 @@ } } }, - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj": { + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", "projectName": "TestConsole", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -281,8 +281,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj" } } } diff --git a/Project/EntityFramework/TestConsole/obj/project.assets.json b/Project/EntityFramework/TestConsole/obj/project.assets.json index 33320c1..f7bfabc 100644 --- a/Project/EntityFramework/TestConsole/obj/project.assets.json +++ b/Project/EntityFramework/TestConsole/obj/project.assets.json @@ -4361,11 +4361,11 @@ "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", + "projectUniqueName": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", "projectName": "TestConsole", - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", "packagesPath": "C:\\Users\\Brugiere\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\obj\\", + "outputPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" @@ -4387,8 +4387,8 @@ "net8.0": { "targetAlias": "net8.0", "projectReferences": { - "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { - "projectPath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj" + "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj": { + "projectPath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\StubbedContext\\StubbedContext.csproj" } } } diff --git a/Project/EntityFramework/TestConsole/obj/project.nuget.cache b/Project/EntityFramework/TestConsole/obj/project.nuget.cache index feb9d10..c386b0f 100644 --- a/Project/EntityFramework/TestConsole/obj/project.nuget.cache +++ b/Project/EntityFramework/TestConsole/obj/project.nuget.cache @@ -1,8 +1,8 @@ { "version": 2, - "dgSpecHash": "j8NN7LiA2OcwWjL7iEsbC6CXm1zOaHeBq/gPj8FdUkk45G41j6cy16ZazXa/DFTO7Vpj3hHAiSnY+yVl/O1zBQ==", + "dgSpecHash": "NADf70vfzS4llGsb5VlJT+Uo/9zgiJ5RnXT2it7LS9ubbj2jgj0mIZpB25vCuoDl6LllXgwiZ9GmP//h4W5eHw==", "success": true, - "projectFilePath": "C:\\Users\\Brugiere\\source\\repos\\SAE_2A_Anglais3\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", + "projectFilePath": "C:\\Users\\Brugiere\\Source\\Repos\\SAE_2A_Anglais\\Project\\EntityFramework\\TestConsole\\TestConsole.csproj", "expectedPackageFiles": [ "C:\\Users\\Brugiere\\.nuget\\packages\\azure.core\\1.25.0\\azure.core.1.25.0.nupkg.sha512", "C:\\Users\\Brugiere\\.nuget\\packages\\azure.identity\\1.7.0\\azure.identity.1.7.0.nupkg.sha512",