Skip to content

Conflicts between different versions of "FSharp.Core" #669

@fehmud

Description

@fehmud

[EDIT] For those who are experiencing the same problem: just remove Server.Tests.fsproj from the solution and the warnings will be gone.


Building and running SAFE v5.2.1 with .NET 8.0.414 raises warning MSB3277: Found conflicts between different versions of "FSharp.Core" that could not be resolved. Conflicting versions are 8 and 9 -- please see below for complete output.

I've made several attempts at fixing the issue - pinning FSharp.Core in paket.dependencies and in project files, etc. - but none worked. I'm attaching the generated paket.lock as well.

Maybe the target framework of project files should be upgraded to .NET 9?

Thanks for your attention.


$ dotnet --version
8.0.414
$ dotnet new SAFE
The template "SAFE-Stack Web App v5.2.1" was created successfully.

$ dotnet tool restore
Tool 'paket' (version '8.0.3') was restored. Available commands: paket
Tool 'fable' (version '4.19.3') was restored. Available commands: fable
Tool 'femto' (version '0.19.0') was restored. Available commands: femto
Tool 'fantomas' (version '6.3.9') was restored. Available commands: fantomas

Restore was successful.
$ dotnet run
run Run
Building project with version: LocalBuild
Shortened DependencyGraph for Target Run:
<== Run
   <== Build
      <== RestoreClientDependencies
         <== Clean

The running order is:
Group - 1
  - Clean
Group - 2
  - RestoreClientDependencies
Group - 3
  - Build
Group - 4
  - Run
Starting target 'Clean'
> "/usr/bin/mono" --version (In: false, Out: true, Err: true)
/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client> "dotnet" fable clean --yes (In: false, Out: false, Err: false)
Fable 4.19.3: F# to JavaScript compiler
Minimum @fable-org/fable-library-js version (when installed from npm): 1.4.2

Thanks to the contributor! @jgrund
Stand with Ukraine! https://standwithukraine.com.ua/

This will recursively delete all *.fs.js[.map] files in /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client
No files have been deleted. If Fable output is in another directory, pass it as argument.
Finished (Success) 'Clean' in 00:00:00.6679094
Starting target 'RestoreClientDependencies'
/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client> "/opt/node/node-v22.18.0-linux-x64/bin/npm" ci (In: false, Out: false, Err: false)
npm warn deprecated [email protected]: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated [email protected]: Glob versions prior to v9 are no longer supported

added 218 packages, and audited 219 packages in 2s

56 packages are looking for funding
  run `npm fund` for details

3 vulnerabilities (1 low, 2 moderate)

To address all issues, run:
  npm audit fix

Run `npm audit` for details.
Finished (Success) 'RestoreClientDependencies' in 00:00:02.1556580
Starting target 'Build'
.> "dotnet" build Application.sln (In: false, Out: false, Err: false)
  Determining projects to restore...
  Tool 'paket' (version '8.0.3') was restored. Available commands: paket
  Tool 'fable' (version '4.19.3') was restored. Available commands: fable
  Tool 'femto' (version '0.19.0') was restored. Available commands: femto
  Tool 'fantomas' (version '6.3.9') was restored. Available commands: fantomas
  
  Restore was successful.
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  The last full restore is still up to date. Nothing left to do.
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  Total time taken: 0 milliseconds
  The last full restore is still up to date. Nothing left to do.
  The last full restore is still up to date. Nothing left to do.
  The last full restore is still up to date. Nothing left to do.
  Total time taken: 0 milliseconds
  The last full restore is still up to date. Nothing left to do.
  Total time taken: 0 milliseconds
  The last full restore is still up to date. Nothing left to do.
  Total time taken: 0 milliseconds
  Total time taken: 0 milliseconds
  Total time taken: 0 milliseconds
  Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
  The last full restore is still up to date. Nothing left to do.
  Total time taken: 0 milliseconds
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/Shared.fsproj (in 315 ms).
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/Shared.Tests.fsproj (in 324 ms).
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/Client.fsproj (in 324 ms).
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/Server.fsproj (in 323 ms).
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Client/Client.Tests.fsproj (in 324 ms).
  Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj (in 341 ms).
  1 of 7 projects are up-to-date for restore.
  Tool 'paket' (version '8.0.3') was restored. Available commands: paket
  Tool 'fable' (version '4.19.3') was restored. Available commands: fable
  Tool 'femto' (version '0.19.0') was restored. Available commands: femto
  Tool 'fantomas' (version '6.3.9') was restored. Available commands: fantomas
  
  Restore was successful.
  Build -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/bin/Debug/net8.0/Build.dll
  Shared -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll
  Shared.Tests -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll
  Server -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll
  Client -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/bin/Debug/net8.0/Client.dll
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277: Found conflicts between different versions of "FSharp.Core" that could not be resolved. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277: There was a conflict between "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" and "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" was chosen because it was primary and "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" was not. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     References which depend on "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" [/home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll]. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     References which depend on or have been unified to "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" []. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
  Server.Tests -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/bin/Debug/net8.0/Server.Tests.dll
  Client.Tests -> /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Client/bin/Debug/net8.0/Client.Tests.dll

Build succeeded.

/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277: Found conflicts between different versions of "FSharp.Core" that could not be resolved. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277: There was a conflict between "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" and "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" was chosen because it was primary and "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" was not. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     References which depend on "FSharp.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" [/home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll]. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fsharp.core/8.0.403/lib/netstandard2.1/FSharp.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:     References which depend on or have been unified to "FSharp.Core, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" []. [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/bin/Debug/net8.0/Shared.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/expecto/9.0.4/lib/netstandard2.0/Expecto.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Shared/bin/Debug/net8.0/Shared.Tests.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.core/4.5.0/lib/netstandard2.0/Fable.Core.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.mocha/2.17.0/lib/netstandard2.0/Fable.Mocha.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.json/2.25.0/lib/net6.0/Fable.Remoting.Json.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.msgpack/1.24.0/lib/net6.0/Fable.Remoting.MsgPack.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.server/5.41.0/lib/netstandard2.0/Fable.Remoting.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fsharp.control.websockets/0.3.0/lib/netstandard2.1/FSharp.Control.Websockets.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe.viewengine/1.4.0/lib/net5.0/Giraffe.ViewEngine.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/giraffe/6.4.0/lib/net8.0/Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/fable.remoting.giraffe/5.23.0/lib/net5.0/Fable.Remoting.Giraffe.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server/5.1.2/lib/net8.0/SAFE.Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/safe.server.utils/5.0.0/lib/net8.0/SAFE.Server.Utils.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:         /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:           Project file item includes which caused reference "/home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll". [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/.nuget/packages/saturn/0.17.0/lib/net6.0/Saturn.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
/usr/share/dotnet/sdk/8.0.414/Microsoft.Common.CurrentVersion.targets(2412,5): warning MSB3277:             /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server/bin/Debug/net8.0/Server.dll [/home/fehmud/projects/fsharp/FSharpCoreMismatch/tests/Server/Server.Tests.fsproj]
    1 Warning(s)
    0 Error(s)

Time Elapsed 00:00:09.39
Finished (Success) 'Build' in 00:00:09.6538585
Starting target 'Run'
server: /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server> dotnet watch run --no-restore
client: /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client> dotnet fable watch -o output -s --run npx vite
/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server> "dotnet" watch run --no-restore (In: false, Out: true, Err: true)
/home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client> "dotnet" fable watch -o output -s --run npx vite (In: false, Out: true, Err: true)
client: Fable 4.19.3: F# to JavaScript compiler
client: Minimum @fable-org/fable-library-js version (when installed from npm): 1.4.2
client: 
client: Thanks to the contributor! @njlr
client: Stand with Ukraine! https://standwithukraine.com.ua/
client: Parsing Client.fsproj...
client: .> dotnet restore Client.fable-temp.csproj -p:FABLE_COMPILER=true -p:FABLE_COMPILER_4=true -p:FABLE_COMPILER_JAVASCRIPT=true
client:   Determining projects to restore...
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   The last full restore is still up to date. Nothing left to do.
client:   Total time taken: 0 milliseconds
server: dotnet watch 🚀 Started
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   The last full restore is still up to date. Nothing left to do.
client:   Total time taken: 0 milliseconds
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   Restoring /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/Client.fable-temp.csproj
client:   Starting restore process.
client:   Total time taken: 0 milliseconds
server: info: Microsoft.AspNetCore.DataProtection.KeyManagement.XmlKeyManager[62]
server:       User profile is available. Using '/home/fehmud/.aspnet/DataProtection-Keys' as key repository; keys will not be encrypted at rest.
server: info: Microsoft.Hosting.Lifetime[14]
server:       Now listening on: http://localhost:5000
server: info: Microsoft.Hosting.Lifetime[0]
server:       Application started. Press Ctrl+C to shut down.
server: info: Microsoft.Hosting.Lifetime[0]
server:       Hosting environment: Development
server: info: Microsoft.Hosting.Lifetime[0]
server:       Content root path: /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Server
client:   Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/Client.fable-temp.csproj (in 300 ms).
client:   1 of 2 projects are up-to-date for restore.
client: .> dotnet restore /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/Client.fsproj
client:   Determining projects to restore...
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   The last full restore is still up to date. Nothing left to do.
client:   Total time taken: 0 milliseconds
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   The last full restore is still up to date. Nothing left to do.
client:   Total time taken: 0 milliseconds
client:   Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Client/Client.fsproj (in 318 ms).
client:   1 of 2 projects are up-to-date for restore.
client: ../Shared> dotnet restore /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/Shared.fsproj
client:   Determining projects to restore...
client:   Paket version 8.0.3+75b30cdcb8859e8d129f139444d9b9b600bfff07
client:   The last full restore is still up to date. Nothing left to do.
client:   Total time taken: 0 milliseconds
client:   Restored /home/fehmud/projects/fsharp/FSharpCoreMismatch/src/Shared/Shared.fsproj (in 233 ms).
client: Some Nuget packages contain information about NPM dependencies that can be managed by Femto: https://github.com/Zaid-Ajaj/Femto
client: Project and references (68 source files) parsed in 12383ms
client: Loaded Feliz.HookAttribute from ../../../../../.nuget/packages/feliz.compilerplugins/2.2.0/lib/netstandard2.0/Feliz.CompilerPlugins.dll
client: Loaded Feliz.ReactComponentAttribute from ../../../../../.nuget/packages/feliz.compilerplugins/2.2.0/lib/netstandard2.0/Feliz.CompilerPlugins.dll
client: Loaded Feliz.ReactMemoComponentAttribute from ../../../../../.nuget/packages/feliz.compilerplugins/2.2.0/lib/netstandard2.0/Feliz.CompilerPlugins.dll
client: Started Fable compilation...
client: 
client: Fable compilation finished in 10851ms
client: .> npx vite
client: Watching ..
client:   VITE v5.4.19  ready in 179 ms
client:   ➜  Local:   http://localhost:8080/
client:   ➜  Network: use --host to expose
client:   ➜  press h + enter to show help
  C-c C-cserver: dotnet watch 🛑 Shutdown requested. Press Ctrl+C again to force exit.
server: info: Microsoft.Hosting.Lifetime[0]
server:       Application is shutting down...
Gracefully shutting down..
Press ctrl+c again to force quit
server: dotnet watch ⌚ Exited
Killing all processes that are created by FAKE and are still running.
Trying to kill process 'dotnet' (Id = 709578)
Finished (Failed) 'Run' in 00:00:57.7772623

---------------------------------------------------------------------
Build Time Report
---------------------------------------------------------------------
Target                      Duration
------                      --------
Clean                       00:00:00.6656291
RestoreClientDependencies   00:00:02.1554288
Build                       00:00:09.6532512
Run                         00:00:57.7770273   (One or more errors occurred. (Process exit code '130' <> 0. Command Line: dotnet fable watch -o output -s --run npx vite) (Process exit code '137' <> 0. Command Line: dotnet watch run --no-restore))
Total:                      00:01:10.3355653
Status:                     Failure
---------------------------------------------------------------------
$ 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions