WACK intermediate files are located here - \appdata\local\microsoft\appcertkit
Starting from 09-14 build, Unity should pass WACK, you might still fail some tests if you use unsupported API in your scripts.
WACK for Windows RT devices - http://msdn.microsoft.com/en-us/windows/apps/jj572486.aspx.
Below is a table of functions/classes which should be used as alternative if you'll fail 'Supported API test', not all functions/classes are listed here, but in time we'll add more and more.
Unsupported function / class | More information | Alternative function / class |
Hashtable | System.Collections.Generic.Dictionary | |
ArrayList | System.Collections.Generic.List | |
Stack | System.Collections.Generic.Stack | |
System.Type::op_equality | This function is used when you compare two types, for ex., Type t; bool res = t == typeof (Vector3); | System.Type.Equals |
String.Format | There's no longer overloads like String.Format(string fmt, object arg1) and similar | String.Format(fmt, new object[]{...}); |
Page last updated: 2013-10-22