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

Native compilation failed #4681

Closed
SirusDoma opened this issue Dec 21, 2015 · 18 comments
Closed

Native compilation failed #4681

SirusDoma opened this issue Dec 21, 2015 · 18 comments

Comments

@SirusDoma
Copy link

I'm trying to compile the project with native compilation
However I got an error, here the console messages:

dotnet compile --native --cpp
Compiling ConsoleApp1 for DNX,Version=v4.5.1

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:02.3418293

Input Assembly: D:\Projects\ConsoleApp1\src\ConsoleApp1\bin\Debug\dnxcore50\ConsoleApp1.dll
ConsoleApp1.cpp
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(14): fatal error C1083: Cannot open include file: 'stdint.h': No such file or directory
Compilation of intermediate files failed.
Compiling ConsoleApp1 for DNXCore,Version=v5.0

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:01.9426304

It's seems the compiler cannot find the header file (stdint.h) that included under the cppsdk...
While the application code itself is only a simple hello world:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    public class Program
    {
        public static void Main(string[] args)
        {
            Console.WriteLine("Hello World");
        }
    }
}

any ideas?

@SirusDoma
Copy link
Author

I also tried 'dotnet compile --native and it give me:
LINK : fatal error LNK1104: cannot open file 'kernel32.lib'

I tried to run the cmd as administrator and it still not working.
any ideas?

@shahid-pk
Copy link
Contributor

@SirusDoma it looks like you are targeting .net framework 4.5 but compilation to native is only supported for coreclr.

@SirusDoma
Copy link
Author

Thanks for your reply!
I found something like "dnxcore4.5.1": {} under frameworks, I deleted it.
here my project.json:

{
  "version": "1.0.0-*",
  "description": "ConsoleApp1 Console Application",
  "authors": [ "SirusDoma" ],
  "tags": [ "" ],
  "projectUrl": "",
  "licenseUrl": "",

  "compilationOptions": {
    "emitEntryPoint": true
  },

  "dependencies": {
  },

  "commands": {
    "ConsoleApp1": "ConsoleApp1"
  },

  "frameworks": {
    "dnxcore50": {
      "dependencies": {
        "Microsoft.CSharp": "4.0.1-beta-23516",
        "System.Collections": "4.0.11-beta-23516",
        "System.Console": "4.0.0-beta-23516",
        "System.Linq": "4.0.1-beta-23516",
        "System.Threading": "4.0.11-beta-23516"
      }
    }
  }
}

I still getting same error..

dotnet compile --native --cpp
Compiling ConsoleApp1 for DNXCore,Version=v5.0

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:01.9889197

Input Assembly: D:\Projects\ConsoleApp1\src\ConsoleApp1\bin\Debug\dnxcore50\ConsoleApp1.dll
ConsoleApp1.cpp
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(14): fatal error C1083: Cannot open include file: 'stdint.h': No such file or directory
Compilation of intermediate files failed.

@shahid-pk
Copy link
Contributor

@SirusDoma do you have visual studio 2015 with c++ support that is a requirement if you want to compile it to native c++ ? if yes than that is the limit of my knowledge , a team member can help you out better.

@SirusDoma
Copy link
Author

I have visual studio 2015 with C++ installed
Thanks for trying to help anyway!

@gkhanna79
Copy link
Member

Please attempt the compilation from within VS 2015 X64 Native Tools command prompt.

@SirusDoma
Copy link
Author

I tried it with VS 2015 X64 Native Tools command prompt
It give me different errors:

dotnet compile --native --cpp
Compiling ConsoleApp1 for DNXCore,Version=v5.0

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:01.9424004

Input Assembly: d:\projects\ConsoleApp1\src\ConsoleApp1\bin\Debug\dnxcore50\ConsoleApp1.dll
ConsoleApp1.cpp
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(82): warning C4200: nonstandard extension used: zero-sized array in struct/union
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(82): note: Cannot generate copy-ctor or copy-assignment operator when UDT contains a zero-sized array
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(7656): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(7656): warning C4309: 'initializing': truncation of constant value
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19511): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19511): warning C4309: 'initializing': truncation of constant value
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19523): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19523): warning C4309: 'initializing': truncation of constant value
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19529): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(19529): warning C4309: 'initializing': truncation of constant value
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(20733): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(20733): warning C4309: 'initializing': truncation of constant value
d:\projects\consoleapp1\src\consoleapp1\obj\debug\dnxcore50\consoleapp1.cpp(20779): error C3083: 'ConsoleApp1': the symbol to the left of a '::' must be a type
Compilation of intermediate files failed.

@gkhanna79
Copy link
Member

Native compilation is expected to work for HelloWorld scenarios. How did you generate the project.json you shared above? Could you please try the following steps:

  1. Make sure you have CLI tools installed.
  2. Create a new Folder, HW, and switch to it.
  3. Issue "dotnet new"
  4. Issue "dotnet restore"
  5. Issue "dotnet compile --native --cpp"

Does this work for you?

@gkhanna79
Copy link
Member

But only works with VS 2015 X64 Native Tools command prompt

This is by design since that gets us access to the native compilation tools (cl and link).

I use Visual Studio project template to create that project using Console Application (Package), it says it able to target .NET Framework or .NET Core

CLI based projects start with "dotnet new". @richlander Are you aware of VS project system implying compatibility with .NET Core/CLI?

The native binary will live under HW1\bin\Debug\dnxcore50\native. I think you are looking at contents of HW1\bin\Debug\dnxcore50.

@SirusDoma
Copy link
Author

oops, it seems still not working, I was mistaken it is not only the warnings, but it also contains some errors.

native folder contains nothing but HW.pdb
when I try the native compilation, here what I got:

dotnet compile --native --cpp
Compiling HW for DNXCore,Version=v5.0

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:01.9284816

Input Assembly: D:\Projects\HW\bin\Debug\dnxcore50\HW.dll
HW.cpp
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(82): warning C4200: nonstandard extension used: zero-sized array in struct/union
c:\program files\dotnet\bin\appdepsdk\cppsdk\win7\common.h(82): note: Cannot generate copy-ctor or copy-assignment operator when UDT contains a zero-sized array
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(7656): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(7656): warning C4309: 'initializing': truncation of constant value
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19511): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19511): warning C4309: 'initializing': truncation of constant value
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19523): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19523): warning C4309: 'initializing': truncation of constant value
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19529): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(19529): warning C4309: 'initializing': truncation of constant value
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(20733): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
d:\projects\hw\obj\debug\dnxcore50\hw.cpp(20733): warning C4309: 'initializing': truncation of constant value
d:\projects\hw\program.cs(2264) : warning C4717: 'System_Private_CoreLib::System::Math::Abs_2': recursive on all control paths, function will cause runtime stack overflow
d:\projects\hw\program.cs(2308) : warning C4717: 'System_Private_CoreLib::System::Diagnostics::Debug::DebugBreak': recursive on all control paths, function will cause runtime stack overflow
d:\projects\hw\program.cs(2320) : warning C4717: 'System_Private_CoreLib::System::GC::KeepAlive': recursive on all control paths, function will cause runtime stack overflow
PortableRuntime.lib(portable.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(portable.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(MiscHelpers.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(MiscHelpers.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(RuntimeInstance.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(RuntimeInstance.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(EHHelpers.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(EHHelpers.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(HandleTableHelpers.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(HandleTableHelpers.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(FinalizerHelpers.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(FinalizerHelpers.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(gcrhenv.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gcrhenv.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(thread.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(thread.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(threadstore.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(threadstore.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(ObjectLayout.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(ObjectLayout.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(PalRedhawkMinWin.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(PalRedhawkMinWin.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(module.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(module.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(eetype.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(eetype.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(OptionalFieldsRuntime.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(OptionalFieldsRuntime.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(gccommon.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gccommon.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(Crst.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(Crst.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(RWLock.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(RWLock.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(Profiling.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(Profiling.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(GenericInstance.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(GenericInstance.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(DebugEventSource.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(DebugEventSource.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(startup.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(startup.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(PalRedhawkCommon.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(PalRedhawkCommon.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(StackFrameIterator.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(StackFrameIterator.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(handletable.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(handletable.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(objecthandle.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(objecthandle.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(RestrictedCallouts.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(RestrictedCallouts.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
Linking of intermediate files failed.
PortableRuntime.lib(event.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(event.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(gceewks.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gceewks.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(RhConfig.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(RhConfig.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(SyncClean.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(SyncClean.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(gcrhscan.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gcrhscan.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(stressLog.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(stressLog.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(GCMemoryHelpers.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(GCMemoryHelpers.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(SectionMethodList.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(SectionMethodList.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(RHCodeMan.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(RHCodeMan.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(handletablecore.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(handletablecore.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(handletablecache.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(handletablecache.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(handletablescan.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(handletablescan.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(gcwks.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gcwks.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(portable.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(portable.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcscan.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(gcscan.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
bootstrappercpp.lib(main.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
bootstrappercpp.lib(main.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
bootstrappercpp.lib(platform.windows.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
bootstrappercpp.lib(platform.windows.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
PortableRuntime.lib(MiscHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(MiscHelpers.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RuntimeInstance.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RuntimeInstance.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(dllmain.obj) : error LNK2038: mismatch detected for '_ITERATOR_DEBUG_LEVEL': value '0' doesn't match value '2' in HW.obj
PortableRuntime.lib(dllmain.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in HW.obj
LINK : warning LNK4098: defaultlib 'MSVCRT' conflicts with use of other libs; use /NODEFAULTLIB:library
PortableRuntime.lib(EHHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(EHHelpers.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(HandleTableHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(HandleTableHelpers.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(FinalizerHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(FinalizerHelpers.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcrhenv.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gcrhenv.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(thread.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(thread.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(threadstore.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(threadstore.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(ObjectLayout.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(ObjectLayout.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
D:\Projects\HW\bin\Debug\dnxcore50\native\HW.exe : fatal error LNK1319: 86 mismatches detected
PortableRuntime.lib(PalRedhawkMinWin.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(PalRedhawkMinWin.obj)' or at 'D:\Projects\HW\bin\Debug\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info

Note that, I did precisely what you told me before
I got CLI Tools from https://dotnetcli.blob.core.windows.net/dotnet/dev/Installers/Latest/dotnet-win-x64.latest.msi

Any ideas?

@gkhanna79
Copy link
Member

I believe I know what is happening. Can you try "dotnet compile --native --cpp -c Release"?

@SirusDoma
Copy link
Author

I'm sorry for late reply
It give me an error:

dotnet compile --native --cpp Release
Could not find a part of the path 'D:\Projects\HW\Release\project.json'.

It's looking for Release folder.
and of course it's not exists

@gkhanna79
Copy link
Member

You missed a "-c" in the command. See my response earlier.

@SirusDoma
Copy link
Author

oops, my bad, still not working

dotnet compile --native --cpp -c Release
Compiling HW for DNXCore,Version=v5.0

Compilation succeeded.
    0 Warning(s)
    0 Error(s)

Time elapsed 00:00:01.8569900

Input Assembly: D:\Projects\HW\bin\Release\dnxcore50\HW.dll
HW.cpp
C:\Program Files\dotnet\bin\appdepsdk\CPPSdk\win7\common.h(82): warning C4200: nonstandard extension used: zero-sized array in struct/union
C:\Program Files\dotnet\bin\appdepsdk\CPPSdk\win7\common.h(82): note: Cannot generate copy-ctor or copy-assignment operator when UDT contains a zero-sized array
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(7656): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(7656): warning C4309: 'initializing': truncation of constant value
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19511): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19511): warning C4309: 'initializing': truncation of constant value
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19523): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19523): warning C4309: 'initializing': truncation of constant value
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19529): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(19529): warning C4309: 'initializing': truncation of constant value
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(20733): warning C4838: conversion from 'int' to 'const char' requires a narrowing conversion
D:\Projects\HW\obj\Release\dnxcore50\HW.cpp(20733): warning C4309: 'initializing': truncation of constant value
Generating code
d:\projects\hw\program.cs(2320) : warning C4717: 'System_Private_CoreLib::System::GC::KeepAlive': recursive on all control paths, function will cause runtime stack overflow
d:\projects\hw\program.cs(2308) : warning C4717: 'System_Private_CoreLib::System::Diagnostics::Debug::DebugBreak': recursive on all control paths, function will cause runtime stack overflow
d:\projects\hw\program.cs(2264) : warning C4717: 'System_Private_CoreLib::System::Math::Abs_2': recursive on all control paths, function will cause runtime stack overflow
All 890 functions were compiled because no usable IPDB/IOBJ from previous compilation was found.
Finished generating code
PortableRuntime.lib(HandleTableHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(HandleTableHelpers.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(portable.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(portable.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(MiscHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(MiscHelpers.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RuntimeInstance.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RuntimeInstance.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(EHHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(EHHelpers.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(FinalizerHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(FinalizerHelpers.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(handletable.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(handletable.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(objecthandle.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(objecthandle.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RestrictedCallouts.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RestrictedCallouts.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcrhenv.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gcrhenv.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(thread.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(thread.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(threadstore.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(threadstore.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(ObjectLayout.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(ObjectLayout.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(PalRedhawkMinWin.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(PalRedhawkMinWin.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(module.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(module.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(eetype.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(eetype.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(OptionalFieldsRuntime.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(OptionalFieldsRuntime.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gccommon.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gccommon.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(Crst.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(Crst.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RWLock.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RWLock.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(Profiling.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(Profiling.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(GenericInstance.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(GenericInstance.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(DebugEventSource.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(DebugEventSource.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(startup.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(startup.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(PalRedhawkCommon.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(PalRedhawkCommon.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(StackFrameIterator.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(StackFrameIterator.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(handletablecore.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(handletablecore.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(handletablecache.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(handletablecache.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(handletablescan.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(handletablescan.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(event.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(event.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gceewks.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gceewks.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RhConfig.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RhConfig.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(SyncClean.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(SyncClean.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcrhscan.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gcrhscan.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(stressLog.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(stressLog.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(GCMemoryHelpers.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(GCMemoryHelpers.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(SectionMethodList.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(SectionMethodList.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(RHCodeMan.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(RHCodeMan.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcwks.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gcwks.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
PortableRuntime.lib(gcscan.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(gcscan.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info
bootstrappercpp.lib(main.obj) : warning LNK4099: PDB 'bootstrappercpp.pdb' was not found with 'bootstrappercpp.lib(main.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\bootstrappercpp.pdb'; linking object as if no debug info
bootstrappercpp.lib(platform.windows.obj) : warning LNK4099: PDB 'bootstrappercpp.pdb' was not found with 'bootstrappercpp.lib(platform.windows.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\bootstrappercpp.pdb'; linking object as if no debug info
PortableRuntime.lib(dllmain.obj) : warning LNK4099: PDB 'PortableRuntime.pdb' was not found with 'PortableRuntime.lib(dllmain.obj)' or at 'D:\Projects\HW\bin\Release\dnxcore50\native\PortableRuntime.pdb'; linking object as if no debug info

@PaulDotNet
Copy link

Just a suggestion for dotnet utility. There should be some options to show what exactly it is doing. What compiler options does it use, what paths, environment variables, are there any temporary batch files, etc. I am stuck with different issues at the moment and this lack of visibility is frustrating.

@brthor
Copy link
Contributor

brthor commented Dec 29, 2015

@SirusDoma I do not see any errors there. Can you check if the native binary was produced?

@benaadams
Copy link
Member

I've got it working following the steps above; the gotchas were

x64 Native Tools Command Prompt and -c Release; can go with --cpp or without.

Lots of warnings as above about pdbs; would be nice if it said Success at end.

Both versions run; though don't work (for a complex app); but I assume that's because its early days.

The --cpp crashes; and non-cpp complains about missing il for a dependency:

AgeOfAscent.Space.exe
ILCompiler failed generating code for this method; execution cannot continue.
This is likely because of a feature that is not yet implemented in the compiler.
Method: [AgeOfAscent.Space]AgeOfAscent.Space.Program.Main

Reason: Assembly not found: Microsoft.Extensions.Configuration.Abstractions

@blackdwarf
Copy link

Closing as the documentation issue for the context is tracked in dotnet/cli#775 . Reopen if you hit this again.

wli3 referenced this issue in wli3/cli Jul 14, 2017
Allow projects to override implicit PackageReference items with item Include syntax
@msftgits msftgits transferred this issue from dotnet/cli Jan 31, 2020
rainersigwald pushed a commit to rainersigwald/sdk that referenced this issue Jul 20, 2020
…711.3 (dotnet#4681)

Microsoft.FSharp.Compiler
 From Version 10.10.0-beta.20329.5 -> To Version 10.10.0-beta.20361.3

Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
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

No branches or pull requests

7 participants