This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# RiderのSerializeField命名規則を通常のフィールド命名規則と一致させる | |
dotnet_naming_rule.unity_serialized_field.resharper_description = Unity serialized field (disabled) | |
dotnet_naming_rule.unity_serialized_field.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef | |
dotnet_naming_rule.unity_serialized_field.severity = warning | |
dotnet_naming_rule.unity_serialized_field.style = unity_serialized_field | |
dotnet_naming_rule.unity_serialized_field.symbols = unity_serialized_field | |
dotnet_naming_style.unity_serialized_field.capitalization = pascal_case | |
dotnet_naming_symbols.unity_serialized_field.applicable_accessibilities = * | |
dotnet_naming_symbols.unity_serialized_field.applicable_kinds = # VS Codeに影響しないようにする | |
dotnet_naming_symbols.unity_serialized_field.resharper_applicable_kinds = unity_serialised_field |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
pushd %~dp0 | |
powershell -ExecutionPolicy Bypass -File ".\remove_dangling_dgtrayicons.ps1" %* | |
popd | |
pause |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_5_3_OR_NEWER | |
#define UNITY | |
#else | |
#define NON_UNITY | |
#endif | |
// Determine whether to strip assertions. | |
#if !(UNITY && UNITY_ASSERTIONS) && !(NON_UNITY && DEBUG) | |
#define STRIP_ASSERTION_METHODS | |
#endif |