ajout des relations
continuous-integration/drone/push Build is passing Details

master
Patrick BRUGIERE 1 year ago
parent d7479939b1
commit faae69f8b6

@ -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<UserEntity> Users { get; set; } = new List<UserEntity>();
public ICollection<VocabularyListEntity> VocabularyList { get; set; } = new List<VocabularyListEntity>();
}
}

@ -11,5 +11,7 @@ namespace Entities
{
[Key]
public string name { get; set; }
public ICollection<VocabularyEntity> vocabularys { get; set; } = new List<VocabularyEntity>();
}
}

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

@ -10,5 +10,6 @@ namespace Entities
{
public int Id { get; set; }
public string Name { get; set; }
public ICollection<UserEntity> Users { get; set; } = new List<UserEntity>();
}
}

@ -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<VocabularyEntity> Words { get; set; } = new List<VocabularyEntity>();
// [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!;
}
}

@ -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<VocabularyListEntity> VocabularyList { get; set; } = new List<VocabularyListEntity>();
}
}

@ -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<TranslateEntity> translations { get; } = new List<TranslateEntity>();
public string LangueName { get; set; }
public LangueEntity? Langue { get; set; } = null!;
}
}

@ -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<TranslateEntity> translation { get; set; } = new List<TranslateEntity>();
public ICollection<GroupEntity> Groups { get; } = new List<GroupEntity>();
}
}

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

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

@ -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")]

@ -1 +1 @@
c105925b50b8060aeef8eb23bbf1e1cbc6914d3209f0d7b99bd44c5d48c5bb6d
0a4c03277f1ef66d265d49347c2c11562a8e2f168f122e4838de7a46e5d12151

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

@ -1 +1 @@
070cc31feb55d078798f689692a6c2005051367bff2bc166b5be930f97f1ed30
2a237c22c653ec8daeaff3bca00bf48bd2296af599ae6eaca30e4510dec8afdd

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

@ -1 +1 @@
a5b881f3c07a91a9862800360a9116886971e41b4a5d943b6613b8bcae9d5ba5
e135e3d75a7f5dbec4bc303707ba7d29ec24e3defc935ad2da2269bf3bccaabb

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

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

@ -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",

@ -10,6 +10,16 @@ namespace StubbedContextLib
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
base.OnModelCreating(modelBuilder);
modelBuilder.Entity<VocabularyEntity>()
.HasMany(al => al.translations)
.WithMany(ar => ar.Words).UsingEntity<VocabularyTranslateEntity>();
modelBuilder.Entity<VocabularyListEntity>()
.HasMany(u => u.Groups)
.WithMany(g => g.VocabularyList)
.UsingEntity<VocabularyListGroup>();
modelBuilder.Entity<UserEntity>().HasData(
new UserEntity
{

@ -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")]

@ -1 +1 @@
b974a6362aacbccc021decd7ef03b10d79e12ecba397cbb75b5a7ef2ffb7a8ad
19bead6524fc8f79bfb8d075d7920be21ec5b1c35060573f3f90eac913300589

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

@ -1 +1 @@
3c89f918df29f4e9932f95d42659359680f123aaea273c0ff7fe70a53d6d562a
70dd50d7901dfac5660d024a5fe199dbcd3a545cc24505aba298a3c305e4cd7b

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

@ -1 +1 @@
ef4174677b1e58b4935d742d958b33ff2ba04df46a1a4015d4b88ce57c5248f1
405f6e9632a1ddeaa35ae436e163d04c07f6e2bc216a86ae63160bf7c0620788

@ -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"
}
}
}

@ -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"
}
}
}

@ -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",

@ -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")]

@ -1 +1 @@
b8ec324498b955cde10e0d447472053089677636866fd10913182e4cd771449f
445ae7200d3a86d64fd8d84132af4fd684dfd8243e26c01efb8397c63f675ac3

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

@ -1 +1 @@
fe728fa02375c064b5b90fbe0e283eb32a46cda81b9d22ad4d322ba6ba1775c4
e51a7f913fc323b8678ee45f620deaa8285fe413e97f4e357f31dbc6bfd79333

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

@ -1 +1 @@
4171d4845236dfebd4517a123f834cdcacd581f8fd8f9f05c829f46f3df25821
b66ce82bc3f28fca567a16df3d09894be4ad7f9d09ab80efeed5229ddc0c10f4

@ -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"
}
}
}

@ -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"
}
}
}

@ -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",

Loading…
Cancel
Save