我目前正在为 UWP 开发 MR 应用程序。我正在 unity3d 中构建应用程序(在 5.5.2 和 2017.1.2 中测试)并且当我在 unity 中按下播放时一切正常,没有编译错误什么的......但是当我去构建应用程序时,我收到错误Assets\Script\DMEWebRequest.cs(35,10): error CS0246: The type or namespace name 'DescriptionAttribute' could not be found (are you missing a using directive or an assembly reference?)和Assets\Script\DMEWebRequest.cs(35,10): error CS0246: The type or namespace name 'Description' could not be found (are you missing a using directive or an assembly reference?)
据我所知,DescriptionAttribute 是 System.ComponentModel
我的 C# 脚本中的代码片段
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System;
using UnityEngine;
using UnityEngine.Networking;
using UnityEngine.UI; …Run Code Online (Sandbox Code Playgroud)