原因是用的vs2015 默认用了c#6 ,但是在没安装.net 4.6 环境下编译失败. 解决办法很简单,修改 6 为 5 做降级就可以了. 1.nuget install DotNetCompilerPlatform 2.App.config add <system.codedom> <compilers> <compiler language="c#;cs;csharp" extension=".cs" type="Mic…
提供属性配置文件一份: http://pan.baidu.com/s/1iS1Ix <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ImportGroup Label="Prope…
解决错误 CS1617 Invalid option '7.1' for /langversion; must be ISO-1, ISO-2, Default or an integer in range 1 to 6. 右键项目-->属性-->生成-->高级-->语言版本选择你配置文件所对应的版本. 或者: 右键项目--->管理nuget程序包-->查找安装或者更新 Microsoft.Net.Compilers…
Get followings error and warnings when building project: error RC1205: invalid code pagewarning C4005: '__useHeader' : macro redefinitionwarning C4005: '__on_failure' : macro redefinition Explanation from MSDN: Resource Compiler Fatal Error RC1205 Th…
在Oracle 11.2的数据库中建表时遇到 RESULT_CACHE (MODE DEFAULT)  ORA-00922: missing or invalid option hostdr:[/home/oracle]$sqlplus / as sysdba SQL*Plus: Release 11.2.0.3.0 Production on Thu Jul 9 12:52:11 2015 Copyright (c) 1982, 2011, Oracle. All rights reserve…
现象:---------------------------------[ERROR] Failure executing javac, but could not parse the error:javac: invalid target release: 1.8Usage: javac <options> <source files>use -help for a list of possible option---------------------------------调…
发布报错:Error ITMS-90635 - Invalid Mach-O in bundle - submitting to App store 昨晚上传项目到AppStore,报了这个错,纳尼!?我早上还能成功上传的,当时判断是晚上网速问题导致的,早上再次试了下,还是一样报错,因为CocoPods导入的框架bitCode不一致导致的,解决方案是在Podfile后面加上 post_install do |installer| installer.pods_project.targets.ea…
在Linux服务器(虚拟机)上使用fdisk添加分区.格式化分区后,遇到了Linux Error: 22: Invalid argument错误,操作步骤如下所示 [root@oracle-server ~]# echo "- - -" > /sys/class/scsi_host/host0/scan [root@oracle-server ~]# fdisk -l   Disk /dev/sda: 584.6 GB, 584646328320 bytes 255 heads,…
在用 Application Loader上传spa 文件的时候出现这样的错误:ERROR ITMS-90032: "Invalid image path No image found at the path referenced under CFBundleIconFile: 'icon.png' 就用以下的方法解决:     以上如果看不懂,现文字描述一种方式:将现有的 .xcassets 文件全部删除,新建一个导入所需的 AppIcon,注意查看是供 iPhone使用还是 iPad 亦或者…
VC连接MySQL的配置过程在上一篇博文中,不过当你设置好,以为万事大吉的时候,运行却出现这个错误:libmysql.lib : fatal error LNK1113: invalid machine type. 无效的机器类型,真的是很让人捉急. 发生这个错误的原因是,我在win8.1上安装的是64bit的mysql服务器,而我编译32位的VC程序,连接的是64位的libmysql.lib库,所以会产生 “无效的机器类型(invalid machine type)”的错误提示. 对于这个“e…