untiy去掉所有烦人的warning

untiy去掉所有烦人的warning

这需要在Asset文件夹下建一个文件 mcs.rsp,要去掉哪条警告
如:

Assets/Best HTTP (Pro)/BestHTTP/SocketIO/Packet.cs(25,25): warning CS1591: Missing XML comment for publicly visible type or member `BestHTTP.SocketIO.Packet'

(Filename: Assets/Best HTTP (Pro)/BestHTTP/SocketIO/Packet.cs Line: 25)

在文本编辑器打开mcs.rsp, 写入 “-nowarn: 1591“,其他类似

我写的如下:

-nowarn:0067
-nowarn:0219
-nowarn:0252
-nowarn:0414
-nowarn:0419
-nowarn:0472
-nowarn:0618
-nowarn:0649
-nowarn:1234
-nowarn:1570
-nowarn:1572
-nowarn:1573
-nowarn:1574
-nowarn:1584
-nowarn:1587
-nowarn:1591
-nowarn:1635
-nowarn:1711

现在的编辑器状态:

untiy去掉所有烦人的warning_第1张图片

文章参考:

http://blog.csdn.net/ykr168age/article/details/51395146

结束 1.


  1. 。。。。 ↩

你可能感兴趣的:(unity3d,unity学习)