Yavuz
"ReferencePath" item list does not define a value for the "CopyLocal" metadata
Hi there,I am making a form application with C# and after downloading Iot.Device.Bindings System.Device.Gpi libraries from nuget I got such an error:
"C:\Users\ardub\source\repos\CPU_GPU\packages\System.Runtime.WindowsRuntime.4.7.0\build\net461\..\..\..\ref\netstandard2.0\System.Runtime.WindowsRuntime.dll" in the "ReferencePath" item list does not define a value for the "CopyLocal" metadata. To use this metadata, either make it available by specifying %(ReferencePath.CopyLocal) or ensure that all items in this list define a value for this metadata. CPU_GPU
as I research,adding this should solve the problem(this path is my one):
<ItemGroup>
<ReferencePath Include="C:\Users\ardub\source\repos\CPU_GPU\packages\System.Runtime.WindowsRuntime.4.7.0\ref\netstandard2.0\System.Runtime.WindowsRuntime.dll">
<CopyLocal>true</CopyLocal>
</ReferencePath>
</ItemGroup>
but this time it says:
Metadata file 'C:\Users\ardub\source\repos\CPU_GPU\packages\System.Runtime.WindowsRuntime.4.6.0\ref\netstandard2.0\System.Runtime.WindowsRuntime.dll' not found CPU_GPU C:\Users\ardub\source\repos\CPU_GPU\CPU_GPU\CSC
Can you help me please?65 replies