IDE:VS2022(x64 17.1)
Package:SketchUpNET 1.7.2 from Nuget with Nuget Package Manager
Project:both Console(.Net Core but change targetframework .net 6.0 to .net462) and Console(.Net Framework 4.6.2)
Code:
`using System;
using SketchUpNET;
namespace ConsoleApp
{
class Program
{
static void Main(string[] args)
{
SketchUp skp = new SketchUp();
if (skp.LoadModel(@"E:\test.skp"))
{
Console.WriteLine("TEST");
}
}
}
}`
Error:Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly "SketchUpNET.dll" or it's referrences.
IDE:VS2022(x64 17.1) Package:SketchUpNET 1.7.2 from Nuget with Nuget Package Manager Project:both Console(.Net Core but change targetframework .net 6.0 to .net462) and Console(.Net Framework 4.6.2) Code: `using System; using SketchUpNET;
namespace ConsoleApp { class Program { static void Main(string[] args) { SketchUp skp = new SketchUp(); if (skp.LoadModel(@"E:\test.skp")) { Console.WriteLine("TEST"); } } } }`
Error:Unhandled Exception: System.IO.FileNotFoundException: Could not load file or assembly "SketchUpNET.dll" or it's referrences.