Aspose.cells.dll编译时的问题:Error 1 The type or namespace name 'Aspose' could not be found (are you missing a using directive or an assembly reference?) D:\work\1220\work\Solution1\ConsoleApplication1\XlsxReader.cs 6 7 ConsoleApplication1
解决办法:
<?xml version="1.0"?>
<configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0,Profile=Client"/></startup></configuration>
修改为:
<?xml version=
"1.0"?>
<configuration>
<startup><supportedRuntime version=
"v4.0" sku=
".NETFramework,Version=v4.0"/></startup></configuration>
转载于:https://www.cnblogs.com/hongjiumu/archive/2012/12/21/2827327.html