I need a concrete (ideally minimal) testcase for the/a project that gives you the “dupe types”"
Yes its a .net 4.7 project, I know it does
PoolConsoleApp.zip (1.7 MB)
This is the visual studio project
That doesn’t help me.
Yeah I know, I just wanted you to see that I wasnt using .net core app
MultiplePlaces.zip (234.9 KB)
I was able to reproduce the issue, seems its Microsoft.Azure.ServiceBus
Ah, I think I remember the scenario that caused this; it’s not because of ServiceBus; its because you have a project ref to a .NETStandard library, and that makes your .NET Framework project inherit the .NET Standard base package, NETStandard.Library:[2.0]. I’ll see if I can find another way to mitigate this…
Or not, guess the class library was just there to complicate the test case ;). Investigating…
yep,
its a direct result from the previous change. Favoring .NET Standard over .NET means that System.Runtime.dll now comes from
.../EBuild/Packages/NuGet/system.runtime/4.3.1/ref/netstandard1.5/System.Runtime.dll
instead of net45
, which is explicitly empty. So clearly that was the wring approach to fix the original issue here :(. Back to square one, then.
I’ve changed to to prefer .NET Standard for lib, and .NET for ref, which seems like the worst hack ever and like it cannot possibility be correct — but that lets this project compile fine, and still gets you the copy of System.Buffers you need, ion your previous testcase.
I’ll commit so you can test, but I’m almost 100% certain something else will break form this, at which point I’m gonna give up on this…
Are you doing a zip build ?
Will it also result in the same number of dlls as the visual studio example ?
Yes, 20200517-155818-elements-develop [setups]
I’m also changing that the zip distro will be in the builds by default, next.
At this point Im only really still using .net because I was having publishing issues with the .net core version.
Yeah, we need to look into that as well, next.
That said, the same conflict could ostensibly happen between .NET Standard and .NET Core, I imagine.
Something next week I’ll do a more extensive research to see if this lib/ref/targets mess actually is documented somewhere, at least in parts… Not having high hopes though.
My big solution builds.
I found one thing. If you create a .net core console app with echoes.dll referenced and build.
This error appears
Reference 'Echoes' could not be resolved for target 'Echoes' (Echoes .NETCore anycpu).
Cool.
Curious. This one really is a totally unrelated issue; we shop Echoes.dll for .NET and for .NET Standard 2…0 iirc. Any .NET Core project that’s compatible with Standard 2.0 (not sure which version that is, off hands, but definitely 3.0 and later, prolly some 2.x ones too) should pick that up; an older .NET Core version that does not support Standard 2.0 indeed cannot use Echoes.dll because Standard 1.6 and below simply don’t have the APIs we need for Echoes (I’ll see if we can build a more limited version, maybe).
I’ll test mysel when im back at the computer, but if a Standard 2.0-compatible Core app doesn’t automatically pick the right Echoes.dll ref, that’s a bug (dare say regression); assuming that reproduced readily for me tomorrow, I’ll fix, else i might need more details or a test case.
Strange. This is the build log.
/Library/Frameworks/Mono.framework/Versions/Current/Commands/mono /Users/JohnMoshakis/Documents/Elements/EBuild.exe /Users/JohnMoshakis/Documents/develop/Echoes/Core/ConsoleApplication8/ConsoleApplication8.sln --logger:fire --configuration:Debug --no-goal --debug --statistics --verbosity:diagnostic --xml:/var/folders/51/b5sv97c13sd9zw0q55gqcp5c0000gn/T/ConsoleApplication8.fire.xml --build
RemObjects EBuild. An open source build engine for Elements and beyond.
Copyright RemObjects Software 2016-2020. All Rights Reserved. Created by marc hoffman.
Version 10.0.0.2516 (develop) built on bajor, 20200517-162846. Commit fb2fe90.
-> Task RemObjects.EBuild.BuildSolution started.
-> Project ConsoleApplication8 started.
– Task RemObjects.EBuild.Elements.ElementsProjectPreBuildTask skipped for ConsoleApplication8, condition not met.
-> Task RemObjects.EBuild.Elements.ElementsBuildProject started for ConsoleApplication8.
-> Task RemObjects.EBuild.Elements.ElementsExpandCopyToOutputDirectoryPaths started for ConsoleApplication8.
<- Task RemObjects.EBuild.Elements.ElementsExpandCopyToOutputDirectoryPaths finished for ConsoleApplication8, took 0.0244s (0.025s).
-> Task RemObjects.EBuild.Elements.ElementsApplyLegacySettings started for ConsoleApplication8, Echoes.
Mapping DefineConstants=DEBUG;TRACE; to ConditionalDefines in Target Echoes
Mapping AssemblyName=ConsoleApplication8 to BinaryName in Target Echoes
Mapping CpuType=anycpu to Architecture in Target Echoes
<- Task RemObjects.EBuild.Elements.ElementsApplyLegacySettings finished for ConsoleApplication8, Echoes, took 0.0047s (0.004s).
-> Task RemObjects.EBuild.Elements.ElementsSanityCheck started for ConsoleApplication8, Echoes.
<- Task RemObjects.EBuild.Elements.ElementsSanityCheck finished for ConsoleApplication8, Echoes, took 0.0010s (0.001s).
-> Task RemObjects.EBuild.Elements.ElementsPreparePlatforms started for ConsoleApplication8.
Preparing target ‘Echoes’ (platform ‘Echoes’).
D: Target-specific Settings, before prepare
D: - <Architecture = anycpu [Target: Echoes]>
D: - <BinaryName = ConsoleApplication8 [Target: Echoes]>
D: - <ConditionalDefines = DEBUG;TRACE; [Target: Echoes]>
D: - <Mode = Echoes [Target: Echoes]>
D: - <OutputType = Executable [Target: Echoes]>
D: - <SubMode = .NET [Target: Echoes]>
-> Task RemObjects.EBuild.Elements.ElementsPreflightEchoes started for ConsoleApplication8.
<- Task RemObjects.EBuild.Elements.ElementsPreflightEchoes finished for ConsoleApplication8, took 0.0007s (0.000s).
-> Task RemObjects.EBuild.Elements.ElementsPrepareEchoesPlatform started for ConsoleApplication8, Echoes.
Adding implicit package reference to ‘Microsoft.NETCore.App.Ref:[3.0,5.0.0-preview.2.20160.6]’.
<- Task RemObjects.EBuild.Elements.ElementsPrepareEchoesPlatform finished for ConsoleApplication8, Echoes, took 0.0578s (0.059s).
D: Target-specific Settings, after prepare
D: - <Architecture = anycpu [Target: Echoes]>
D: - <BinaryName = ConsoleApplication8 [Target: Echoes]>
D: - <ConditionalDefines = DEBUG;TRACE; [Target: Echoes]>
D: - <GenerateMDB = False [Target: Echoes]>
D: - <IDE:TargetInfo = .NETCoreApp5.0 (compatible with netstandard2.1) [Target: Echoes]>
D: - <ImpliedConditionalDefines = NETCOREAPP;NETCOREAPP5_0 [Target: Echoes]>
D: - <ImpliedDefaultUses = Microsoft.VisualBasic;System;System.Collections;System.Collections.Generic;System.Diagnostics;System.Linq;System.Xml.Linq;System.Threading.Tasks [Target: Echoes]>
D: - <Mode = Echoes [Target: Echoes]>
D: - <NETCoreSDKFolder = /usr/local/share/dotnet/sdk/5.0.100-preview.2.20176.6 [Target: Echoes]>
D: - <NETStandardVersion = 2.1 [Target: Echoes]>
D: - <NuGetPlatformName = netcoreapp [Target: Echoes]>
D: - <NuGetPlatformVersion = 5.0 [Target: Echoes]>
D: - <OutputType = Executable [Target: Echoes]>
D: - <SubMode = .NETCore [Target: Echoes]>
D: - <SubModeNameOverride = .NETCore5.0 [Target: Echoes]>
D: - <TargetFrameworkName = .NETCoreApp [Target: Echoes]>
D: - <TargetFrameworkNameLong = .NETCoreApp,Version=v5.0 [Target: Echoes]>
D: - <TargetFrameworkVersion = 5.0 [Target: Echoes]>
<- Task RemObjects.EBuild.Elements.ElementsPreparePlatforms finished for ConsoleApplication8, took 0.0785s (0.080s).
-> Task RemObjects.EBuild.Elements.ElementsResolveSourceFiles started for ConsoleApplication8, Echoes.
<- Task RemObjects.EBuild.Elements.ElementsResolveSourceFiles finished for ConsoleApplication8, Echoes, took 0.0082s (0.008s).
– Task RemObjects.EBuild.Elements.ElementsResolveHeaderImportFiles skipped for ConsoleApplication8, Echoes, condition not met.
-> Task RemObjects.EBuild.Elements.ElementsPreCompile started for ConsoleApplication8, Echoes.
-> Task RemObjects.EBuild.Elements.ElementsPreCompileEchoes started for ConsoleApplication8, Echoes.
-> Task RemObjects.EBuild.Elements.ElementsResolveContent started for ConsoleApplication8, Echoes.
<- Task RemObjects.EBuild.Elements.ElementsResolveContent finished for ConsoleApplication8, Echoes, took 0.0008s (0.001s).
-> Task RemObjects.EBuild.Elements.ElementsResolveResourceFiles started for ConsoleApplication8, Echoes.
<- Task RemObjects.EBuild.Elements.ElementsResolveResourceFiles finished for ConsoleApplication8, Echoes, took 0.0005s (0.001s).
-> Task RemObjects.EBuild.Elements.ElementsEchoesProcessResources started for ConsoleApplication8, Echoes.
Processing Resource ‘Properties\Resources.resx’ to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Obj/ConsoleApplication8-38DC976978F75331F35D1D2456C2F37E2F6CF1AF/Debug/Echoes/res/Properties\Resources.resources’.
<- Task RemObjects.EBuild.Elements.ElementsEchoesProcessResources finished for ConsoleApplication8, Echoes, took 0.1188s (0.121s).
-> Task RemObjects.EBuild.Elements.ElementsEchoesResolveXamlFiles started for ConsoleApplication8, Echoes.
<- Task RemObjects.EBuild.Elements.ElementsEchoesResolveXamlFiles finished for ConsoleApplication8, Echoes, took 0.0002s (0.000s).
<- Task RemObjects.EBuild.Elements.ElementsPreCompileEchoes finished for ConsoleApplication8, Echoes, took 0.0001s (0.126s).
– Task RemObjects.EBuild.Elements.ElementsPreCompileToffee skipped for ConsoleApplication8, Echoes, condition not met.
– Task RemObjects.EBuild.Elements.ElementsPreCompileCooper skipped for ConsoleApplication8, Echoes, condition not met.
– Task RemObjects.EBuild.Elements.ElementsPreCompileIsland skipped for ConsoleApplication8, Echoes, condition not met.
<- Task RemObjects.EBuild.Elements.ElementsPreCompile finished for ConsoleApplication8, Echoes, took 0.0000s (0.222s).
– Task RemObjects.EBuild.Elements.ElementsApplyLegacySettings skipped for ConsoleApplication8, Echoes, already ran.
– Task RemObjects.EBuild.Elements.ElementsPreparePlatforms skipped for ConsoleApplication8, already ran.
-> Task RemObjects.EBuild.Elements.ElementsCheckForTargetlessReferences started for ConsoleApplication8.
<- Task RemObjects.EBuild.Elements.ElementsCheckForTargetlessReferences finished for ConsoleApplication8, took 0.0013s (0.001s).
-> Task RemObjects.EBuild.Elements.ElementsResolveReferences started for ConsoleApplication8.
-> Target Echoes started.
-> Task RemObjects.EBuild.Elements.ElementsResolveEchoesReferencesForTarget started for ConsoleApplication8, Echoes.
-> Task RemObjects.EBuild.Elements.ElementsProcessNuGetReferences started for ConsoleApplication8, Echoes.
D: Package Microsoft.NETCore.App.Ref:3.1.0 found in local cache.
Adding .dll Reference ‘Microsoft.CSharp.dll’.
Adding .dll Reference ‘System.Web.dll’.
Adding .dll Reference ‘System.Diagnostics.Contracts.dll’.
Adding .dll Reference ‘System.ServiceModel.Web.dll’.
Adding .dll Reference ‘System.Diagnostics.FileVersionInfo.dll’.
Adding .dll Reference ‘System.Runtime.Intrinsics.dll’.
Adding .dll Reference ‘System.Net.Security.dll’.
Adding .dll Reference ‘System.Xml.XPath.XDocument.dll’.
Adding .dll Reference ‘System.Xml.Linq.dll’.
Adding .dll Reference ‘System.Net.WebSockets.Client.dll’.
Adding .dll Reference ‘System.IO.dll’.
Adding .dll Reference ‘System.Dynamic.Runtime.dll’.
Adding .dll Reference ‘System.Runtime.Serialization.Xml.dll’.
Adding .dll Reference ‘System.Security.Principal.dll’.
Adding .dll Reference ‘System.Reflection.dll’.
Adding .dll Reference ‘System.Threading.ThreadPool.dll’.
Adding .dll Reference ‘System.Net.dll’.
Adding .dll Reference ‘System.IO.Compression.FileSystem.dll’.
Adding .dll Reference ‘System.Reflection.Metadata.dll’.
Adding .dll Reference ‘System.ComponentModel.EventBasedAsync.dll’.
Adding .dll Reference ‘System.Diagnostics.DiagnosticSource.dll’.
Adding .dll Reference ‘System.Runtime.CompilerServices.VisualC.dll’.
Adding .dll Reference ‘System.Threading.dll’.
Adding .dll Reference ‘netstandard.dll’.
Adding .dll Reference ‘Microsoft.VisualBasic.dll’.
Adding .dll Reference ‘System.IO.UnmanagedMemoryStream.dll’.
Adding .dll Reference ‘System.Xml.XPath.dll’.
Adding .dll Reference ‘System.Xml.XmlDocument.dll’.
Adding .dll Reference ‘System.Configuration.dll’.
Adding .dll Reference ‘System.Resources.Writer.dll’.
Adding .dll Reference ‘System.Console.dll’.
Adding .dll Reference ‘System.Net.Sockets.dll’.
Adding .dll Reference ‘System.Net.Http.dll’.
Adding .dll Reference ‘System.Web.HttpUtility.dll’.
Adding .dll Reference ‘System.Text.Encoding.Extensions.dll’.
Adding .dll Reference ‘System.Net.NetworkInformation.dll’.
Adding .dll Reference ‘Microsoft.VisualBasic.Core.dll’.
Adding .dll Reference ‘System.Security.Claims.dll’.
Adding .dll Reference ‘System.ComponentModel.Primitives.dll’.
Adding .dll Reference ‘System.IO.FileSystem.DriveInfo.dll’.
Adding .dll Reference ‘System.IO.Compression.Brotli.dll’.
Adding .dll Reference ‘System.Security.Cryptography.X509Certificates.dll’.
Adding .dll Reference ‘System.Reflection.Primitives.dll’.
Adding .dll Reference ‘System.Runtime.Numerics.dll’.
Adding .dll Reference ‘System.IO.FileSystem.Watcher.dll’.
Adding .dll Reference ‘System.Diagnostics.TraceSource.dll’.
Adding .dll Reference ‘System.Reflection.Emit.Lightweight.dll’.
Adding .dll Reference ‘System.Text.Encoding.CodePages.dll’.
Adding .dll Reference ‘System.Linq.Expressions.dll’.
Adding .dll Reference ‘System.Threading.Timer.dll’.
Adding .dll Reference ‘System.Runtime.InteropServices.dll’.
Adding .dll Reference ‘System.IO.Pipes.dll’.
Adding .dll Reference ‘System.Net.HttpListener.dll’.
Adding .dll Reference ‘System.Text.RegularExpressions.dll’.
Adding .dll Reference ‘System.Runtime.Serialization.dll’.
Adding .dll Reference ‘System.IO.Compression.dll’.
Adding .dll Reference ‘System.Threading.Tasks.Parallel.dll’.
Adding .dll Reference ‘WindowsBase.dll’.
Adding .dll Reference ‘System.Data.DataSetExtensions.dll’.
Adding .dll Reference ‘System.Collections.NonGeneric.dll’.
Adding .dll Reference ‘System.Collections.Concurrent.dll’.
Adding .dll Reference ‘System.Threading.Overlapped.dll’.
Adding .dll Reference ‘System.Text.Encodings.Web.dll’.
Adding .dll Reference ‘System.Xml.Serialization.dll’.
Adding .dll Reference ‘System.Runtime.Handles.dll’.
Adding .dll Reference ‘System.Net.WebProxy.dll’.
Adding .dll Reference ‘System.Text.Json.dll’.
Adding .dll Reference ‘System.ObjectModel.dll’.
Adding .dll Reference ‘System.Net.WebHeaderCollection.dll’.
Adding .dll Reference ‘System.Runtime.InteropServices.RuntimeInformation.dll’.
Adding .dll Reference ‘System.ComponentModel.TypeConverter.dll’.
Adding .dll Reference ‘System.Net.Mail.dll’.
Adding .dll Reference ‘System.Threading.Tasks.Extensions.dll’.
Adding .dll Reference ‘System.Linq.Parallel.dll’.
Adding .dll Reference ‘System.Xml.XDocument.dll’.
Adding .dll Reference ‘System.Security.SecureString.dll’.
Adding .dll Reference ‘System.ComponentModel.Annotations.dll’.
Adding .dll Reference ‘System.IO.FileSystem.Primitives.dll’.
Adding .dll Reference ‘mscorlib.dll’.
Adding .dll Reference ‘System.Security.Cryptography.Primitives.dll’.
Adding .dll Reference ‘System.IO.Compression.ZipFile.dll’.
Adding .dll Reference ‘System.Windows.dll’.
Adding .dll Reference ‘System.Runtime.InteropServices.WindowsRuntime.dll’.
Adding .dll Reference ‘System.Linq.Queryable.dll’.
Adding .dll Reference ‘System.Resources.ResourceManager.dll’.
Adding .dll Reference ‘System.Resources.Reader.dll’.
Adding .dll Reference ‘System.Collections.dll’.
Adding .dll Reference ‘System.Reflection.Emit.ILGeneration.dll’.
Adding .dll Reference ‘System.Data.Common.dll’.
Adding .dll Reference ‘System.Net.NameResolution.dll’.
Adding .dll Reference ‘System.ComponentModel.dll’.
Adding .dll Reference ‘System.Runtime.Loader.dll’.
Adding .dll Reference ‘System.Xml.ReaderWriter.dll’.
Adding .dll Reference ‘System.Threading.Tasks.dll’.
Adding .dll Reference ‘System.Diagnostics.Tracing.dll’.
Adding .dll Reference ‘System.AppContext.dll’.
Adding .dll Reference ‘System.Buffers.dll’.
Adding .dll Reference ‘System.Security.Cryptography.Csp.dll’.
Adding .dll Reference ‘System.Diagnostics.TextWriterTraceListener.dll’.
Adding .dll Reference ‘System.Text.Encoding.dll’.
Adding .dll Reference ‘System.Transactions.dll’.
Adding .dll Reference ‘System.Threading.Tasks.Dataflow.dll’.
Adding .dll Reference ‘System.IO.MemoryMappedFiles.dll’.
Adding .dll Reference ‘System.Runtime.CompilerServices.Unsafe.dll’.
Adding .dll Reference ‘System.Globalization.dll’.
Adding .dll Reference ‘System.Collections.Specialized.dll’.
Adding .dll Reference ‘System.ValueTuple.dll’.
Adding .dll Reference ‘System.Runtime.dll’.
Adding .dll Reference ‘System.Net.ServicePoint.dll’.
Adding .dll Reference ‘System.Xml.XmlSerializer.dll’.
Adding .dll Reference ‘System.Reflection.Extensions.dll’.
Adding .dll Reference ‘System.Globalization.Extensions.dll’.
Adding .dll Reference ‘System.Runtime.Extensions.dll’.
Adding .dll Reference ‘System.Data.dll’.
Adding .dll Reference ‘System.dll’.
Adding .dll Reference ‘System.Security.Cryptography.Encoding.dll’.
Adding .dll Reference ‘System.IO.IsolatedStorage.dll’.
Adding .dll Reference ‘System.Reflection.TypeExtensions.dll’.
Adding .dll Reference ‘System.Globalization.Calendars.dll’.
Adding .dll Reference ‘System.Net.Requests.dll’.
Adding .dll Reference ‘System.Net.WebSockets.dll’.
Adding .dll Reference ‘System.Reflection.Emit.dll’.
Adding .dll Reference ‘System.IO.FileSystem.dll’.
Adding .dll Reference ‘System.Runtime.Serialization.Json.dll’.
Adding .dll Reference ‘System.Security.Cryptography.Algorithms.dll’.
Adding .dll Reference ‘System.Threading.Thread.dll’.
Adding .dll Reference ‘System.Numerics.Vectors.dll’.
Adding .dll Reference ‘System.ServiceProcess.dll’.
Adding .dll Reference ‘System.Linq.dll’.
Adding .dll Reference ‘System.Diagnostics.Process.dll’.
Adding .dll Reference ‘System.Numerics.dll’.
Adding .dll Reference ‘System.Xml.dll’.
Adding .dll Reference ‘System.Diagnostics.Tools.dll’.
Adding .dll Reference ‘System.Collections.Immutable.dll’.
Adding .dll Reference ‘System.Diagnostics.Debug.dll’.
Adding .dll Reference ‘Microsoft.Win32.Primitives.dll’.
Adding .dll Reference ‘System.Runtime.Serialization.Primitives.dll’.
Adding .dll Reference ‘System.Transactions.Local.dll’.
Adding .dll Reference ‘System.Drawing.Primitives.dll’.
Adding .dll Reference ‘System.Drawing.dll’.
Adding .dll Reference ‘System.Runtime.Serialization.Formatters.dll’.
Adding .dll Reference ‘System.Net.Ping.dll’.
Adding .dll Reference ‘System.Diagnostics.StackTrace.dll’.
Adding .dll Reference ‘System.Security.dll’.
Adding .dll Reference ‘System.Reflection.DispatchProxy.dll’.
Adding .dll Reference ‘System.Core.dll’.
Adding .dll Reference ‘System.Net.WebClient.dll’.
Adding .dll Reference ‘System.ComponentModel.DataAnnotations.dll’.
Adding .dll Reference ‘System.Memory.dll’.
Adding .dll Reference ‘System.Net.Primitives.dll’.
Adding .dll Reference ‘System.Threading.Channels.dll’.
<- Task RemObjects.EBuild.Elements.ElementsProcessNuGetReferences finished for ConsoleApplication8, Echoes, took 0.1655s (0.166s).
– Task RemObjects.EBuild.Elements.ElementsProcessComReferences skipped for ConsoleApplication8, Echoes, condition not met.
– Task RemObjects.EBuild.Elements.ElementsProcessSdkReferences skipped for ConsoleApplication8, Echoes, condition not met.
E: Reference ‘Echoes’ could not be resolved for target ‘Echoes’ (Echoes .NETCore anycpu).
Reference ‘Microsoft.CSharp’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/Microsoft.CSharp.dll’ for target ‘Echoes’.
Reference ‘System.Web’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Web.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.Contracts’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.Contracts.dll’ for target ‘Echoes’.
Reference ‘System.ServiceModel.Web’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ServiceModel.Web.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.FileVersionInfo’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.FileVersionInfo.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Intrinsics’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Intrinsics.dll’ for target ‘Echoes’.
Reference ‘System.Net.Security’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Security.dll’ for target ‘Echoes’.
Reference ‘System.Xml.XPath.XDocument’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.XPath.XDocument.dll’ for target ‘Echoes’.
Reference ‘System.Xml.Linq’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.Linq.dll’ for target ‘Echoes’.
Reference ‘System.Net.WebSockets.Client’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.WebSockets.Client.dll’ for target ‘Echoes’.
Reference ‘System.IO’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.dll’ for target ‘Echoes’.
Reference ‘System.Dynamic.Runtime’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Dynamic.Runtime.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Serialization.Xml’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Serialization.Xml.dll’ for target ‘Echoes’.
Reference ‘System.Security.Principal’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Principal.dll’ for target ‘Echoes’.
Reference ‘System.Reflection’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.dll’ for target ‘Echoes’.
Reference ‘System.Threading.ThreadPool’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.ThreadPool.dll’ for target ‘Echoes’.
Reference ‘System.Net’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.dll’ for target ‘Echoes’.
Reference ‘System.IO.Compression.FileSystem’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.Compression.FileSystem.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Metadata’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Metadata.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel.EventBasedAsync’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.EventBasedAsync.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.DiagnosticSource’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.CompilerServices.VisualC’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.CompilerServices.VisualC.dll’ for target ‘Echoes’.
Reference ‘System.Threading’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.dll’ for target ‘Echoes’.
Reference ‘netstandard’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/netstandard.dll’ for target ‘Echoes’.
Reference ‘Microsoft.VisualBasic’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/Microsoft.VisualBasic.dll’ for target ‘Echoes’.
Reference ‘System.IO.UnmanagedMemoryStream’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.UnmanagedMemoryStream.dll’ for target ‘Echoes’.
Reference ‘System.Xml.XPath’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.XPath.dll’ for target ‘Echoes’.
Reference ‘System.Xml.XmlDocument’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.XmlDocument.dll’ for target ‘Echoes’.
Reference ‘System.Configuration’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Configuration.dll’ for target ‘Echoes’.
Reference ‘System.Resources.Writer’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Resources.Writer.dll’ for target ‘Echoes’.
Reference ‘System.Console’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Console.dll’ for target ‘Echoes’.
Reference ‘System.Net.Sockets’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Sockets.dll’ for target ‘Echoes’.
Reference ‘System.Net.Http’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Http.dll’ for target ‘Echoes’.
Reference ‘System.Web.HttpUtility’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Web.HttpUtility.dll’ for target ‘Echoes’.
Reference ‘System.Text.Encoding.Extensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.Encoding.Extensions.dll’ for target ‘Echoes’.
Reference ‘System.Net.NetworkInformation’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.NetworkInformation.dll’ for target ‘Echoes’.
Reference ‘Microsoft.VisualBasic.Core’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/Microsoft.VisualBasic.Core.dll’ for target ‘Echoes’.
Reference ‘System.Security.Claims’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Claims.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.IO.FileSystem.DriveInfo’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.FileSystem.DriveInfo.dll’ for target ‘Echoes’.
Reference ‘System.IO.Compression.Brotli’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.Compression.Brotli.dll’ for target ‘Echoes’.
Reference ‘System.Security.Cryptography.X509Certificates’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Cryptography.X509Certificates.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Numerics’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Numerics.dll’ for target ‘Echoes’.
Reference ‘System.IO.FileSystem.Watcher’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.FileSystem.Watcher.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.TraceSource’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.TraceSource.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Emit.Lightweight’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Emit.Lightweight.dll’ for target ‘Echoes’.
Reference ‘System.Text.Encoding.CodePages’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.Encoding.CodePages.dll’ for target ‘Echoes’.
Reference ‘System.Linq.Expressions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Linq.Expressions.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Timer’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Timer.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.InteropServices’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.InteropServices.dll’ for target ‘Echoes’.
Reference ‘System.IO.Pipes’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.Pipes.dll’ for target ‘Echoes’.
Reference ‘System.Net.HttpListener’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.HttpListener.dll’ for target ‘Echoes’.
Reference ‘System.Text.RegularExpressions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.RegularExpressions.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Serialization’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Serialization.dll’ for target ‘Echoes’.
Reference ‘System.IO.Compression’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.Compression.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Tasks.Parallel’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Tasks.Parallel.dll’ for target ‘Echoes’.
Reference ‘WindowsBase’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/WindowsBase.dll’ for target ‘Echoes’.
Reference ‘System.Data.DataSetExtensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Data.DataSetExtensions.dll’ for target ‘Echoes’.
Reference ‘System.Collections.NonGeneric’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Collections.NonGeneric.dll’ for target ‘Echoes’.
Reference ‘System.Collections.Concurrent’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Collections.Concurrent.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Overlapped’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Overlapped.dll’ for target ‘Echoes’.
Reference ‘System.Text.Encodings.Web’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.Encodings.Web.dll’ for target ‘Echoes’.
Reference ‘System.Xml.Serialization’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.Serialization.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Handles’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Handles.dll’ for target ‘Echoes’.
Reference ‘System.Net.WebProxy’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.WebProxy.dll’ for target ‘Echoes’.
Reference ‘System.Text.Json’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.Json.dll’ for target ‘Echoes’.
Reference ‘System.ObjectModel’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ObjectModel.dll’ for target ‘Echoes’.
Reference ‘System.Net.WebHeaderCollection’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.WebHeaderCollection.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.InteropServices.RuntimeInformation’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.InteropServices.RuntimeInformation.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel.TypeConverter’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.TypeConverter.dll’ for target ‘Echoes’.
Reference ‘System.Net.Mail’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Mail.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Tasks.Extensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Tasks.Extensions.dll’ for target ‘Echoes’.
Reference ‘System.Linq.Parallel’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Linq.Parallel.dll’ for target ‘Echoes’.
Reference ‘System.Xml.XDocument’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.XDocument.dll’ for target ‘Echoes’.
Reference ‘System.Security.SecureString’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.SecureString.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel.Annotations’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.Annotations.dll’ for target ‘Echoes’.
Reference ‘System.IO.FileSystem.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.FileSystem.Primitives.dll’ for target ‘Echoes’.
Reference ‘mscorlib’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/mscorlib.dll’ for target ‘Echoes’.
Reference ‘System.Security.Cryptography.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Cryptography.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.IO.Compression.ZipFile’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.Compression.ZipFile.dll’ for target ‘Echoes’.
Reference ‘System.Windows’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Windows.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.InteropServices.WindowsRuntime’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.InteropServices.WindowsRuntime.dll’ for target ‘Echoes’.
Reference ‘System.Linq.Queryable’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Linq.Queryable.dll’ for target ‘Echoes’.
Reference ‘System.Resources.ResourceManager’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Resources.ResourceManager.dll’ for target ‘Echoes’.
Reference ‘System.Resources.Reader’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Resources.Reader.dll’ for target ‘Echoes’.
Reference ‘System.Collections’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Collections.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Emit.ILGeneration’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Emit.ILGeneration.dll’ for target ‘Echoes’.
Reference ‘System.Data.Common’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Data.Common.dll’ for target ‘Echoes’.
Reference ‘System.Net.NameResolution’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.NameResolution.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Loader’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Loader.dll’ for target ‘Echoes’.
Reference ‘System.Xml.ReaderWriter’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.ReaderWriter.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Tasks’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Tasks.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.Tracing’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.Tracing.dll’ for target ‘Echoes’.
Reference ‘System.AppContext’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.AppContext.dll’ for target ‘Echoes’.
Reference ‘System.Buffers’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Buffers.dll’ for target ‘Echoes’.
Reference ‘System.Security.Cryptography.Csp’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Cryptography.Csp.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.TextWriterTraceListener’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.TextWriterTraceListener.dll’ for target ‘Echoes’.
Reference ‘System.Text.Encoding’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Text.Encoding.dll’ for target ‘Echoes’.
Reference ‘System.Transactions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Transactions.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Tasks.Dataflow’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Tasks.Dataflow.dll’ for target ‘Echoes’.
Reference ‘System.IO.MemoryMappedFiles’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.MemoryMappedFiles.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.CompilerServices.Unsafe’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll’ for target ‘Echoes’.
Reference ‘System.Globalization’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Globalization.dll’ for target ‘Echoes’.
Reference ‘System.Collections.Specialized’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Collections.Specialized.dll’ for target ‘Echoes’.
Reference ‘System.ValueTuple’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ValueTuple.dll’ for target ‘Echoes’.
Reference ‘System.Runtime’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.dll’ for target ‘Echoes’.
Reference ‘System.Net.ServicePoint’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.ServicePoint.dll’ for target ‘Echoes’.
Reference ‘System.Xml.XmlSerializer’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.XmlSerializer.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Extensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Extensions.dll’ for target ‘Echoes’.
Reference ‘System.Globalization.Extensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Globalization.Extensions.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Extensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Extensions.dll’ for target ‘Echoes’.
Reference ‘System.Data’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Data.dll’ for target ‘Echoes’.
Reference ‘System’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.dll’ for target ‘Echoes’.
Reference ‘System.Security.Cryptography.Encoding’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Cryptography.Encoding.dll’ for target ‘Echoes’.
Reference ‘System.IO.IsolatedStorage’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.IsolatedStorage.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.TypeExtensions’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.TypeExtensions.dll’ for target ‘Echoes’.
Reference ‘System.Globalization.Calendars’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Globalization.Calendars.dll’ for target ‘Echoes’.
Reference ‘System.Net.Requests’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Requests.dll’ for target ‘Echoes’.
Reference ‘System.Net.WebSockets’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.WebSockets.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.Emit’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.Emit.dll’ for target ‘Echoes’.
Reference ‘System.IO.FileSystem’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.IO.FileSystem.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Serialization.Json’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Serialization.Json.dll’ for target ‘Echoes’.
Reference ‘System.Security.Cryptography.Algorithms’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.Cryptography.Algorithms.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Thread’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Thread.dll’ for target ‘Echoes’.
Reference ‘System.Numerics.Vectors’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Numerics.Vectors.dll’ for target ‘Echoes’.
Reference ‘System.ServiceProcess’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ServiceProcess.dll’ for target ‘Echoes’.
Reference ‘System.Linq’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Linq.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.Process’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.Process.dll’ for target ‘Echoes’.
Reference ‘System.Numerics’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Numerics.dll’ for target ‘Echoes’.
Reference ‘System.Xml’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Xml.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.Tools’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.Tools.dll’ for target ‘Echoes’.
Reference ‘System.Collections.Immutable’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Collections.Immutable.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.Debug’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.Debug.dll’ for target ‘Echoes’.
Reference ‘Microsoft.Win32.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/Microsoft.Win32.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Serialization.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Serialization.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.Transactions.Local’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Transactions.Local.dll’ for target ‘Echoes’.
Reference ‘System.Drawing.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Drawing.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.Drawing’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Drawing.dll’ for target ‘Echoes’.
Reference ‘System.Runtime.Serialization.Formatters’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Runtime.Serialization.Formatters.dll’ for target ‘Echoes’.
Reference ‘System.Net.Ping’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Ping.dll’ for target ‘Echoes’.
Reference ‘System.Diagnostics.StackTrace’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Diagnostics.StackTrace.dll’ for target ‘Echoes’.
Reference ‘System.Security’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Security.dll’ for target ‘Echoes’.
Reference ‘System.Reflection.DispatchProxy’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Reflection.DispatchProxy.dll’ for target ‘Echoes’.
Reference ‘System.Core’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Core.dll’ for target ‘Echoes’.
Reference ‘System.Net.WebClient’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.WebClient.dll’ for target ‘Echoes’.
Reference ‘System.ComponentModel.DataAnnotations’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.ComponentModel.DataAnnotations.dll’ for target ‘Echoes’.
Reference ‘System.Memory’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Memory.dll’ for target ‘Echoes’.
Reference ‘System.Net.Primitives’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Net.Primitives.dll’ for target ‘Echoes’.
Reference ‘System.Threading.Channels’ already was resolved to ‘/Users/JohnMoshakis/Library/Application Support/RemObjects Software/EBuild/Packages/NuGet/microsoft.netcore.app.ref/3.1.0/ref/netcoreapp3.1/System.Threading.Channels.dll’ for target ‘Echoes’.
<- Task RemObjects.EBuild.Elements.ElementsResolveEchoesReferencesForTarget failed for ConsoleApplication8, Echoes, took 0.2400s (0.240s).
<- Target Echoes failed.
<- Task RemObjects.EBuild.Elements.ElementsResolveReferences failed for ConsoleApplication8, took 0.2508s (0.253s).
<- Task RemObjects.EBuild.Elements.ElementsBuildProject failed for ConsoleApplication8, took 0.0000s (0.525s).
<- Project ConsoleApplication8 failed, took 0.526s.
Project ‘ConsoleApplication8’ failed to build.
Solution ‘ConsoleApplication8’ failed to build project ‘ConsoleApplication8’.
<- Task RemObjects.EBuild.BuildSolution failed for ConsoleApplication8, took 0.5481s (0.551s).
net time gross time task
0.000s 0.486s ElementsCompile
0.000s 0.487s ElementsLink
0.000s 0.489s ElementsDetermineFinalOutput
0.000s 0.521s ElementsCopyFinalOutput
0.000s 0.526s ElementsBuildProject
0.000s 0.222s ElementsPreCompile
0.000s 0.126s ElementsPreCompileEchoes
0.000s 0.000s ElementsEchoesResolveXamlFiles
0.000s 0.001s ElementsResolveResourceFiles
0.000s 0.001s ElementsPreflightEchoes
0.000s 0.001s ElementsResolveContent
0.001s 0.001s ElementsSanityCheck
0.001s 0.001s ElementsCheckForTargetlessReferences
0.004s 0.005s ElementsApplyLegacySettings
0.008s 0.008s ElementsResolveSourceFiles
0.024s 0.030s ElementsExpandCopyToOutputDirectoryPaths
0.057s 0.059s ElementsPrepareEchoesPlatform
0.078s 0.080s ElementsPreparePlatforms
0.118s 0.121s ElementsEchoesProcessResources
0.165s 0.166s ElementsProcessNuGetReferences
0.239s 0.240s ElementsResolveEchoesReferencesForTarget
0.250s 0.254s ElementsResolveReferences
0.548s 0.551s BuildSolution
Hmm. can you build with --debug-reference-resolving
and give me that log?
Also, does .../References/Echoes/NETStandard2.0/Echoes.dll
exist, where ...
is the equivalent of wherever you have Elements installed or, if you are using the internal compiler (im assuming not), Contents/Resources
in the Fire.app bundle)?
My ios apps also wouldn’t build. I re copied and re installed the zip tools, that fixed it.
Im not really sure what i did.