Initial commit - ERP
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
<IsPackable>false</IsPackable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="coverlet.collector" Version="6.0.4" />
|
||||
<PackageReference Include="FluentAssertions" Version="6.12.0" />
|
||||
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="10.0.0" />
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
||||
<PackageReference Include="xunit" Version="2.9.2" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Using Include="Xunit" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Chat.Domain\Chat.Domain.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,135 @@
|
||||
using Chat.Domain.Entities;
|
||||
using FluentAssertions;
|
||||
using System;
|
||||
using Xunit;
|
||||
|
||||
namespace Chat.Tests;
|
||||
|
||||
public class ConversationTests
|
||||
{
|
||||
[Fact]
|
||||
public void Test_CanCreateConversationWithDefaultValues()
|
||||
{
|
||||
// Arrange & Act
|
||||
var conversation = new Conversation();
|
||||
|
||||
// Assert
|
||||
conversation.Should().NotBeNull();
|
||||
conversation.Id.Should().BeEmpty();
|
||||
conversation.Participant1Id.Should().BeEmpty();
|
||||
conversation.Participant2Id.Should().BeEmpty();
|
||||
conversation.CreatedAt.Should().BeCloseTo(DateTime.UtcNow, TimeSpan.FromSeconds(1));
|
||||
conversation.LastMessageId.Should().BeNull();
|
||||
conversation.UnreadCount1.Should().Be(0);
|
||||
conversation.UnreadCount2.Should().Be(0);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test_CanCreateConversationWithAllProperties()
|
||||
{
|
||||
// Arrange
|
||||
var id = Guid.NewGuid();
|
||||
var participant1Id = Guid.NewGuid();
|
||||
var participant2Id = Guid.NewGuid();
|
||||
var createdAt = DateTime.UtcNow.AddHours(-1);
|
||||
var lastMessageId = Guid.NewGuid();
|
||||
var lastMessageAt = DateTime.UtcNow;
|
||||
var unreadCount1 = 5;
|
||||
var unreadCount2 = 2;
|
||||
|
||||
// Act
|
||||
var conversation = new Conversation
|
||||
{
|
||||
Id = id,
|
||||
Participant1Id = participant1Id,
|
||||
Participant2Id = participant2Id,
|
||||
CreatedAt = createdAt,
|
||||
LastMessageId = lastMessageId,
|
||||
LastMessageAt = lastMessageAt,
|
||||
UnreadCount1 = unreadCount1,
|
||||
UnreadCount2 = unreadCount2
|
||||
};
|
||||
|
||||
// Assert
|
||||
conversation.Id.Should().Be(id);
|
||||
conversation.Participant1Id.Should().Be(participant1Id);
|
||||
conversation.Participant2Id.Should().Be(participant2Id);
|
||||
conversation.CreatedAt.Should().Be(createdAt);
|
||||
conversation.LastMessageId.Should().Be(lastMessageId);
|
||||
conversation.LastMessageAt.Should().Be(lastMessageAt);
|
||||
conversation.UnreadCount1.Should().Be(unreadCount1);
|
||||
conversation.UnreadCount2.Should().Be(unreadCount2);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test_ConversationPropertiesAreCorrectlySet()
|
||||
{
|
||||
// Arrange
|
||||
var conversation = new Conversation();
|
||||
|
||||
// Act
|
||||
conversation.Id = Guid.NewGuid();
|
||||
conversation.Participant1Id = Guid.NewGuid();
|
||||
conversation.Participant2Id = Guid.NewGuid();
|
||||
conversation.CreatedAt = DateTime.UtcNow;
|
||||
conversation.LastMessageId = Guid.NewGuid();
|
||||
conversation.LastMessageAt = DateTime.UtcNow;
|
||||
conversation.UnreadCount1 = 10;
|
||||
conversation.UnreadCount2 = 7;
|
||||
|
||||
// Assert
|
||||
conversation.Id.Should().NotBeEmpty();
|
||||
conversation.Participant1Id.Should().NotBeEmpty();
|
||||
conversation.Participant2Id.Should().NotBeEmpty();
|
||||
conversation.CreatedAt.Should().BeAfter(DateTime.MinValue);
|
||||
conversation.LastMessageId.Should().NotBeNull();
|
||||
conversation.LastMessageAt.Should().BeAfter(DateTime.MinValue);
|
||||
conversation.UnreadCount1.Should().Be(10);
|
||||
conversation.UnreadCount2.Should().Be(7);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test_LastMessageIdCanBeNullable()
|
||||
{
|
||||
// Arrange
|
||||
var conversation = new Conversation();
|
||||
var messageId = Guid.NewGuid();
|
||||
|
||||
// Act
|
||||
conversation.LastMessageId = messageId;
|
||||
|
||||
// Assert
|
||||
conversation.LastMessageId.Should().NotBeNull();
|
||||
conversation.LastMessageId.Should().Be(messageId);
|
||||
|
||||
// Act - set to null
|
||||
conversation.LastMessageId = null;
|
||||
|
||||
// Assert
|
||||
conversation.LastMessageId.Should().BeNull();
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test_CreatedAtDefaultsToCurrentTime()
|
||||
{
|
||||
// Arrange & Act
|
||||
var beforeCreation = DateTime.UtcNow;
|
||||
var conversation = new Conversation();
|
||||
var afterCreation = DateTime.UtcNow;
|
||||
|
||||
// Assert
|
||||
conversation.CreatedAt.Should().BeOnOrBefore(afterCreation);
|
||||
conversation.CreatedAt.Should().BeOnOrAfter(beforeCreation);
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void Test_UnreadCountsDefaultToZero()
|
||||
{
|
||||
// Arrange & Act
|
||||
var conversation = new Conversation();
|
||||
|
||||
// Assert
|
||||
conversation.UnreadCount1.Should().Be(0);
|
||||
conversation.UnreadCount2.Should().Be(0);
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
namespace Commerce.Core.Tests;
|
||||
|
||||
public class UnitTest1
|
||||
{
|
||||
[Fact]
|
||||
public void Test1()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
BIN
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/yla/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/yla/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/yla/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xunit.runner.visualstudio/2.8.2/build/net6.0/xunit.runner.visualstudio.props" Condition="Exists('$(NuGetPackageRoot)xunit.runner.visualstudio/2.8.2/build/net6.0/xunit.runner.visualstudio.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)xunit.core/2.9.2/build/xunit.core.props" Condition="Exists('$(NuGetPackageRoot)xunit.core/2.9.2/build/xunit.core.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/10.0.0/buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/10.0.0/buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.testplatform.testhost/17.11.1/build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props" Condition="Exists('$(NuGetPackageRoot)microsoft.testplatform.testhost/17.11.1/build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.codecoverage/17.11.1/build/netstandard2.0/Microsoft.CodeCoverage.props" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage/17.11.1/build/netstandard2.0/Microsoft.CodeCoverage.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk/17.11.1/build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk/17.11.1/build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Pkgxunit_analyzers Condition=" '$(Pkgxunit_analyzers)' == '' ">/home/yla/.nuget/packages/xunit.analyzers/1.16.0</Pkgxunit_analyzers>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)xunit.core/2.9.2/build/xunit.core.targets" Condition="Exists('$(NuGetPackageRoot)xunit.core/2.9.2/build/xunit.core.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.codecoverage/17.11.1/build/netstandard2.0/Microsoft.CodeCoverage.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.codecoverage/17.11.1/build/netstandard2.0/Microsoft.CodeCoverage.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.net.test.sdk/17.11.1/build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.net.test.sdk/17.11.1/build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets')" />
|
||||
<Import Project="$(NuGetPackageRoot)coverlet.collector/6.0.4/build/netstandard2.0/coverlet.collector.targets" Condition="Exists('$(NuGetPackageRoot)coverlet.collector/6.0.4/build/netstandard2.0/coverlet.collector.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")]
|
||||
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Chat.Tests")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+206dfeabd74212fb6442b2ac195b5904b0472cb7")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Chat.Tests")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Chat.Tests")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
+1
@@ -0,0 +1 @@
|
||||
0be534d2354b5d87a56dc5d59a5a50f1545145a9aa781c094257b84571da5870
|
||||
+17
@@ -0,0 +1,17 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net10.0
|
||||
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||
build_property.TargetFrameworkVersion = v10.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = Chat.Tests
|
||||
build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Managerial/Communication/Chat/Chat.Tests/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 10.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
// <auto-generated/>
|
||||
global using System;
|
||||
global using System.Collections.Generic;
|
||||
global using System.IO;
|
||||
global using System.Linq;
|
||||
global using System.Net.Http;
|
||||
global using System.Threading;
|
||||
global using System.Threading.Tasks;
|
||||
global using Xunit;
|
||||
Binary file not shown.
BIN
Binary file not shown.
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "Jd/8fGXMXmQ=",
|
||||
"success": true,
|
||||
"projectFilePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Managerial/Communication/Chat/Chat.Tests/Chat.Tests.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/yla/.nuget/packages/bogus/35.6.3/bogus.35.6.3.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/coverlet.collector/6.0.4/coverlet.collector.6.0.4.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/fluentassertions/6.12.0/fluentassertions.6.12.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/fluentvalidation/12.1.1/fluentvalidation.12.1.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.internal/9.0.5/microsoft.aspnetcore.cryptography.internal.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/9.0.5/microsoft.aspnetcore.cryptography.keyderivation.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/9.0.5/microsoft.aspnetcore.identity.entityframeworkcore.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.codecoverage/17.11.1/microsoft.codecoverage.17.11.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.entityframeworkcore/10.0.0/microsoft.entityframeworkcore.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.entityframeworkcore.abstractions/10.0.0/microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.entityframeworkcore.analyzers/10.0.0/microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.entityframeworkcore.inmemory/10.0.0/microsoft.entityframeworkcore.inmemory.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.entityframeworkcore.relational/9.0.5/microsoft.entityframeworkcore.relational.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.caching.abstractions/10.0.0/microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.caching.memory/10.0.0/microsoft.extensions.caching.memory.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/9.0.5/microsoft.extensions.configuration.abstractions.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.0/microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.0/microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.identity.core/9.0.5/microsoft.extensions.identity.core.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.identity.stores/9.0.5/microsoft.extensions.identity.stores.9.0.5.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.logging/10.0.0/microsoft.extensions.logging.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.0/microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.options/10.0.0/microsoft.extensions.options.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.0/microsoft.extensions.primitives.10.0.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.net.test.sdk/17.11.1/microsoft.net.test.sdk.17.11.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.testplatform.objectmodel/17.11.1/microsoft.testplatform.objectmodel.17.11.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/microsoft.testplatform.testhost/17.11.1/microsoft.testplatform.testhost.17.11.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/npgsql/9.0.3/npgsql.9.0.3.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/npgsql.entityframeworkcore.postgresql/9.0.4/npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/system.configuration.configurationmanager/4.4.0/system.configuration.configurationmanager.4.4.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/system.security.cryptography.protecteddata/4.4.0/system.security.cryptography.protecteddata.4.4.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit/2.9.2/xunit.2.9.2.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.analyzers/1.16.0/xunit.analyzers.1.16.0.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.assert/2.9.2/xunit.assert.2.9.2.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.core/2.9.2/xunit.core.2.9.2.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.extensibility.core/2.9.2/xunit.extensibility.core.2.9.2.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.extensibility.execution/2.9.2/xunit.extensibility.execution.2.9.2.nupkg.sha512",
|
||||
"/home/yla/.nuget/packages/xunit.runner.visualstudio/2.8.2/xunit.runner.visualstudio.2.8.2.nupkg.sha512"
|
||||
],
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1608",
|
||||
"level": "Warning",
|
||||
"message": "Detected package version outside of dependency constraint: Npgsql.EntityFrameworkCore.PostgreSQL 9.0.4 requires Microsoft.EntityFrameworkCore (>= 9.0.1 && < 10.0.0) but version Microsoft.EntityFrameworkCore 10.0.0 was resolved.",
|
||||
"projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Managerial/Communication/Chat/Chat.Tests/Chat.Tests.csproj",
|
||||
"warningLevel": 1,
|
||||
"filePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/ERP/Managerial/Communication/Chat/Chat.Tests/Chat.Tests.csproj",
|
||||
"libraryId": "Microsoft.EntityFrameworkCore",
|
||||
"targetGraphs": [
|
||||
"net10.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user