Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compilation errors #24

Closed
mterwoord opened this issue Jul 6, 2020 · 17 comments · Fixed by #25
Closed

Compilation errors #24

mterwoord opened this issue Jul 6, 2020 · 17 comments · Fixed by #25

Comments

@mterwoord
Copy link

I created a .net 5 library in VS preview. I added the DNNE package (latest version. Next I added a method public static int Add(int a, int b), and marked it with the UnmanagedCallersOnlyAttribute.
When I compile in VS, I get an error saying the DNNE.BuildTasks.dll file couldn't be loaded.

When I run dotnet build from the command line, I get an error from the c++ compiler, saying it can't find libnethost.lib.

What am I doing wrong?

Is there a (working) sample project somewhere?

@AaronRobinsonMSFT
Copy link
Owner

AaronRobinsonMSFT commented Jul 6, 2020

@mterwoord That is odd. The test/ directory has an example that should always work. What platform are you on? Mentioning VS would imply Windows and that should not be referring to libnethost.lib at all.

Can you share out the compiler command line that is being used? That should be logged during build.

EDIT I forgot on Windows the lib prefix is added. Using that file is correct.

@mterwoord
Copy link
Author

I have .NET 5 preview 6 installed on windows.

Compiler output compiling ExportingAssembly.csproj using dotnet build:

Microsoft (R) Build Engine version 16.7.0-preview-20310-07+ee1c9fd0c for .NET
Copyright (C) Microsoft Corporation. All rights reserved.

  Determining projects to restore...
  All projects are up-to-date for restore.
  You are using a preview version of .NET. See: https://aka.ms/dotnet-core-preview
  Building native export: "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\bin\Hostx64\x86\cl.exe" /Od /LDd /TC /MT /GS /Zi /D DNNE_ASSEMBLY_NAME=ExportingAssembly /I "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\include" /I "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform" /I "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt" "e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\ExportingAssembly.g.c" "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform\platform.c"  /link /DLL /LIBPATH:"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\lib\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\ucrt\x86" "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib" Advapi32.lib /IGNORE:4099 /out:"e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\bin\ExportingAssemblyNE.dll" 
  Microsoft (R) C/C++ Optimizing Compiler Version 19.26.28806 for x86
  Copyright (C) Microsoft Corporation.  All rights reserved.
  
  ExportingAssembly.g.c
  platform.c
  Generating Code...
  Microsoft (R) Incremental Linker Version 14.26.28806.0
  Copyright (C) Microsoft Corporation.  All rights reserved.
  
  /out:ExportingAssembly.g.dll 
  /dll 
  /implib:ExportingAssembly.g.lib 
  /debug 
  /DLL 
  "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\lib\x86" 
  "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x86" 
  "/LIBPATH:C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\ucrt\x86" 
  "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib" 
  Advapi32.lib 
  /IGNORE:4099 
  /out:e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\bin\ExportingAssemblyNE.dll 
  ExportingAssembly.g.obj 
  platform.obj 
LINK : fatal error LNK1181: cannot open input file 'C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib' [e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\ExportingAssembly.csproj]
C:\Users\matth\.nuget\packages\dnne\1.0.5\build\DNNE.targets(102,5): error MSB3073: The command ""C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\bin\Hostx64\x86\cl.exe" /Od /LDd /TC /MT /GS /Zi /D DNNE_ASSEMBLY_NAME=ExportingAssembly /I "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\include" /I "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform" /I "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt" "e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\ExportingAssembly.g.c" "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform\platform.c"  /link /DLL /LIBPATH:"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\lib\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\ucrt\x86" "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib" Advapi32.lib /IGNORE:4099 /out:"e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\bin\ExportingAssemblyNE.dll" " exited with code 2. [e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\ExportingAssembly.csproj]

Build FAILED.

LINK : fatal error LNK1181: cannot open input file 'C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib' [e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\ExportingAssembly.csproj]
C:\Users\matth\.nuget\packages\dnne\1.0.5\build\DNNE.targets(102,5): error MSB3073: The command ""C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\bin\Hostx64\x86\cl.exe" /Od /LDd /TC /MT /GS /Zi /D DNNE_ASSEMBLY_NAME=ExportingAssembly /I "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\include" /I "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform" /I "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\shared" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\um" /I "C:\Program Files (x86)\Windows Kits\10\Include\10.0.18362.0\ucrt" "e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\ExportingAssembly.g.c" "C:\Users\matth\.nuget\packages\dnne\1.0.5\tools\platform\platform.c"  /link /DLL /LIBPATH:"C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Tools\MSVC\14.26.28801\lib\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\um\x86" /LIBPATH:"C:\Program Files (x86)\Windows Kits\10\Lib\10.0.18362.0\ucrt\x86" "C:\Program Files (x86)\dotnet\packs\Microsoft.NETCore.App.Host.win-x86\5.0.0-preview.6.20305.6\runtimes\win-x86\native\libnethost.lib" Advapi32.lib /IGNORE:4099 /out:"e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\obj\Debug\net5.0\dnne\bin\ExportingAssemblyNE.dll" " exited with code 2. [e:\Data\Sources\Rommel\DNNE\test\ExportingAssembly\ExportingAssembly.csproj]
    0 Warning(s)
    2 Error(s)

Time Elapsed 00:00:01.22

@AaronRobinsonMSFT
Copy link
Owner

@mterwoord Ah. This looks like #19. I just validated the nightly and the static lib is there.

@AaronRobinsonMSFT
Copy link
Owner

I just noticed that this is for x86. I just tried that and there is indeed a build issue for that. My confirmation above was only for x86_64 - the default for .NET Core.

I will submit a PR with a fix today and publish a new package.

@mterwoord
Copy link
Author

The new package doesn't fix this error. I still get it. I'm on .net 5 preview 6.
I did some digging:

  1. When i use dotnet build --runtime x86 the error changes to Cannot open include file: 'nethost.h': no such file or directory. (Same for platform x64)
  2. Investigating the command line used by the nuget package, i see that:
    a. It expects a folder named Microsoft.NETCore.App.Host.x86 whereas on my system its named Microsoft.NETCore.App.Host.win-x86. (This is inside c:\program files (x86)\dotnet\packs)
    b. Inside the runtimes folder in the aforementioned folder, there's a folder named win-x86, where the nuget expects it to be named x86
  3. It keeps looking for libnethost.lib.

If you want, we could schedule a remote session, so we can have a look around?

@AaronRobinsonMSFT
Copy link
Owner

@mterwoord The missing nethost.h and libnethost.lib unfortunately aren't anything I can do about. The .NET 5 Preview 6 release was broken in the consumption of the static nethost due to missing components in the package - that is what #19 was about. All I did to "fix" this issue as it relates to RIDs on Preview 8 and possibly Preview 7. I should have mentioned that.

I don't think there is much that can be done for .NET 5 Preview 6 for x86. I can try installing it and see what is occurring if that specific preview is important, otherwise I would move up to the nightly.

@AaronRobinsonMSFT
Copy link
Owner

I just confirmed that Preview 7 and Preview 8 from here work. It seems that the Preview 6 is completely busted at this point. I could support the dynamic version of nethost, but not the static version. The dynamic version would require deployment of nethost.dll with the native binary so doesn't seem worth it - please let me know if you disagree.

Really sorry about this confusion. I will update the readme.md to reflect this requirement.

@mterwoord
Copy link
Author

Sorry for the late reply.

Thanks for clearing things up. It works now, using Preview 7 from the link.

Is it currently possible, or will it in the future, to use self-contained deployments?
My goal is to do xcopy deployments...

@AaronRobinsonMSFT
Copy link
Owner

AaronRobinsonMSFT commented Jul 11, 2020

Thanks for clearing things up. It works now, using Preview 7 from the link.

Yay!

Is it currently possible, or will it in the future, to use self-contained deployments?
My goal is to do xcopy deployments...

A very important scenario. It isn't currently supported. Some of this idea is captured at dotnet/runtime#3750 (comment). That issue is still opened and supporting the self-contained scenario there would enable DNNE to support it as well. Feel free to file a more specific issue at https://github.com/dotnet/runtime/issues - a specific user request always carries more weight.

/cc @vitek-karas @jkotas

@mterwoord
Copy link
Author

Not sure exactly about that comment. I read it 3 times now and still don't understand things....

It mixes self-contained deployment and single-file deployment, as far as I can see. I don't care (too much) about single file deployments. My current .NET 4.7-based setup deploys about 500 files for the .NET based stuff.

@AaronRobinsonMSFT
Copy link
Owner

@mterwoord Oh shoot. Sorry about that. The self-contained deployment for libraries is a bit more complicated here. @vitek-karas is still the right person here, but it is much less clear on how to support that properly. The primary concern is about the lack of support of side-by-side in coreclr - we can only load a single coreclr runtime in a process. This means that if the current component specifies a runtime and another component - let's say a COM server - is loaded, then which runtime wins? It is possible they can both use the same version, but what about if one specifies 3.1 and the other 5.0? This gets even more complicated depending on order of load because if 5.0 is loaded first it could work, but if 3.1 is loaded first it most likely won't.

We have been starting to consider these scenarios because some know the exhaustive list of libraries they need and don't support plug-ins - see dotnet/sdk#12043. Being up front, I will say it isn't a simple ask. The complexity of how users would need to think about a single coreclr instance to satisfy all needs is very hard to get right and adding support and defining boundaries in a way that will ensure success is something we have been struggling with. Feedback and suggestions are always appreciated in this domain.

@mterwoord
Copy link
Author

Maybe I can fake self-contained deployment by manually including the runtime files and fooling around with environment variables a bit. I'll need to figure that out then.
Thanks for all the info!

@Archomeda
Copy link

Archomeda commented Jul 15, 2020

@AaronRobinsonMSFT I seem to have the same issue as the initial comment regarding DNNE.BuildTasks.dll here.

For some reason, Visual Studio doesn't want to successfully build the ExportingAssembly example project (nor any other project that references DNNE from NuGet), while dotnet build works fine.

The error it spits out is as follows:
C:\Users\User\.nuget\packages\dnne\1.0.6\build\DNNE.targets(90,5): error MSB4062: The "DNNE.BuildTasks.CreateCompileCommand" task could not be loaded from the assembly C:\Users\User\.nuget\packages\dnne\1.0.6\build\./DNNE.BuildTasks.dll. Could not load file or assembly 'netstandard, Version=2.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51' or one of its dependencies. Het systeem kan het opgegeven bestand niet vinden. Confirm that the <UsingTask> declaration is correct, that the assembly and all its dependencies are available, and that the task contains a public class that implements Microsoft.Build.Framework.ITask.

Funny how the error message is partly Dutch 🤔.
Anyhow, "Het systeem kan het opgegeven bestand niet vinden" means that it couldn't find the specified file.

Since you asked the compiler command earlier, this is the one from Visual Studio:

Using "Csc" task from assembly "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\Roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll".
Task "Csc"
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\Roslyn\csc.exe /noconfig /unsafe+ /checked- /nowarn:1701,1702,1701,1702,2008 /fullpaths /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE;DEBUG;NET;NET5_0;WINDOWS;WINDOWS7_0;NETCOREAPP;NETCOREAPP3_1 /errorendlocation /preferreduilang:en-US /highentropyva+ /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\Microsoft.CSharp.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\Microsoft.VisualBasic.Core.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\Microsoft.VisualBasic.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\Microsoft.Win32.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\mscorlib.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\netstandard.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.AppContext.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Buffers.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Collections.Concurrent.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Collections.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Collections.Immutable.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Collections.NonGeneric.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Collections.Specialized.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.Annotations.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.DataAnnotations.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.EventBasedAsync.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ComponentModel.TypeConverter.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Configuration.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Console.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Core.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Data.Common.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Data.DataSetExtensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Data.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.Contracts.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.Debug.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.DiagnosticSource.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.FileVersionInfo.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.Process.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.StackTrace.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.TextWriterTraceListener.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.Tools.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.TraceSource.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Diagnostics.Tracing.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Drawing.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Drawing.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Dynamic.Runtime.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Formats.Asn1.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Globalization.Calendars.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Globalization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Globalization.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.Compression.Brotli.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.Compression.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.Compression.FileSystem.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.Compression.ZipFile.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.FileSystem.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.FileSystem.DriveInfo.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.FileSystem.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.FileSystem.Watcher.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.IsolatedStorage.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.MemoryMappedFiles.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.Pipes.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.IO.UnmanagedMemoryStream.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Linq.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Linq.Expressions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Linq.Parallel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Linq.Queryable.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Memory.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Http.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Http.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.HttpListener.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Mail.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.NameResolution.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.NetworkInformation.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Ping.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Requests.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Security.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.ServicePoint.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.Sockets.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.WebClient.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.WebHeaderCollection.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.WebProxy.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.WebSockets.Client.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Net.WebSockets.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Numerics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Numerics.Vectors.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ObjectModel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.DispatchProxy.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Emit.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Emit.ILGeneration.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Emit.Lightweight.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Metadata.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Reflection.TypeExtensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Resources.Reader.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Resources.ResourceManager.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Resources.Writer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.CompilerServices.Unsafe.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.CompilerServices.VisualC.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Handles.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.InteropServices.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.InteropServices.RuntimeInformation.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Intrinsics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Loader.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Numerics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Serialization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Serialization.Formatters.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Serialization.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Serialization.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Runtime.Serialization.Xml.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Claims.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Cryptography.Algorithms.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Cryptography.Csp.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Cryptography.Encoding.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Cryptography.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Cryptography.X509Certificates.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.Principal.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Security.SecureString.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ServiceModel.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ServiceProcess.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.Encoding.CodePages.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.Encoding.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.Encoding.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.Encodings.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Text.RegularExpressions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Channels.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Overlapped.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Tasks.Dataflow.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Tasks.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Tasks.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Tasks.Parallel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Thread.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.ThreadPool.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Threading.Timer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Transactions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Transactions.Local.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.ValueTuple.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Web.HttpUtility.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Windows.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.Linq.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.ReaderWriter.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.Serialization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.XDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.XmlDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.XmlSerializer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.XPath.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\System.Xml.XPath.XDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.7.20326.1\ref\net5.0\WindowsBase.dll" /debug+ /debug:portable /filealign:512 /optimize- /out:obj\Debug\net5.0\ExportingAssembly.dll /ruleset:"C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Team Tools\Static Analysis Tools\\Rule Sets\MinimumRecommendedRules.ruleset" /target:library /warnaserror- /utf8output /deterministic+ Dnne.Export.cs IntExports.cs MiscExports.cs RealExports.cs UnsafeExports.cs "obj\Debug\net5.0\.NETCoreApp,Version=v5.0.AssemblyAttributes.cs" obj\Debug\net5.0\ExportingAssembly.AssemblyInfo.cs /warnaserror+:NU1605

This is the command from dotnet build:

Using "Csc" task from assembly "c:\program files\dotnet\sdk\5.0.100-preview.8.20363.2\Roslyn\Microsoft.Build.Tasks.CodeAnalysis.dll".
Task "Csc"
c:\program files\dotnet\dotnet.exe exec "c:\program files\dotnet\sdk\5.0.100-preview.8.20363.2\Roslyn\bincore\csc.dll" /noconfig /unsafe+ /checked- /nowarn:1701,1702,1701,1702 /nostdlib+ /errorreport:prompt /warn:4 /define:TRACE;DEBUG;NET;NET5_0;NETCOREAPP;NETCOREAPP3_1 /highentropyva+ /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\Microsoft.CSharp.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\Microsoft.VisualBasic.Core.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\Microsoft.VisualBasic.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\Microsoft.Win32.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\mscorlib.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\netstandard.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.AppContext.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Buffers.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Collections.Concurrent.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Collections.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Collections.Immutable.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Collections.NonGeneric.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Collections.Specialized.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.Annotations.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.DataAnnotations.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.EventBasedAsync.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ComponentModel.TypeConverter.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Configuration.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Console.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Core.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Data.Common.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Data.DataSetExtensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Data.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.Contracts.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.Debug.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.DiagnosticSource.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.FileVersionInfo.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.Process.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.StackTrace.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.TextWriterTraceListener.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.Tools.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.TraceSource.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Diagnostics.Tracing.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Drawing.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Drawing.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Dynamic.Runtime.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Formats.Asn1.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Globalization.Calendars.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Globalization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Globalization.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.Compression.Brotli.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.Compression.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.Compression.FileSystem.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.Compression.ZipFile.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.FileSystem.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.FileSystem.DriveInfo.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.FileSystem.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.FileSystem.Watcher.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.IsolatedStorage.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.MemoryMappedFiles.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.Pipes.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.IO.UnmanagedMemoryStream.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Linq.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Linq.Expressions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Linq.Parallel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Linq.Queryable.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Memory.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Http.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Http.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.HttpListener.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Mail.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.NameResolution.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.NetworkInformation.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Ping.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Requests.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Security.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.ServicePoint.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.Sockets.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.WebClient.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.WebHeaderCollection.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.WebProxy.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.WebSockets.Client.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Net.WebSockets.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Numerics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Numerics.Vectors.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ObjectModel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.DispatchProxy.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Emit.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Emit.ILGeneration.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Emit.Lightweight.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Metadata.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Reflection.TypeExtensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Resources.Reader.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Resources.ResourceManager.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Resources.Writer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.CompilerServices.Unsafe.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.CompilerServices.VisualC.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Handles.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.InteropServices.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.InteropServices.RuntimeInformation.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Intrinsics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Loader.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Numerics.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Serialization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Serialization.Formatters.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Serialization.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Serialization.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Runtime.Serialization.Xml.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Claims.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Cryptography.Algorithms.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Cryptography.Csp.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Cryptography.Encoding.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Cryptography.Primitives.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Cryptography.X509Certificates.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.Principal.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Security.SecureString.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ServiceModel.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ServiceProcess.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.Encoding.CodePages.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.Encoding.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.Encoding.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.Encodings.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.Json.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Text.RegularExpressions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Channels.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Overlapped.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Tasks.Dataflow.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Tasks.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Tasks.Extensions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Tasks.Parallel.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Thread.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.ThreadPool.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Threading.Timer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Transactions.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Transactions.Local.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.ValueTuple.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Web.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Web.HttpUtility.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Windows.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.Linq.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.ReaderWriter.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.Serialization.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.XDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.XmlDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.XmlSerializer.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.XPath.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\System.Xml.XPath.XDocument.dll" /reference:"c:\program files\dotnet\packs\Microsoft.NETCore.App.Ref\5.0.0-preview.8.20361.2\ref\net5.0\WindowsBase.dll" /debug+ /debug:portable /filealign:512 /optimize- /out:obj\Debug\net5.0\ExportingAssembly.dll /target:library /warnaserror- /utf8output /deterministic+ Dnne.Export.cs IntExports.cs MiscExports.cs RealExports.cs UnsafeExports.cs "obj\Debug\net5.0\.NETCoreApp,Version=v5.0.AssemblyAttributes.cs" obj\Debug\net5.0\ExportingAssembly.AssemblyInfo.cs /warnaserror+:NU1605

This basically tells me that it's referencing 5.0.0-preview.7.20326.1, which I do not have installed. I've tried both preview7-20365.7 and preview8-20363.2 which are the latest at the time of writing. Both build logs here are from preview8.

Is there any way to get this to work properly in Visual Studio without having to wait for .NET 5 to come out of preview?

@AaronRobinsonMSFT
Copy link
Owner

Is there any way to get this to work properly in Visual Studio without having to wait for .NET 5 to come out of preview?

That is a good question. I honestly don't know the answer to that. I have used VS but recently been building from the command line since it limits issues. I tried to make this work by targeting .NET Standard 2.1, which it seems to reference properly the failure is confusing to me. What version of Visual Studio is being used here?

@Archomeda
Copy link

This is in 2019, both 16.6.3 and 16.7.0 preview 3.1.

@AaronRobinsonMSFT
Copy link
Owner

@Archomeda I figured out this issue. I believe I have it fixed in #27. I have also published an updated package.

@Archomeda
Copy link

@AaronRobinsonMSFT sorry for the late reply, I haven't had the time to check yet. I'll let you know when I've been able to confirm.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants