代码改变世界

Aspose.cells.dll编译时的问题

2012-12-21 01:00  hongjiumu  阅读(418)  评论(0编辑  收藏  举报

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>