1
Using VB.NET
and Newtonsoft.Json
usually... from time to time presented the following error:
Locating source for 'C: Development Releases Json Working Newtonsoft.Json Working-Signed Src Newtonsoft.Json Linq Jarray.Cs'. Checksum: SHA1 {C9 A6 9 0 23 6d 49 2 Fc 49 Eb 53 35 2b 81 cd 5f c 98 62} The file 'C: Development Releases Json Working Newtonsoft.Json Working-Signed Src Newtonsoft.Json Linq Jarray.Cs' does not exist. Looking in script Documents for 'C: Development Releases Json Working Newtonsoft.Json Working-Signed Src Newtonsoft.Json Linq Jarray.Cs'... Looking in the Projects for 'C: Development Releases Json Working Newtonsoft.Json Working-Signed Src Newtonsoft.Json Linq Jarray.Cs'. The file was not found in a project.
If you can put the code where the error is occurring, pointing to the line.
– novic
'"SELECT id, idinterno, date, cel, name, pedidostr, msg, Bxdo, origin FROM request WHERE Bxdo=0 ORDER BY id"
 '
 LinhaNaNuvem = LinhaNaNuvemX() 'Busca as linhas de pedidos que estao na nuvem, com Bxdo<=0
 Dim array As New JArray 'Aqui ocorre o problema
 JArray.Parse(LinhaNaNuvem)")
 array = JArray.Parse(LinhaNaNuvem) For Each item As Jobject In array ' Here each Item is a New Request
– Bob Spielen