{"record":{"id":"e272d8b7fb97c4db","repo":"Unity-Technologies/UnityCsReference","slug":"playersettings-storetilelogo180-is-deprecated-use","errorCode":null,"errorMessage":"PlayerSettings.storeTileLogo180 is deprecated. Use GetVisualAssetsImage() instead.","messagePattern":"PlayerSettings\\.storeTileLogo180 is deprecated\\. Use GetVisualAssetsImage\\(\\) instead\\.","errorType":"exception","errorClass":"NotSupportedException","httpStatus":null,"severity":"error","filePath":"Editor/Mono/PlayerSettingsWSA.cs","lineNumber":219,"sourceCode":"            public static string storeTileLogo140\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileLogo140 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileLogo140 is deprecated. Use SetVisualAssetsImage() instead.\");\n                }\n            }\n\n            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]\n            [Obsolete(\"Use GetVisualAssetsImage()/SetVisualAssetsImage()\", true)]\n            public static string storeTileLogo180\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileLogo180 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileLogo180 is deprecated. Use SetVisualAssetsImage() instead.\");\n                }\n            }\n\n            [System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]\n            [Obsolete(\"Use GetVisualAssetsImage()/SetVisualAssetsImage()\", true)]\n            public static string storeTileWideLogo80\n            {\n                get\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileWideLogo80 is deprecated. Use GetVisualAssetsImage() instead.\");\n                }\n                set\n                {\n                    throw new NotSupportedException(\"PlayerSettings.storeTileWideLogo80 is deprecated. Use SetVisualAssetsImage() instead.\");","sourceCodeStart":201,"sourceCodeEnd":237,"githubUrl":"https://github.com/Unity-Technologies/UnityCsReference/blob/225b0fbdb57cc17d094e8056b71f8314aba56f73/Editor/Mono/PlayerSettingsWSA.cs#L201-L237","documentation":"Reading PlayerSettings.WSA.storeTileLogo180 throws NotSupportedException directing you to GetVisualAssetsImage(). The property is [Obsolete(\"Use GetVisualAssetsImage()/SetVisualAssetsImage()\", true)] and EditorBrowsable(Never); source references are compile-time errors (CS0619) and the throw is reachable only via reflection, dynamic, or a pre-compiled assembly. storeTileLogo180 was the 180-scale store tile logo; use GetVisualAssetsImage with the appropriate type/scale.","triggerScenarios":"Reflective read of storeTileLogo180, a stale assembly reading it, or C# dynamic access. Direct source reads are compiler errors.","commonSituations":"Old build pipeline compiled against a pre-deprecation Unity. Generic PlayerSettings.WSA snapshot tools. Project upgrade across the deprecating version.","solutions":["Recompile the calling assembly against the current editor to expose CS0619, then migrate.","Replace with PlayerSettings.WSA.GetVisualAssetsImage(<WSAImageType>, <WSAImageScale>) for the corresponding tile.","Remove storeTileLogo180 from reflective read loops; it is EditorBrowsableState.Never.","Version-gate unavoidable reflective access."],"exampleFix":"// before\nstring logo = PlayerSettings.WSA.storeTileLogo180;\n\n// after\nstring logo = PlayerSettings.WSA.GetVisualAssetsImage(\n    WSAImageType.UWPSquare150x150Logo, WSAImageScale._100);","handlingStrategy":"fallback","validationCode":"static bool IsDeprecatedStoreTile(System.Reflection.PropertyInfo p)\n    => p.GetCustomAttributes(typeof(System.ObsoleteAttribute), false)\n         .Cast<System.ObsoleteAttribute>().Any(o => o.IsError);","typeGuard":null,"tryCatchPattern":"try { _ = PlayerSettings.WSA.storeTileLogo180; }\ncatch (System.NotSupportedException)\n{\n    var logo = PlayerSettings.WSA.GetVisualAssetsImage(\n        WSAImageType.UWPSquare150x150Logo, WSAImageScale._100);\n}","preventionTips":["Read tile logos via GetVisualAssetsImage only.","Recompile against the current editor to surface CS0619.","Skip EditorBrowsableState.Never properties in reflective sweeps.","Audit for 'storeTileLogo180' before each upgrade."],"tags":["unity","deprecated","obsolete","wsa","uwp","playersettings","editor-only","notsupported","removed-api"],"backgroundTag":null,"analyzedSha":"225b0fbdb57cc17d094e8056b71f8314aba56f73","analyzedAt":"2026-08-13T19:07:19.849Z","schemaVersion":2},"datasetVersion":"2026-08-13T19:17:28.613Z"}