├── SdkBasedPluginEmbedding.Root ├── SubplatformsCollection.Root ├── rider ├── .idea │ ├── .name │ ├── fileTemplates │ │ └── code │ │ │ ├── I18nized Expression.java │ │ │ └── I18nized Concatenation.java │ └── kotlinc.xml ├── src │ ├── main │ │ └── resources │ │ │ └── icon-robots.txt │ └── test │ │ └── testData │ │ ├── solutions │ │ ├── RiderSample │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets │ │ │ │ └── TestScriptableObject.cs.meta │ │ ├── AnimImplicitUsageTest │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets │ │ │ │ ├── Anim │ │ │ │ ├── WithControllerAndScriptMod.meta │ │ │ │ └── WithControllerAndScriptMod │ │ │ │ │ └── WithControllerAndScriptMod.anim.meta │ │ │ │ └── AnimEventHolderWithControllerAndScriptMod.cs.meta │ │ ├── AnimationFindUsages │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets │ │ │ │ └── Subtype.cs │ │ ├── AnimatorFindUsages │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_02_2017 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_02_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_03_2017 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_03_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_04_2017 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_04_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_05_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── SimpleUnityProject │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets │ │ │ │ └── UI │ │ │ │ └── TitleScreen.png │ │ ├── ProjectSettingsTestData │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── UI_PrefabModifications │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── Assets │ │ │ │ ├── erf.cs │ │ │ │ └── erf.cs.meta │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Packages │ │ │ │ └── manifest.json │ │ ├── FindUsages_event_handlers_2017 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_event_handlers_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets.meta │ │ ├── PrefabModificationTestSolution │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── Assets │ │ │ │ ├── Script2.cs.meta │ │ │ │ ├── Script4.cs.meta │ │ │ │ ├── Script5.cs.meta │ │ │ │ ├── Ex1 │ │ │ │ │ ├── Description.txt.meta │ │ │ │ │ └── Description.txt │ │ │ │ ├── MethodsContainer.cs.meta │ │ │ │ ├── MethodsContainer3.cs.meta │ │ │ │ ├── MethodsContainer4.cs.meta │ │ │ │ └── Ex2 │ │ │ │ │ └── Description.txt │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── SimpleUnityProjectWithShaders │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── SimpleUnityProjectWithoutPlugin │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── SimpleUnityUnitTestingProject │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── Assets │ │ │ │ └── Editor │ │ │ │ │ └── Editor.asmdef │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsagesOverriddenEventHandlers │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ ├── boot.config │ │ │ │ └── ProjectVersion.txt │ │ ├── TuanjieDebugAndUnitTesting │ │ │ ├── Project │ │ │ │ ├── Library │ │ │ │ │ └── zero │ │ │ │ └── Assets │ │ │ │ │ ├── Editor │ │ │ │ │ ├── Editor.asmdef │ │ │ │ │ └── CommandLineParser.cs.meta │ │ │ │ │ └── TextureDebuggingScript.cs.meta │ │ │ └── PlayMode │ │ │ │ └── Tests.asmdef │ │ ├── UnityDebugAndUnitTesting │ │ │ ├── Project │ │ │ │ ├── Library │ │ │ │ │ └── zero │ │ │ │ └── Assets │ │ │ │ │ ├── Scenes │ │ │ │ │ └── SampleScene │ │ │ │ │ │ └── LightingData.asset │ │ │ │ │ ├── Editor │ │ │ │ │ ├── Editor.asmdef │ │ │ │ │ └── CommandLineParser.cs.meta │ │ │ │ │ └── TextureDebuggingScript.cs.meta │ │ │ └── PlayMode │ │ │ │ └── Tests.asmdef │ │ ├── UnityProjectModelViewExtensionsTest │ │ │ ├── Library │ │ │ │ └── zero │ │ │ ├── Assets │ │ │ │ ├── NewDirectory1 │ │ │ │ │ └── zero │ │ │ │ ├── Scripts │ │ │ │ │ ├── NewDirectory1 │ │ │ │ │ │ └── zero │ │ │ │ │ ├── Editor │ │ │ │ │ │ ├── NewDirectory1 │ │ │ │ │ │ │ └── zero │ │ │ │ │ │ └── NewDirectory1.meta │ │ │ │ │ └── NewDirectory1.meta │ │ │ │ ├── AsmdefResponse │ │ │ │ │ ├── NewDirectory1 │ │ │ │ │ │ └── zero │ │ │ │ │ ├── AsmdefResponse.asmdef │ │ │ │ │ └── SS │ │ │ │ │ │ ├── AsmdefResponse2.asmdef │ │ │ │ │ │ └── rrr.cs │ │ │ │ ├── Scripts.meta │ │ │ │ ├── Class1.cs │ │ │ │ └── Dir1 │ │ │ │ │ └── ClassInDir1.cs │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── FindUsages_event_handlers_prefabs_2018 │ │ │ ├── Library │ │ │ │ └── zero │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── ResourcesAutocompletionTestData │ │ │ ├── ProjectSettings │ │ │ │ ├── boot.config │ │ │ │ └── ProjectVersion.txt │ │ │ ├── Assets │ │ │ │ ├── Resources │ │ │ │ │ └── from_res__RUNTIME.bytes │ │ │ │ └── Editor │ │ │ │ │ └── Resources │ │ │ │ │ └── from_res__EDITOR.bytes │ │ │ ├── LoadFromDiskPackages │ │ │ │ └── from_disk │ │ │ │ │ ├── Editor │ │ │ │ │ └── Resources │ │ │ │ │ │ └── from_disk__EDITOR.bytes │ │ │ │ │ └── Runtime │ │ │ │ │ └── Resources │ │ │ │ │ ├── from_disk__RUNTIME.bytes │ │ │ │ │ └── Folder │ │ │ │ │ └── noescapefromrider.txt │ │ │ ├── Packages │ │ │ │ └── from_pack_folder │ │ │ │ │ ├── Editor │ │ │ │ │ └── Resources │ │ │ │ │ │ └── from_pack_folder__EDITOR.bytes │ │ │ │ │ └── Runtime │ │ │ │ │ └── Resources │ │ │ │ │ └── from_pack_folder__RUNTIME.bytes │ │ │ └── Library │ │ │ │ └── PackageCache │ │ │ │ └── com.jetbrains.from_git@f9e423ad5f │ │ │ │ ├── Editor │ │ │ │ └── Resources │ │ │ │ │ └── from_git__EDITOR.bytes │ │ │ │ └── Runtime │ │ │ │ └── Resources │ │ │ │ └── from_git__RUNTIME.bytes │ │ ├── UnityDotsAutocompletionTestData │ │ │ ├── ProjectSettings │ │ │ │ ├── boot.config │ │ │ │ └── ProjectVersion.txt │ │ │ └── Assets │ │ │ │ └── DotsClasses.cs.meta │ │ ├── AssetDatabasePathCompletionProject │ │ │ ├── Library │ │ │ │ ├── BuildPlayer.prefs │ │ │ │ ├── LastSceneManagerSetup.txt │ │ │ │ ├── PackageCache │ │ │ │ │ ├── com.jetbrains.from_git@f9e423ad5f │ │ │ │ │ │ ├── Editor │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ │ └── from_git__EDITOR.bytes │ │ │ │ │ │ └── Runtime │ │ │ │ │ │ │ └── Resources │ │ │ │ │ │ │ └── from_git__RUNTIME.bytes │ │ │ │ │ └── com.unity.ide.rider@3.0.18 │ │ │ │ │ │ └── .editorconfig │ │ │ │ ├── LibraryFormatVersion.txt │ │ │ │ └── EditorOnlyVirtualTextureState.json │ │ │ ├── Assets │ │ │ │ ├── Resources │ │ │ │ │ └── from_res__RUNTIME.bytes │ │ │ │ └── Editor │ │ │ │ │ └── Resources │ │ │ │ │ └── from_res__EDITOR.bytes │ │ │ ├── LoadFromDiskPackages │ │ │ │ └── from_disk │ │ │ │ │ ├── Editor │ │ │ │ │ └── Resources │ │ │ │ │ │ └── from_disk__EDITOR.bytes │ │ │ │ │ └── Runtime │ │ │ │ │ └── Resources │ │ │ │ │ └── from_disk__RUNTIME.bytes │ │ │ ├── Packages │ │ │ │ └── from_pack_folder │ │ │ │ │ ├── Editor │ │ │ │ │ └── Resources │ │ │ │ │ │ └── from_pack_folder__EDITOR.bytes │ │ │ │ │ └── Runtime │ │ │ │ │ └── Resources │ │ │ │ │ └── from_pack_folder__RUNTIME.bytes │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ ├── UnityDotsDebug │ │ │ └── Project │ │ │ │ ├── Assets │ │ │ │ ├── Editor │ │ │ │ │ ├── Editor.asmdef │ │ │ │ │ └── CommandLineParser.cs.meta │ │ │ │ ├── ResetTransformSystem.cs.meta │ │ │ │ └── Common │ │ │ │ │ └── RotationSpeedAuthoring.cs.meta │ │ │ │ ├── ProjectSettings │ │ │ │ ├── ProjectVersion.txt │ │ │ │ └── Packages │ │ │ │ │ └── com.unity.testtools.codecoverage │ │ │ │ │ └── Settings.json │ │ │ │ └── .gitignore │ │ ├── .gitignore │ │ ├── InputSystemTestData │ │ │ ├── Assets │ │ │ │ ├── Cube2.prefab.meta │ │ │ │ ├── Cube3.prefab.meta │ │ │ │ ├── Cube4.prefab.meta │ │ │ │ ├── BroadcastScript1.cs.meta │ │ │ │ ├── NewBehaviourScript1.cs.meta │ │ │ │ ├── NewBehaviourScript2.cs.meta │ │ │ │ ├── NewBehaviourScript3.cs.meta │ │ │ │ ├── NewBehaviourScript4.cs.meta │ │ │ │ ├── BroadcastScript1.inputactions.meta │ │ │ │ ├── MyInputForPrefab2.inputactions.meta │ │ │ │ ├── MyInputForPrefab3.inputactions.meta │ │ │ │ ├── MyInputForPrefab4.inputactions.meta │ │ │ │ └── Scenes │ │ │ │ │ ├── SceneBroadcast1.unity.meta │ │ │ │ │ ├── SceneWithPrefab1.unity.meta │ │ │ │ │ ├── SceneWithPrefab2.unity.meta │ │ │ │ │ ├── SceneWithPrefab3.unity.meta │ │ │ │ │ └── SceneWithPrefab4.unity.meta │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ └── Library │ │ │ │ └── LastSceneManagerSetup.txt │ │ ├── MarkupTestData │ │ │ ├── Assets │ │ │ │ └── Scripts │ │ │ │ │ └── Mechanics │ │ │ │ │ └── Test.cs.meta │ │ │ ├── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ │ ├── Packages │ │ │ │ └── manifest.json │ │ │ └── Library │ │ │ │ └── LastSceneManagerSetup.txt │ │ └── UnityPlayerProjects │ │ │ └── SimpleUnityGame │ │ │ ├── Packages │ │ │ └── manifest.json │ │ │ ├── .gitignore │ │ │ ├── ProjectSettings │ │ │ ├── ProjectVersion.txt │ │ │ └── Packages │ │ │ │ └── com.unity.testtools.codecoverage │ │ │ │ └── Settings.json │ │ │ └── Assets │ │ │ └── Editor │ │ │ └── CommandLineParser.cs.meta │ │ ├── integrationTests │ │ └── ConnectionTest │ │ │ ├── checkExternalEditorWithExecutingMethod │ │ │ └── gold │ │ │ │ └── checkExternalEditorWithExecutingMethod.gold │ │ │ └── checkExternalEditorWithUnityModelRefresh │ │ │ └── gold │ │ │ └── checkExternalEditorWithUnityModelRefresh.gold │ │ └── UnityClassLibTest │ │ └── lib │ │ ├── UnityEngine.dll │ │ └── UnityEngine-2018.3-07-30-2019.dll └── gradle │ └── wrapper │ └── gradle-wrapper.jar ├── common └── dictionaries │ └── unity.aff ├── debugger ├── SubplatformsCollection.Root ├── debugger-worker │ ├── src │ │ └── AssemblyInfo.cs │ └── Subplatform.Snk └── Directory.Build.props ├── resharper ├── SubplatformsCollection.Root ├── resharper-json │ ├── SubplatformsCollection.Root │ ├── src │ │ ├── SubplatformsCollection.Root │ │ ├── Json │ │ │ ├── Subplatform.Snk │ │ │ └── Psi │ │ │ │ └── Tree │ │ │ │ └── IJsonNewMember.cs │ │ └── Json.Rider │ │ │ └── Subplatform.Snk │ └── test │ │ ├── SubplatformsCollection.Root │ │ ├── data │ │ └── Json │ │ │ └── Psi │ │ │ ├── Lexing │ │ │ ├── empty.json │ │ │ ├── empty.json.gold │ │ │ ├── emptyArray.json │ │ │ ├── boolLiteral.json │ │ │ ├── emptyObject.json │ │ │ ├── literal.json │ │ │ ├── array.json │ │ │ ├── object.json │ │ │ ├── stringLiteral.json │ │ │ ├── boolLiteral.json.gold │ │ │ ├── literal.json.gold │ │ │ ├── object1.json │ │ │ ├── emptyArray.json.gold │ │ │ ├── emptyObject.json.gold │ │ │ ├── object3.json │ │ │ ├── stringLiteral.json.gold │ │ │ ├── object6.json │ │ │ └── object2.json │ │ │ └── Parsing │ │ │ ├── empty.json │ │ │ ├── boolLiteral.json │ │ │ ├── emptyArray.json │ │ │ ├── emptyObject.json │ │ │ ├── literal.json │ │ │ ├── array.json │ │ │ ├── stringLiteral.json │ │ │ ├── object.json │ │ │ ├── object1.json │ │ │ ├── object3.json │ │ │ ├── empty.json.gold │ │ │ ├── object6.json │ │ │ ├── object2.json │ │ │ └── boolLiteral.json.gold │ │ └── src │ │ └── Subplatform.Snk ├── resharper-unity │ ├── SubplatformsCollection.Root │ ├── src │ │ ├── SubplatformsCollection.Root │ │ ├── Unity │ │ │ ├── CSharp │ │ │ │ └── Feature │ │ │ │ │ └── Services │ │ │ │ │ └── CallGraph │ │ │ │ │ └── ExpensiveCodeAnalysis │ │ │ │ │ └── AddExpensiveComment │ │ │ │ │ └── AddExpensiveCommentContextAction.cs │ │ │ └── Subplatform.Snk │ │ ├── Unity.Fleet │ │ │ └── Subplatform.Snk │ │ ├── Unity.Rider │ │ │ └── Subplatform.Snk │ │ └── Unity.Shaders │ │ │ ├── Subplatform.Snk │ │ │ └── Model │ │ │ └── UrtCompilationMode.cs │ └── test │ │ ├── SubplatformsCollection.Root │ │ ├── data │ │ ├── Unity │ │ │ ├── CSharp │ │ │ │ ├── Generate │ │ │ │ │ ├── NonUnityType.cs.gold │ │ │ │ │ ├── NonUnityProject.cs.gold │ │ │ │ │ ├── NonUnityType.cs │ │ │ │ │ ├── NonUnityProject.cs │ │ │ │ │ ├── ListElements04.cs │ │ │ │ │ ├── ListElements08.cs │ │ │ │ │ ├── ListElements11.cs │ │ │ │ │ ├── ListElements02.cs │ │ │ │ │ ├── ListElements06.cs │ │ │ │ │ ├── ListElements07.cs │ │ │ │ │ ├── ListElements12.cs │ │ │ │ │ ├── ListElements14.cs │ │ │ │ │ ├── ListElements15.cs │ │ │ │ │ ├── ListElements16.cs │ │ │ │ │ ├── ListElements01.cs │ │ │ │ │ ├── ListElements09.cs │ │ │ │ │ ├── ListElements13.cs │ │ │ │ │ ├── ListElements17.cs │ │ │ │ │ ├── MonoBehaviour01.cs │ │ │ │ │ ├── InsertSingleMethod02.cs │ │ │ │ │ ├── ListElements03.cs │ │ │ │ │ ├── ListElements05.cs │ │ │ │ │ ├── ListElements19.cs │ │ │ │ │ └── ListElements10.cs │ │ │ │ ├── LiveTemplates │ │ │ │ │ └── Scope │ │ │ │ │ │ ├── InUnityCSharpFile01.cs.gold │ │ │ │ │ │ ├── InUnityCSharpFile02.cs.gold │ │ │ │ │ │ ├── Test54.cs.gold │ │ │ │ │ │ ├── Test55.cs.gold │ │ │ │ │ │ ├── Test171.cs.gold │ │ │ │ │ │ ├── Test172.cs.gold │ │ │ │ │ │ ├── Test173.cs.gold │ │ │ │ │ │ ├── Test174.cs.gold │ │ │ │ │ │ ├── Test181.cs.gold │ │ │ │ │ │ ├── Test182.cs.gold │ │ │ │ │ │ ├── Test183.cs.gold │ │ │ │ │ │ ├── Test184.cs.gold │ │ │ │ │ │ ├── Test191.cs.gold │ │ │ │ │ │ ├── Test192.cs.gold │ │ │ │ │ │ ├── Test193.cs.gold │ │ │ │ │ │ ├── Test194.cs.gold │ │ │ │ │ │ ├── Test201.cs.gold │ │ │ │ │ │ ├── InSerializableClass.cs.gold │ │ │ │ │ │ ├── InMonoBehaviour.cs.gold │ │ │ │ │ │ ├── InScriptableObject.cs.gold │ │ │ │ │ │ ├── InUnityCSharpFile02.cs │ │ │ │ │ │ ├── Test171.cs │ │ │ │ │ │ ├── Test172.cs │ │ │ │ │ │ ├── Test173.cs │ │ │ │ │ │ ├── Test174.cs │ │ │ │ │ │ ├── Test181.cs │ │ │ │ │ │ ├── Test182.cs │ │ │ │ │ │ ├── Test183.cs │ │ │ │ │ │ ├── Test184.cs │ │ │ │ │ │ ├── Test191.cs │ │ │ │ │ │ ├── Test192.cs │ │ │ │ │ │ ├── Test193.cs │ │ │ │ │ │ ├── Test194.cs │ │ │ │ │ │ ├── Test201.cs │ │ │ │ │ │ ├── Test54.cs │ │ │ │ │ │ ├── Test55.cs │ │ │ │ │ │ ├── Test56.cs │ │ │ │ │ │ ├── InMonoBehaviour.cs │ │ │ │ │ │ ├── InSerializableClass.cs │ │ │ │ │ │ ├── InUnityCSharpFile01.cs │ │ │ │ │ │ └── InScriptableObject.cs │ │ │ │ ├── Intentions │ │ │ │ │ ├── QuickFixes │ │ │ │ │ │ ├── CreateFromUsage │ │ │ │ │ │ │ ├── SerializedField04.cs.gold │ │ │ │ │ │ │ └── SerializedField04.cs │ │ │ │ │ │ ├── RedundantAttributeOnTarget │ │ │ │ │ │ │ ├── RedundantAssemblyAttribute.cs.gold │ │ │ │ │ │ │ ├── RedundantAssemblyAttribute.cs │ │ │ │ │ │ │ ├── RedundantClassAttribute.cs.gold │ │ │ │ │ │ │ ├── Availability │ │ │ │ │ │ │ │ ├── RedundantAssemblyAttribute.cs │ │ │ │ │ │ │ │ └── RedundantClassAttribute.cs │ │ │ │ │ │ │ └── RedundantClassAttribute.cs │ │ │ │ │ │ ├── RedundantEventFunction │ │ │ │ │ │ │ └── Test01.cs.gold │ │ │ │ │ │ ├── RedundantInitializeOnLoadAttribute │ │ │ │ │ │ │ ├── Test01.cs.gold │ │ │ │ │ │ │ └── Test01.cs │ │ │ │ │ │ ├── UseSerializedBackingField │ │ │ │ │ │ │ └── Test01.cs │ │ │ │ │ │ ├── ConvertToScriptableObjectCreateInstance │ │ │ │ │ │ │ └── MyScriptableObject.cs │ │ │ │ │ │ └── RedundantHideInInspectorAttribute │ │ │ │ │ │ │ └── Test04.cs.gold │ │ │ │ │ └── ContextActions │ │ │ │ │ │ ├── CreateAssetMenu │ │ │ │ │ │ └── AddCreateAssetMenu.cs │ │ │ │ │ │ ├── GenerateUnityEventFunctions │ │ │ │ │ │ └── GenerateEvents.cs │ │ │ │ │ │ ├── AddHeaderAttribute │ │ │ │ │ │ └── AddAttribute.cs │ │ │ │ │ │ ├── AddRangeAttribute │ │ │ │ │ │ └── AddAttribute.cs │ │ │ │ │ │ ├── AddSpaceAttribute │ │ │ │ │ │ └── AddAttribute.cs │ │ │ │ │ │ └── ToggleSerializedField │ │ │ │ │ │ └── ToSerialized01.cs │ │ │ │ ├── CodeCompletion │ │ │ │ │ ├── List │ │ │ │ │ │ ├── NoCompletionInsideInterface.cs.gold │ │ │ │ │ │ ├── NoCompletionInsideStruct.cs.gold │ │ │ │ │ │ ├── NoCompletionFollowingSerializeFieldAttribute04.cs.gold │ │ │ │ │ │ ├── MonoBehaviour01.cs │ │ │ │ │ │ ├── MonoBehaviour02.cs │ │ │ │ │ │ ├── AlphabeticalMonoBehaviour01.cs │ │ │ │ │ │ ├── MonoBehaviour03.cs │ │ │ │ │ │ ├── MonoBehaviour04.cs │ │ │ │ │ │ ├── MonoBehaviour05.cs │ │ │ │ │ │ ├── OnParticleTriggerWithNoArgs55.cs │ │ │ │ │ │ ├── OnParticleTriggerWithOneArg54.cs │ │ │ │ │ │ ├── NoCompletionInsideStruct.cs │ │ │ │ │ │ ├── NoCompletionFollowingSerializeFieldAttribute01.cs │ │ │ │ │ │ ├── NoCompletionFollowingSerializeFieldAttribute02.cs │ │ │ │ │ │ ├── NoCompletionInsideInterface.cs │ │ │ │ │ │ └── UnityEditor01.cs │ │ │ │ │ └── Action │ │ │ │ │ │ └── EmptyPrefix.cs │ │ │ │ ├── Resolve │ │ │ │ │ └── UnityObjectTypeInStringLiteral │ │ │ │ │ │ └── CodeCompletion │ │ │ │ │ │ ├── AddComponent03.cs.gold │ │ │ │ │ │ ├── AddComponent08.cs.gold │ │ │ │ │ │ ├── GetComponent03.cs.gold │ │ │ │ │ │ ├── GetComponent08.cs.gold │ │ │ │ │ │ └── ScriptableObjectCreateInstance08.cs.gold │ │ │ │ ├── Daemon │ │ │ │ │ └── IdentifierTooltip │ │ │ │ │ │ ├── SerialisedField.gold │ │ │ │ │ │ ├── SerialisedField.cs │ │ │ │ │ │ ├── SerialisedFieldWithTooltip.gold │ │ │ │ │ │ └── EventFunction01.cs │ │ │ │ └── Refactorings │ │ │ │ │ └── Rename │ │ │ │ │ ├── Test01.cs │ │ │ │ │ ├── Test02.cs │ │ │ │ │ └── Test03.cs │ │ │ ├── ShaderLab │ │ │ │ ├── CodeCompletion │ │ │ │ │ ├── Hlsl │ │ │ │ │ │ └── List │ │ │ │ │ │ │ ├── HlslKeywords.hlsl │ │ │ │ │ │ │ ├── TestDefinedSymbols.urtshader │ │ │ │ │ │ │ ├── TestPragmaCommands.compute │ │ │ │ │ │ │ └── TestPragmaCommands.hlsl │ │ │ │ │ └── Keywords │ │ │ │ │ │ ├── List │ │ │ │ │ │ ├── TestTopLevelStatement01.shader │ │ │ │ │ │ ├── TestTopLevelStatement02.shader │ │ │ │ │ │ ├── TestTopLevelStatement03.shader │ │ │ │ │ │ ├── TestShaderCommandContent01.shader │ │ │ │ │ │ ├── TestTopLevelStatement02.shader.gold │ │ │ │ │ │ ├── TestTopLevelStatement03.shader.gold │ │ │ │ │ │ ├── TestShaderCommandContent06.shader.gold │ │ │ │ │ │ ├── TestCategoryCommandContent01.shader │ │ │ │ │ │ ├── TestBlend01.shader │ │ │ │ │ │ ├── TestBlend02.shader │ │ │ │ │ │ ├── TestSubShaderCommandContent01.shader │ │ │ │ │ │ ├── TestBlendOp01.shader │ │ │ │ │ │ ├── TestBlendOp02.shader │ │ │ │ │ │ ├── TestCullValue.shader │ │ │ │ │ │ ├── TestShaderCommandContent02.shader │ │ │ │ │ │ ├── TestColorMaterial.shader │ │ │ │ │ │ ├── TestBlend03.shader │ │ │ │ │ │ ├── TestShaderCommandContent05.shader │ │ │ │ │ │ ├── TestShaderCommandContent06.shader │ │ │ │ │ │ ├── TestSubShaderCommandContent02.shader │ │ │ │ │ │ ├── TestPropertyValueType.shader │ │ │ │ │ │ ├── TestShaderCommandContent03.shader │ │ │ │ │ │ └── TestShaderCommandContent04.shader │ │ │ │ │ │ ├── TestBlockCommandCompletion02.shader.jcnf │ │ │ │ │ │ ├── TestKeywordReplacement.shader │ │ │ │ │ │ └── TestKeywordReplacement.shader.gold │ │ │ │ ├── Psi │ │ │ │ │ ├── Parsing │ │ │ │ │ │ ├── First.shader │ │ │ │ │ │ ├── ShaderWithErrors02.shader │ │ │ │ │ │ ├── ShaderWithErrors01.shader │ │ │ │ │ │ ├── FallbackError.shader │ │ │ │ │ │ ├── FallbackNone.shader │ │ │ │ │ │ ├── CustomEditorError.shader │ │ │ │ │ │ ├── FallbackNamed.shader │ │ │ │ │ │ ├── PropertiesEmpty.shader │ │ │ │ │ │ ├── ShaderWithErrors03.shader │ │ │ │ │ │ ├── CustomEditor.shader │ │ │ │ │ │ ├── ShaderWithErrors04.shader │ │ │ │ │ │ ├── FallbackLodValueErrorWithOff.shader │ │ │ │ │ │ ├── FallbackLodValueProper.shader │ │ │ │ │ │ ├── FallbackLodValueErrorNoLiteral.shader │ │ │ │ │ │ ├── Dependency01.shader │ │ │ │ │ │ ├── FallbackLodValueExpectedLiteral.shader │ │ │ │ │ │ └── LegacyLighting01.shader │ │ │ │ │ ├── Lexing │ │ │ │ │ │ ├── UnterminatedString.shader │ │ │ │ │ │ ├── UnterminatedComment.shader │ │ │ │ │ │ └── UnterminatedComment2.shader │ │ │ │ │ ├── Resolve │ │ │ │ │ │ ├── TestShaderReference01.01.shader │ │ │ │ │ │ ├── TestShaderReference01.shader │ │ │ │ │ │ └── TestTexturePassReference01.shader │ │ │ │ │ └── Caches │ │ │ │ │ │ ├── ShaderVariants │ │ │ │ │ │ ├── ComputeShader.compute.gold │ │ │ │ │ │ ├── UrtShader.urtshader.gold │ │ │ │ │ │ └── AllDirectives.shader.gold │ │ │ │ │ │ └── ShaderProgram │ │ │ │ │ │ └── TestMultipleSourceFilesWithSamePath.shader.gold │ │ │ │ ├── LiveTemplates │ │ │ │ │ └── Scope │ │ │ │ │ │ ├── MustBeInShaderLabRoot01.shader │ │ │ │ │ │ ├── MustBeInShaderLabRoot02.shader │ │ │ │ │ │ ├── InShaderLabFile01.shader.gold │ │ │ │ │ │ ├── InShaderLabFile02.shader.gold │ │ │ │ │ │ ├── MustBeInShaderBlock02.shader.gold │ │ │ │ │ │ ├── MustBeInShaderBlock02.shader │ │ │ │ │ │ ├── InShaderLabFile01.shader │ │ │ │ │ │ ├── MustBeInShaderBlock01.shader │ │ │ │ │ │ ├── MustBeInShaderLabRoot01.shader.gold │ │ │ │ │ │ ├── MustBeInShaderLabRoot02.shader.gold │ │ │ │ │ │ ├── MustBeInShaderBlock01.shader.gold │ │ │ │ │ │ ├── MustBeInTexturePassBlock01.shader.gold │ │ │ │ │ │ ├── MustBeInPropertiesBlock01.shader.gold │ │ │ │ │ │ ├── InShaderLabFile02.shader │ │ │ │ │ │ └── MustBeInPropertiesBlock01.shader │ │ │ │ ├── References │ │ │ │ │ ├── Test03.hlsl │ │ │ │ │ ├── Test02.compute │ │ │ │ │ └── Test03.hlsl.gold │ │ │ │ ├── Daemon │ │ │ │ │ ├── Hlsl │ │ │ │ │ │ └── Analysis │ │ │ │ │ │ │ └── Includes │ │ │ │ │ │ │ ├── Unused.hlsl │ │ │ │ │ │ │ └── Used.hlsl │ │ │ │ │ └── Stages │ │ │ │ │ │ └── Highlightings │ │ │ │ │ │ └── ShaderVariants.hlsl │ │ │ │ ├── Refactorings │ │ │ │ │ └── Rename │ │ │ │ │ │ ├── TestShader01.01.shader │ │ │ │ │ │ ├── TestShader03.01.shader │ │ │ │ │ │ ├── TestShader01.01.shader.gold │ │ │ │ │ │ ├── TestShader02.01.shader.gold │ │ │ │ │ │ ├── TestShader03.01.shader.gold │ │ │ │ │ │ ├── TestShader02.01.shader │ │ │ │ │ │ ├── Hlsl │ │ │ │ │ │ ├── Test03.hlsl.gold │ │ │ │ │ │ ├── Test04.hlsl.gold │ │ │ │ │ │ ├── Test09.hlsl.gold │ │ │ │ │ │ ├── Test10.hlsl.gold │ │ │ │ │ │ ├── Test11.hlsl.gold │ │ │ │ │ │ ├── Test12.hlsl.gold │ │ │ │ │ │ ├── Test13.hlsl.gold │ │ │ │ │ │ ├── Test14.hlsl.gold │ │ │ │ │ │ ├── Test01.compute.gold │ │ │ │ │ │ ├── Test02.compute.gold │ │ │ │ │ │ ├── Test03.hlsl │ │ │ │ │ │ ├── Test04.hlsl │ │ │ │ │ │ ├── Test05.hlsl │ │ │ │ │ │ ├── Test05.hlsl.gold │ │ │ │ │ │ ├── Test06.hlsl │ │ │ │ │ │ ├── Test06.hlsl.gold │ │ │ │ │ │ ├── Test07.hlsl │ │ │ │ │ │ ├── Test07.hlsl.gold │ │ │ │ │ │ ├── Test08.hlsl │ │ │ │ │ │ ├── Test08.hlsl.gold │ │ │ │ │ │ ├── Test09.hlsl │ │ │ │ │ │ ├── Test10.hlsl │ │ │ │ │ │ ├── Test11.hlsl │ │ │ │ │ │ ├── Test12.hlsl │ │ │ │ │ │ ├── Test13.hlsl │ │ │ │ │ │ ├── Test14.hlsl │ │ │ │ │ │ ├── Test01.compute │ │ │ │ │ │ ├── Test02.compute │ │ │ │ │ │ ├── IndirectLinkBetweenDefinitionAndDeclarationViaCommonHeader │ │ │ │ │ │ │ ├── common.hlsl │ │ │ │ │ │ │ └── common.hlsl.gold │ │ │ │ │ │ └── ShadersWithSameDefinitions │ │ │ │ │ │ │ ├── test2.hlsl │ │ │ │ │ │ │ ├── test2.hlsl.gold │ │ │ │ │ │ │ ├── test1.compute │ │ │ │ │ │ │ └── test1.compute.gold │ │ │ │ │ │ ├── TestShaderReferenceRenameInCSharp01.01.shader │ │ │ │ │ │ └── TestShaderReferenceRenameInCSharp01.01.shader.gold │ │ │ │ ├── TypingAssist │ │ │ │ │ ├── SmartEnter14.shader.jcnf │ │ │ │ │ ├── SmartBackspace01.shader.jcnf │ │ │ │ │ ├── SmartBackspace02.shader.jcnf │ │ │ │ │ ├── SmartBackspace03.shader.jcnf │ │ │ │ │ ├── SmartBackspaceHlsl01.shader.jcnf │ │ │ │ │ ├── SmartEnter15.shader.jcnf │ │ │ │ │ ├── SmartEnter17.shader.jcnf │ │ │ │ │ ├── SmartEnter16.shader.jcnf │ │ │ │ │ ├── SmartEnter18.shader.jcnf │ │ │ │ │ ├── SmartEnter19.shader.jcnf │ │ │ │ │ ├── SmartQuot03.shader │ │ │ │ │ ├── SmartQuot04.shader │ │ │ │ │ ├── SmartQuot03.shader.gold │ │ │ │ │ ├── SmartQuot04.shader.gold │ │ │ │ │ └── SmartQuot01.shader │ │ │ │ ├── Breadcrumbs │ │ │ │ │ ├── TestHLSLFile.hlsl │ │ │ │ │ └── TestHLSLFile.hlsl.gold │ │ │ │ ├── Intentions │ │ │ │ │ └── QuickFixes │ │ │ │ │ │ └── ShaderLabRedundantPreprocessorChar │ │ │ │ │ │ ├── Test01.shader │ │ │ │ │ │ ├── Test01.shader.gold │ │ │ │ │ │ └── Availability │ │ │ │ │ │ └── Test01.shader │ │ │ │ ├── SelectEmbracingConstruct │ │ │ │ │ ├── Test01.shader │ │ │ │ │ └── Test02.shader │ │ │ │ └── QuickDoc │ │ │ │ │ └── ShaderLabKeyword.shader │ │ │ ├── SerializationReference │ │ │ │ └── Solutions │ │ │ │ │ ├── Assemblies │ │ │ │ │ └── .gitignore │ │ │ │ │ ├── GenericClassesAssembly01 │ │ │ │ │ └── GenericClassesAssembly01 │ │ │ │ │ │ └── Class1.cs │ │ │ │ │ ├── PartialClassesLib01 │ │ │ │ │ ├── IInterface1.cs │ │ │ │ │ ├── Part1.Class1.cs │ │ │ │ │ └── Class1.cs │ │ │ │ │ ├── ListArrayFixedBufferAssemblyTest │ │ │ │ │ └── ListArrayFixedBufferAssemblyTest │ │ │ │ │ │ └── Class1.cs │ │ │ │ │ └── PropertyWithBackingFieldAssembly │ │ │ │ │ └── PropertyWithBackingFieldAssembly │ │ │ │ │ └── Class1.cs │ │ │ ├── AsmDef │ │ │ │ ├── Refactorings │ │ │ │ │ └── Rename │ │ │ │ │ │ ├── GuidReference.asmdef.gold │ │ │ │ │ │ ├── SingleFile.asmdef.gold │ │ │ │ │ │ ├── CrossFileRename.asmdef.gold │ │ │ │ │ │ ├── GuidReference.asmdef │ │ │ │ │ │ ├── SingleFile.asmdef │ │ │ │ │ │ ├── CrossFileRename.asmdef │ │ │ │ │ │ ├── CrossFileRename_SecondProject.asmdef.gold │ │ │ │ │ │ └── CrossFileRename_SecondProject.asmdef │ │ │ │ ├── Intentions │ │ │ │ │ ├── ContextActions │ │ │ │ │ │ ├── Navigation │ │ │ │ │ │ │ ├── Ref1.asmdef │ │ │ │ │ │ │ ├── AsmRef_FirstProject.asmdef │ │ │ │ │ │ │ ├── AsmRefNamedReference.asmref │ │ │ │ │ │ │ ├── Ref2.asmdef │ │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ │ ├── Test01.asmdef │ │ │ │ │ │ │ ├── Test03.asmdef │ │ │ │ │ │ │ ├── Test02.asmdef │ │ │ │ │ │ │ └── AsmRefGuidReference.asmref │ │ │ │ │ │ └── ConvertToNamedReference │ │ │ │ │ │ │ ├── AsmRefAvailability02.asmref │ │ │ │ │ │ │ ├── AsmRefAvailability03.asmref │ │ │ │ │ │ │ ├── AsmRefAvailability04.asmref │ │ │ │ │ │ │ ├── AsmRefExecute01.asmref.gold │ │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef.gold │ │ │ │ │ │ │ ├── AsmRefAvailability01.asmref │ │ │ │ │ │ │ ├── AsmRefExecute01.asmref │ │ │ │ │ │ │ ├── Execute01.asmdef.gold │ │ │ │ │ │ │ └── Execute01.asmdef │ │ │ │ │ └── QuickFixes │ │ │ │ │ │ ├── MismatchedFilename │ │ │ │ │ │ ├── Test01.asmdef │ │ │ │ │ │ ├── MyAssembly.asmdef.gold │ │ │ │ │ │ └── Availability │ │ │ │ │ │ │ └── Test01.asmdef │ │ │ │ │ │ ├── ConvertToGuidReference │ │ │ │ │ │ ├── TestAsmRef01.asmref │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ ├── Availability │ │ │ │ │ │ │ ├── TestAsmRef01.asmref │ │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ │ └── Test01.asmdef │ │ │ │ │ │ ├── Test01.asmdef │ │ │ │ │ │ ├── TestAsmRef01.asmref.gold │ │ │ │ │ │ └── Test01.asmdef.gold │ │ │ │ │ │ └── ReferencingSelf │ │ │ │ │ │ ├── Test01.asmdef.gold │ │ │ │ │ │ ├── Test01.asmdef │ │ │ │ │ │ ├── Availability │ │ │ │ │ │ └── Test01.asmdef │ │ │ │ │ │ ├── Test02.asmdef.gold │ │ │ │ │ │ └── Test02.asmdef │ │ │ │ ├── Psi │ │ │ │ │ └── Resolve │ │ │ │ │ │ ├── AsmRefReference.asmref │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ ├── CrossProjectReference_SecondProject.asmdef │ │ │ │ │ │ ├── UnresolvedReference02_SecondProject.asmdef │ │ │ │ │ │ ├── AsmRefGuidReference.asmref │ │ │ │ │ │ ├── UnresolvedReference01.asmdef │ │ │ │ │ │ ├── CrossProjectReference.asmdef │ │ │ │ │ │ ├── UnresolvedReference02.asmdef │ │ │ │ │ │ └── GuidReference.asmdef │ │ │ │ ├── CodeCompletion │ │ │ │ │ ├── AsmRefReference │ │ │ │ │ │ ├── TestList01.asmref │ │ │ │ │ │ ├── Ref01_SecondProject.asmdef │ │ │ │ │ │ ├── TestAction01.asmref │ │ │ │ │ │ └── TestAction01.asmref.gold │ │ │ │ │ ├── AsmDefReferences │ │ │ │ │ │ ├── Ref01_SecondProject.asmdef │ │ │ │ │ │ ├── TestList01.asmdef │ │ │ │ │ │ ├── TestAction01.asmdef │ │ │ │ │ │ └── TestAction01.asmdef.gold │ │ │ │ │ └── VersionDefines │ │ │ │ │ │ └── TestList01.asmdef │ │ │ │ ├── Daemon │ │ │ │ │ └── Stages │ │ │ │ │ │ ├── Analysis │ │ │ │ │ │ ├── PreferGuidReference │ │ │ │ │ │ │ ├── Ref1.asmdef │ │ │ │ │ │ │ └── AsmRef.asmref │ │ │ │ │ │ ├── GuidReference │ │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ │ ├── GuidReference.asmref │ │ │ │ │ │ │ └── GuidReference.asmdef │ │ │ │ │ │ └── ReferencingSelf │ │ │ │ │ │ │ └── Test01.asmdef │ │ │ │ │ │ ├── InlayHints │ │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ │ ├── GuidReference.asmref │ │ │ │ │ │ └── GuidReference.asmdef │ │ │ │ │ │ └── Resolve │ │ │ │ │ │ └── UnresolvedProject │ │ │ │ │ │ └── Test01.asmdef │ │ │ │ └── ContextHighlighters │ │ │ │ │ └── AsmDefReferences │ │ │ │ │ ├── AsmRefDefinition01.asmdef │ │ │ │ │ ├── AsmRefReference01.asmref │ │ │ │ │ ├── GuidReference_SecondProject.asmdef │ │ │ │ │ ├── AsmRefGuidReference01.asmref │ │ │ │ │ ├── Test02.asmdef │ │ │ │ │ ├── Test03.asmdef │ │ │ │ │ └── Test04.asmdef │ │ │ ├── RedundantSerializedFieldAttributeTest │ │ │ │ └── Solutions │ │ │ │ │ └── Assemblies │ │ │ │ │ └── .gitignore │ │ │ ├── .gitignore │ │ │ ├── BlockShaders │ │ │ │ └── CodeCompletion │ │ │ │ │ └── Semantic │ │ │ │ │ ├── TestSemantic01.shaderFoundry.gold │ │ │ │ │ └── TestSemantic02.shaderFoundry.gold │ │ │ └── UnityUIElementsCompletionTest │ │ │ │ └── Solutions │ │ │ │ └── UIElementsDemo │ │ │ │ ├── Assets │ │ │ │ └── UI Toolkit │ │ │ │ │ └── UnityThemes │ │ │ │ │ └── UnityDefaultRuntimeTheme.tss │ │ │ │ └── ProjectSettings │ │ │ │ └── ProjectVersion.txt │ │ └── .gitignore │ │ └── src │ │ └── Subplatform.Snk ├── resharper-yaml │ ├── SubplatformsCollection.Root │ ├── src │ │ ├── SubplatformsCollection.Root │ │ ├── Yaml │ │ │ └── Subplatform.Snk │ │ └── Yaml.Rider │ │ │ └── Subplatform.Snk │ ├── test │ │ ├── SubplatformsCollection.Root │ │ ├── data │ │ │ └── Psi │ │ │ │ ├── Lexing │ │ │ │ ├── CommentIndicator.yaml │ │ │ │ ├── CommentLines.yaml │ │ │ │ ├── DirectiveIndicator.yaml │ │ │ │ ├── SinglePairFlowMappings.yaml │ │ │ │ ├── FlowSequence.yaml │ │ │ │ ├── InvalidVerbatimTag.yaml │ │ │ │ ├── SeparatedComment.yaml │ │ │ │ ├── SingleQuotedCharacters.yaml │ │ │ │ ├── BlockMappings.yaml │ │ │ │ ├── DocumentPrefix.yaml │ │ │ │ ├── SeparationSpaces.yaml │ │ │ │ ├── Unity │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── BinarySerialization.asset.gold │ │ │ │ │ └── BinarySerialization.asset │ │ │ │ ├── DocumentPrefixWithBom.yaml │ │ │ │ ├── EmptyNodes.yaml │ │ │ │ ├── QuotedScalarIndicators.yaml │ │ │ │ ├── SinglePairExplicitEntry.yaml │ │ │ │ ├── BlockFolding.yaml │ │ │ │ ├── BlockSequence.yaml │ │ │ │ ├── CompletelyEmptyFlowNodes.yaml │ │ │ │ ├── DocumentMarkers.yaml │ │ │ │ ├── FlowFolding.yaml │ │ │ │ ├── ReservedIndicators.yaml │ │ │ │ ├── VerbatimTag.yaml │ │ │ │ ├── FlowContent.yaml │ │ │ │ ├── NodeProperties.yaml │ │ │ │ ├── PlainLines.yaml │ │ │ │ ├── MultiLineComments.yaml │ │ │ │ ├── NodePropertyIndicators.yaml │ │ │ │ ├── TagDirective.yaml │ │ │ │ ├── CommentIndicator.yaml.gold │ │ │ │ ├── CompactBlockMappings.yaml │ │ │ │ ├── FlowMappings.yaml │ │ │ │ ├── FlowNodes.yaml │ │ │ │ ├── GlobalTagPrefix.yaml │ │ │ │ ├── NamedTagHandle.yaml │ │ │ │ ├── NodeAnchors.yaml │ │ │ │ ├── DoubleQuotedLines.yaml │ │ │ │ ├── PlainImplicitKeys.yaml │ │ │ │ ├── SingleQuotedLines.yaml │ │ │ │ ├── Stream.yaml │ │ │ │ ├── BlockScalarNodes.yaml │ │ │ │ ├── ExplicitDocuments.yaml │ │ │ │ ├── FlowCollectionIndicators.yaml │ │ │ │ ├── BlockScalarIndicators.yaml │ │ │ │ ├── DoubleQuotedImplicitKeys.yaml │ │ │ │ ├── FlowMappingAdjacentValues.yaml │ │ │ │ ├── SingleQuotedImplicitKeys.yaml │ │ │ │ ├── YamlDirective.yaml │ │ │ │ ├── DoubleQuotedLineBreaks.yaml │ │ │ │ ├── ImplicitBlockMappingEntries.yaml │ │ │ │ ├── ReservedDirective.yaml │ │ │ │ ├── SecondaryTagHandle.yaml │ │ │ │ ├── BlockCollectionNodes.yaml │ │ │ │ ├── SinglePairImplicitEntries.yaml │ │ │ │ ├── BlockStructureIndicators.yaml │ │ │ │ ├── FlowFolding.yaml.gold │ │ │ │ ├── SingleQuotedCharacters.yaml.gold │ │ │ │ ├── TagShorthands.yaml │ │ │ │ ├── BlockNodeTypes.yaml │ │ │ │ ├── DirectivesDocuments.yaml │ │ │ │ ├── FlowMappingSeparateValues.yaml │ │ │ │ ├── LineFolding.yaml │ │ │ │ ├── PrimaryTagHandle.yaml │ │ │ │ ├── AliasNodes.yaml │ │ │ │ ├── BareDocuments.yaml │ │ │ │ ├── InvalidTagShorthands.yaml │ │ │ │ ├── SingleQuotedLinesWithSingleQuotedCharacters.yaml │ │ │ │ ├── BlockSequenceEntryTypes.yaml │ │ │ │ ├── DoubleQuotedLines.yaml.gold │ │ │ │ ├── ExplicitBlockMappingEntries.yaml │ │ │ │ ├── FlowSequenceEntries.yaml │ │ │ │ ├── SingleQuotedLines.yaml.gold │ │ │ │ ├── WhitespaceCharacters.yaml │ │ │ │ ├── FlowMappingEntries.yaml │ │ │ │ ├── LocalTagPrefix.yaml │ │ │ │ ├── NonSpecificTag.yaml │ │ │ │ └── DoubleQuotedLineBreaks.yaml.gold │ │ │ │ └── Parsing │ │ │ │ ├── CommentIndicator.yaml │ │ │ │ ├── CommentLines.yaml │ │ │ │ ├── DirectiveIndicator.yaml │ │ │ │ ├── SinglePairFlowMappings.yaml │ │ │ │ ├── SingleQuotedCharacters.yaml │ │ │ │ ├── Unity │ │ │ │ ├── .gitattributes │ │ │ │ └── BinarySerialization.asset │ │ │ │ ├── BlockMappings.yaml │ │ │ │ ├── DocumentPrefix.yaml │ │ │ │ ├── FlowSequence.yaml │ │ │ │ ├── InvalidVerbatimTag.yaml │ │ │ │ ├── Reparse │ │ │ │ ├── Test08.yaml.gold │ │ │ │ ├── Delete01.yaml │ │ │ │ ├── Test01.yaml │ │ │ │ ├── Test08.yaml │ │ │ │ ├── Test02.yaml │ │ │ │ └── Delete01.yaml.gold │ │ │ │ ├── SeparatedComment.yaml │ │ │ │ ├── SeparationSpaces.yaml │ │ │ │ ├── CompletelyEmptyFlowNodes.yaml │ │ │ │ ├── DocumentPrefixWithBom.yaml │ │ │ │ ├── EmptyNodes.yaml │ │ │ │ ├── QuotedScalarIndicators.yaml │ │ │ │ ├── SinglePairExplicitEntry.yaml │ │ │ │ ├── VerbatimTag.yaml │ │ │ │ ├── BlockFolding.yaml │ │ │ │ ├── BlockSequence.yaml │ │ │ │ ├── DocumentMarkers.yaml │ │ │ │ ├── FlowContent.yaml │ │ │ │ ├── FlowFolding.yaml │ │ │ │ ├── NodeProperties.yaml │ │ │ │ ├── ReservedIndicators.yaml │ │ │ │ ├── PlainLines.yaml │ │ │ │ ├── CompactBlockMappings.yaml │ │ │ │ ├── FlowNodes.yaml │ │ │ │ ├── MultiLineComments.yaml │ │ │ │ ├── NamedTagHandle.yaml │ │ │ │ ├── NodeAnchors.yaml │ │ │ │ ├── NodePropertyIndicators.yaml │ │ │ │ ├── TagDirective.yaml │ │ │ │ ├── DoubleQuotedLines.yaml │ │ │ │ ├── FlowMappings.yaml │ │ │ │ ├── GlobalTagPrefix.yaml │ │ │ │ ├── PlainImplicitKeys.yaml │ │ │ │ ├── SingleQuotedLines.yaml │ │ │ │ ├── BlockScalarNodes.yaml │ │ │ │ ├── ExplicitDocuments.yaml │ │ │ │ ├── Stream.yaml │ │ │ │ ├── BlockScalarIndicators.yaml │ │ │ │ ├── FlowCollectionIndicators.yaml │ │ │ │ ├── DoubleQuotedImplicitKeys.yaml │ │ │ │ ├── FlowMappingAdjacentValues.yaml │ │ │ │ ├── SingleQuotedImplicitKeys.yaml │ │ │ │ ├── YamlDirective.yaml │ │ │ │ ├── SecondaryTagHandle.yaml │ │ │ │ ├── DoubleQuotedLineBreaks.yaml │ │ │ │ ├── ImplicitBlockMappingEntries.yaml │ │ │ │ ├── ReservedDirective.yaml │ │ │ │ ├── BlockCollectionNodes.yaml │ │ │ │ ├── BlockStructureIndicators.yaml │ │ │ │ ├── SinglePairImplicitEntries.yaml │ │ │ │ ├── TagShorthands.yaml │ │ │ │ ├── BlockNodeTypes.yaml │ │ │ │ ├── DirectivesDocuments.yaml │ │ │ │ ├── FlowMappingSeparateValues.yaml │ │ │ │ ├── LineFolding.yaml │ │ │ │ ├── PrimaryTagHandle.yaml │ │ │ │ ├── SingleQuotedLinesWithSingleQuotedCharacters.yaml │ │ │ │ ├── AliasNodes.yaml │ │ │ │ ├── BareDocuments.yaml │ │ │ │ ├── InvalidTagShorthands.yaml │ │ │ │ ├── BlockSequenceEntryTypes.yaml │ │ │ │ ├── Comments.yaml │ │ │ │ ├── ExplicitBlockMappingEntries.yaml │ │ │ │ ├── FlowMappingEntries.yaml │ │ │ │ ├── FlowSequenceEntries.yaml │ │ │ │ ├── LocalTagPrefix.yaml │ │ │ │ ├── WhitespaceCharacters.yaml │ │ │ │ └── NonSpecificTag.yaml │ │ └── src │ │ │ └── Subplatform.Snk │ ├── readme.md │ └── .editorconfig ├── resharper-unity-visual-studio │ └── Subplatform.Snk ├── resharper-unity-visual-studio-common │ └── Subplatform.Snk └── .idea │ └── .idea.resharper-unity │ └── .idea │ └── encodings.xml ├── fleet └── .idea │ └── .idea.resharper-unity-fleet │ └── .idea │ └── .name ├── sign.snk ├── docs ├── colours.png ├── quickdoc.png ├── compare_tag.gif ├── generate_menu.png ├── generate_dialog.png ├── invoke_completion.png ├── cg_word_completion.png ├── field_not_accessed.png ├── incorrect_signature.png ├── shader_code_folding.png ├── auto_complete_message.png ├── file_templates_rider.png ├── shader_colours_rider.png ├── shader_word_completion.png ├── file_templates_resharper.png ├── shader_colours_resharper.png ├── attach_to_editor_run_config.png ├── shader_brace_matching_todo.png ├── shader_syntax_highlighting.png ├── why_is_rider_suggesting_this.png ├── shader_context_widget_status_bar.png ├── create_serialized_field_from_usage.png └── shader_context_widget_status_bar_picker.png └── unity └── EditorPlugin └── Properties └── AssemblyInfo.cs /SdkBasedPluginEmbedding.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/.idea/.name: -------------------------------------------------------------------------------- 1 | rider-unity -------------------------------------------------------------------------------- /common/dictionaries/unity.aff: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debugger/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/main/resources/icon-robots.txt: -------------------------------------------------------------------------------- 1 | skip: * -------------------------------------------------------------------------------- /resharper/resharper-json/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-unity/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/src/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-unity/src/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/src/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/SubplatformsCollection.Root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/RiderSample/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/empty.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/empty.json.gold: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/emptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimImplicitUsageTest/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimationFindUsages/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimatorFindUsages/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_02_2017/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_02_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_03_2017/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_03_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_04_2017/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_04_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_05_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProject/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fleet/.idea/.idea.resharper-unity-fleet/.idea/.name: -------------------------------------------------------------------------------- 1 | resharper-unity-fleet -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/boolLiteral.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/emptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/literal.json: -------------------------------------------------------------------------------- 1 | 213213 -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/boolLiteral.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/emptyArray.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/emptyObject.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/literal.json: -------------------------------------------------------------------------------- 1 | 213213 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ProjectSettingsTestData/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UI_PrefabModifications/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_2017/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProjectWithShaders/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProjectWithoutPlugin/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityUnitTestingProject/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sign.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/sign.snk -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/array.json: -------------------------------------------------------------------------------- 1 | [1, 2, true, null] -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/array.json: -------------------------------------------------------------------------------- 1 | [1, 2, true, null] -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsagesOverriddenEventHandlers/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/TuanjieDebugAndUnitTesting/Project/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/Project/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/object.json: -------------------------------------------------------------------------------- 1 | { 2 | "a" : null 3 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/stringLiteral.json: -------------------------------------------------------------------------------- 1 | "sdasdasdasda\"" -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/stringLiteral.json: -------------------------------------------------------------------------------- 1 | "sdasdasdasda\"" -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/CommentIndicator.yaml: -------------------------------------------------------------------------------- 1 | # Comment only. 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_prefabs_2018/Library/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/colours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/colours.png -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/object.json: -------------------------------------------------------------------------------- 1 | { 2 | "a" : null 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/NonUnityType.cs.gold: -------------------------------------------------------------------------------- 1 | NO INPUT ITEMS -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsAutocompletionTestData/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/quickdoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/quickdoc.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/NonUnityProject.cs.gold: -------------------------------------------------------------------------------- 1 | NO INPUT ITEMS -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/CommentLines.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DirectiveIndicator.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- text 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SinglePairFlowMappings.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | foo: bar 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/CommentIndicator.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Comment only. 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/BuildPlayer.prefs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsagesOverriddenEventHandlers/ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/NewDirectory1/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/compare_tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/compare_tag.gif -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/boolLiteral.json.gold: -------------------------------------------------------------------------------- 1 | 0000: TRUE_KEYWORD 'true' 2 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/literal.json.gold: -------------------------------------------------------------------------------- 1 | 0000: NUMERIC_LITERAL '213213' 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/readme.md: -------------------------------------------------------------------------------- 1 | # YAML support for ReSharper and Rider 2 | 3 | Work in progress 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowSequence.yaml: -------------------------------------------------------------------------------- 1 | - [ one, two, ] 2 | - [three ,four] 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/InvalidVerbatimTag.yaml: -------------------------------------------------------------------------------- 1 | - ! foo 2 | - !<$:?> bar 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SeparatedComment.yaml: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | value 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedCharacters.yaml: -------------------------------------------------------------------------------- 1 | 'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /rider/.idea/fileTemplates/code/I18nized Expression.java: -------------------------------------------------------------------------------- 1 | ${RESOURCE_BUNDLE}.message("${PROPERTY_KEY}") -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Scripts/NewDirectory1/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/generate_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/generate_menu.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Hlsl/List/HlslKeywords.hlsl: -------------------------------------------------------------------------------- 1 | {caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockMappings.yaml: -------------------------------------------------------------------------------- 1 | block mapping: 2 | key: value 3 | 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DocumentPrefix.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | # lines 3 | Document 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SeparationSpaces.yaml: -------------------------------------------------------------------------------- 1 | - foo: bar 2 | - - baz 3 | - baz 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/Unity/.gitattributes: -------------------------------------------------------------------------------- 1 | BinarySerialization.asset binary 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/CommentLines.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Comment 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DirectiveIndicator.yaml: -------------------------------------------------------------------------------- 1 | {caret}%YAML 1.2 2 | --- text 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SinglePairFlowMappings.yaml: -------------------------------------------------------------------------------- 1 | {caret}[ 2 | foo: bar 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SingleQuotedCharacters.yaml: -------------------------------------------------------------------------------- 1 | {caret}'here''s to "quotes"' 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Unity/.gitattributes: -------------------------------------------------------------------------------- 1 | BinarySerialization.asset binary 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Assets/Resources/from_res__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debugger/debugger-worker/src/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using Mono.Debugging.Autofac; 2 | 3 | [assembly:DebuggerAssembly] -------------------------------------------------------------------------------- /docs/generate_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/generate_dialog.png -------------------------------------------------------------------------------- /docs/invoke_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/invoke_completion.png -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/object1.json: -------------------------------------------------------------------------------- 1 | { 2 | "object" : { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/object1.json: -------------------------------------------------------------------------------- 1 | { 2 | "object" : { 3 | 4 | } 5 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/First.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DocumentPrefixWithBom.yaml: -------------------------------------------------------------------------------- 1 | # Comment 2 | # lines 3 | Document 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/EmptyNodes.yaml: -------------------------------------------------------------------------------- 1 | { 2 | foo : !!str, 3 | !!str : bar, 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/QuotedScalarIndicators.yaml: -------------------------------------------------------------------------------- 1 | single: 'text' 2 | double: "text" 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SinglePairExplicitEntry.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | ? foo 3 | bar : baz 4 | ] 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockMappings.yaml: -------------------------------------------------------------------------------- 1 | {caret}block mapping: 2 | key: value 3 | 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DocumentPrefix.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Comment 2 | # lines 3 | Document 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowSequence.yaml: -------------------------------------------------------------------------------- 1 | {caret}- [ one, two, ] 2 | - [three ,four] 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/InvalidVerbatimTag.yaml: -------------------------------------------------------------------------------- 1 | {caret}- ! foo 2 | - !<$:?> bar 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Test08.yaml.gold: -------------------------------------------------------------------------------- 1 | PsiLanguageType:YAML: Fully reparsed 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SeparatedComment.yaml: -------------------------------------------------------------------------------- 1 | {caret}key: # Comment 2 | value 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Assets/Resources/from_res__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Assets/Editor/Resources/from_res__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/RiderSample/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/Project/Assets/Scenes/SampleScene/LightingData.asset: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/AsmdefResponse/NewDirectory1/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Scripts/Editor/NewDirectory1/zero: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/cg_word_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/cg_word_completion.png -------------------------------------------------------------------------------- /docs/field_not_accessed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/field_not_accessed.png -------------------------------------------------------------------------------- /docs/incorrect_signature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/incorrect_signature.png -------------------------------------------------------------------------------- /docs/shader_code_folding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_code_folding.png -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/emptyArray.json.gold: -------------------------------------------------------------------------------- 1 | 0000: LBRACKET '[' 2 | 0001: RBRACKET ']' 3 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/emptyObject.json.gold: -------------------------------------------------------------------------------- 1 | 0000: LBRACE '{' 2 | 0001: RBRACE '}' 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InUnityCSharpFile01.cs.gold: -------------------------------------------------------------------------------- 1 | Unity C# file 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InUnityCSharpFile02.cs.gold: -------------------------------------------------------------------------------- 1 | Unity C# file 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test54.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 5.4 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test55.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 5.5 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/Assemblies/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.pdb 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestTopLevelStatement01.shader: -------------------------------------------------------------------------------- 1 | {caret} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderLabRoot01.shader: -------------------------------------------------------------------------------- 1 | Sh{caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderLabRoot02.shader: -------------------------------------------------------------------------------- 1 | {caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/ShaderWithErrors02.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/References/Test03.hlsl: -------------------------------------------------------------------------------- 1 | #pragma kernel 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockFolding.yaml: -------------------------------------------------------------------------------- 1 | > 2 | foo 3 | 4 | bar 5 | 6 | baz 7 | 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockSequence.yaml: -------------------------------------------------------------------------------- 1 | block sequence: 2 | - one 3 | - two : three 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/CompletelyEmptyFlowNodes.yaml: -------------------------------------------------------------------------------- 1 | { 2 | ? foo :, 3 | : bar, 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DocumentMarkers.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- 3 | Document 4 | ... # Suffix 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowFolding.yaml: -------------------------------------------------------------------------------- 1 | " 2 | foo 3 | 4 | bar 5 | 6 | baz 7 | " 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/ReservedIndicators.yaml: -------------------------------------------------------------------------------- 1 | commercial-at: @text 2 | grave-accent: `text 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/VerbatimTag.yaml: -------------------------------------------------------------------------------- 1 | ! foo : 2 | ! baz 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SeparationSpaces.yaml: -------------------------------------------------------------------------------- 1 | {caret}- foo: bar 2 | - - baz 3 | - baz 4 | -------------------------------------------------------------------------------- /rider/.idea/fileTemplates/code/I18nized Concatenation.java: -------------------------------------------------------------------------------- 1 | ${RESOURCE_BUNDLE}.message("${PROPERTY_KEY}", ${PARAMETERS}) -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Assets/Editor/Resources/from_res__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/Assets/Editor/Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Editor" 3 | } 4 | -------------------------------------------------------------------------------- /debugger/Directory.Build.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/auto_complete_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/auto_complete_message.png -------------------------------------------------------------------------------- /docs/file_templates_rider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/file_templates_rider.png -------------------------------------------------------------------------------- /docs/shader_colours_rider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_colours_rider.png -------------------------------------------------------------------------------- /docs/shader_word_completion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_word_completion.png -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/object3.json: -------------------------------------------------------------------------------- 1 | { 2 | "field1" : true, 3 | "field2" : false 4 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/object3.json: -------------------------------------------------------------------------------- 1 | { 2 | "field1" : true, 3 | "field2" : false 4 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test171.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2017.1.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test172.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2017.2.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test173.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2017.3.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test174.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2017.4.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test181.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2018.1.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test182.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2018.2.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test183.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2018.3.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test184.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2018.4.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test191.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2019.1.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test192.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2019.2.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test193.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2019.3.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test194.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2019.4.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test201.cs.gold: -------------------------------------------------------------------------------- 1 | Unity current version: 2020.1.0 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Hlsl/List/TestDefinedSymbols.urtshader: -------------------------------------------------------------------------------- 1 | #if {caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Hlsl/List/TestPragmaCommands.compute: -------------------------------------------------------------------------------- 1 | #pragma {caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Hlsl/List/TestPragmaCommands.hlsl: -------------------------------------------------------------------------------- 1 | #pragma {caret} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Daemon/Hlsl/Analysis/Includes/Unused.hlsl: -------------------------------------------------------------------------------- 1 | void unusedFn() 2 | { 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Daemon/Hlsl/Analysis/Includes/Used.hlsl: -------------------------------------------------------------------------------- 1 | void usedFn() 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/InShaderLabFile01.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/InShaderLabFile02.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Lexing/UnterminatedString.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader01.01.shader: -------------------------------------------------------------------------------- 1 | Shader "Foo" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader03.01.shader: -------------------------------------------------------------------------------- 1 | Shader "Foo" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/References/Test02.compute: -------------------------------------------------------------------------------- 1 | #pragma kernel main 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter14.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "END_OF_LINE"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowContent.yaml: -------------------------------------------------------------------------------- 1 | - [ a, b ] 2 | - { a: b } 3 | - "a" 4 | - 'b' 5 | - c 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/NodeProperties.yaml: -------------------------------------------------------------------------------- 1 | !!str &a1 "foo": 2 | !!str bar 3 | &a2 baz : *a1 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/PlainLines.yaml: -------------------------------------------------------------------------------- 1 | 1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/Unity/BinarySerialization.asset.gold: -------------------------------------------------------------------------------- 1 | 0000: NON_PRINTABLE length: 4396 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/CompletelyEmptyFlowNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}{ 2 | ? foo :, 3 | : bar, 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DocumentPrefixWithBom.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Comment 2 | # lines 3 | Document 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/EmptyNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}{ 2 | foo : !!str, 3 | !!str : bar, 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/QuotedScalarIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}single: 'text' 2 | double: "text" 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SinglePairExplicitEntry.yaml: -------------------------------------------------------------------------------- 1 | {caret}[ 2 | ? foo 3 | bar : baz 4 | ] 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/VerbatimTag.yaml: -------------------------------------------------------------------------------- 1 | {caret}! foo : 2 | ! baz 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimationFindUsages/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimatorFindUsages/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- 1 | sceneSetups: [] 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_02_2017/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_02_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_03_2017/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_03_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_04_2017/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_04_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_05_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProject/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.4f1 2 | -------------------------------------------------------------------------------- /docs/file_templates_resharper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/file_templates_resharper.png -------------------------------------------------------------------------------- /docs/shader_colours_resharper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_colours_resharper.png -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/stringLiteral.json.gold: -------------------------------------------------------------------------------- 1 | 0000: DOUBLE_QUOTED_STRING '"sdasdasdasda\""' 2 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/empty.json.gold: -------------------------------------------------------------------------------- 1 | Language: PsiLanguageType:JSON_NEW 2 | IJsonNewFile 3 | 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/GuidReference.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zzz" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/SingleFile.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zzz" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderBlock02.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Resolve/TestShaderReference01.01.shader: -------------------------------------------------------------------------------- 1 | Shader "Foo" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader01.01.shader.gold: -------------------------------------------------------------------------------- 1 | Shader "zzz" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader02.01.shader.gold: -------------------------------------------------------------------------------- 1 | Shader "zzz" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader03.01.shader.gold: -------------------------------------------------------------------------------- 1 | Shader "zzz" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartBackspace01.shader.jcnf: -------------------------------------------------------------------------------- 1 | { 2 | SmartBackspace: All 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartBackspace02.shader.jcnf: -------------------------------------------------------------------------------- 1 | { 2 | SmartBackspace: All 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartBackspace03.shader.jcnf: -------------------------------------------------------------------------------- 1 | { 2 | SmartBackspace: All 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartBackspaceHlsl01.shader.jcnf: -------------------------------------------------------------------------------- 1 | { 2 | SmartBackspace: All 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter15.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "NEXT_LINE_SHIFTED"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter17.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "NEXT_LINE_SHIFTED"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/MultiLineComments.yaml: -------------------------------------------------------------------------------- 1 | key: # Comment 2 | # lines 3 | value 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/NodePropertyIndicators.yaml: -------------------------------------------------------------------------------- 1 | anchored: !local &anchor value 2 | alias: *anchor 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/TagDirective.yaml: -------------------------------------------------------------------------------- 1 | %TAG !yaml! tag:yaml.org,2002: 2 | --- 3 | !yaml!str "foo" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockFolding.yaml: -------------------------------------------------------------------------------- 1 | {caret}> 2 | foo 3 | 4 | bar 5 | 6 | baz 7 | 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockSequence.yaml: -------------------------------------------------------------------------------- 1 | {caret}block sequence: 2 | - one 3 | - two : three 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DocumentMarkers.yaml: -------------------------------------------------------------------------------- 1 | {caret}%YAML 1.2 2 | --- 3 | Document 4 | ... # Suffix 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowContent.yaml: -------------------------------------------------------------------------------- 1 | {caret}- [ a, b ] 2 | - { a: b } 3 | - "a" 4 | - 'b' 5 | - c 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowFolding.yaml: -------------------------------------------------------------------------------- 1 | {caret}" 2 | foo 3 | 4 | bar 5 | 6 | baz 7 | " 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/NodeProperties.yaml: -------------------------------------------------------------------------------- 1 | {caret}!!str &a1 "foo": 2 | !!str bar 3 | &a2 baz : *a1 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/ReservedIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}commercial-at: @text 2 | grave-accent: `text 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ProjectSettingsTestData/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityUnitTestingProject/Assets/Editor/Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Editor" 3 | } 4 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/Project/Assets/Editor/Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Editor" 3 | } 4 | -------------------------------------------------------------------------------- /docs/attach_to_editor_run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/attach_to_editor_run_config.png -------------------------------------------------------------------------------- /docs/shader_brace_matching_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_brace_matching_todo.png -------------------------------------------------------------------------------- /docs/shader_syntax_highlighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_syntax_highlighting.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/Ref1.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ref1" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/AsmRefReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "FirstProject" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/CrossFileRename.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zzz" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/CreateFromUsage/SerializedField04.cs.gold: -------------------------------------------------------------------------------- 1 | NOT_AVAILABLE 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/RedundantSerializedFieldAttributeTest/Solutions/Assemblies/.gitignore: -------------------------------------------------------------------------------- 1 | *.dll 2 | *.pdb 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestTopLevelStatement02.shader: -------------------------------------------------------------------------------- 1 | Shader "" {}{caret} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestTopLevelStatement03.shader: -------------------------------------------------------------------------------- 1 | Shader "" {caret}{} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Caches/ShaderVariants/ComputeShader.compute.gold: -------------------------------------------------------------------------------- 1 | POINT 2 | POINT_COOKIE 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Caches/ShaderVariants/UrtShader.urtshader.gold: -------------------------------------------------------------------------------- 1 | POINT 2 | POINT_COOKIE 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/ShaderWithErrors01.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader whatever "test" { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShader02.01.shader: -------------------------------------------------------------------------------- 1 | Shader "{caret}Foo" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter16.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "NEXT_LINE_SHIFTED_2"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter18.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "NEXT_LINE_SHIFTED_2"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartEnter19.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "NEXT_LINE_SHIFTED_2"} 2 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/CommentIndicator.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: COMMENT '# Comment only.' 2 | 0015: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/CompactBlockMappings.yaml: -------------------------------------------------------------------------------- 1 | - sun: yellow 2 | - ? earth: blue 3 | : moon: white 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowMappings.yaml: -------------------------------------------------------------------------------- 1 | - { one : two , three: four , } 2 | - {five: six,seven : eight} 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowNodes.yaml: -------------------------------------------------------------------------------- 1 | - !!str "a" 2 | - 'b' 3 | - &anchor "c" 4 | - *anchor 5 | - !!str 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/GlobalTagPrefix.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example.com,2000:app/ 2 | --- 3 | - !e!foo "bar" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/NamedTagHandle.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example.com,2000:app/ 2 | --- 3 | !e!foo "bar" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/NodeAnchors.yaml: -------------------------------------------------------------------------------- 1 | First occurrence: &anchor Value 2 | Second occurrence: *anchor 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/PlainLines.yaml: -------------------------------------------------------------------------------- 1 | {caret}1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Delete01.yaml: -------------------------------------------------------------------------------- 1 | # ${ACTION0:-8} 2 | key1: 1{caret} 3 | key2: 2 4 | key3: 3 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Test01.yaml: -------------------------------------------------------------------------------- 1 | # ${ACTION0:+123} 2 | key1: 0 3 | key2: 0{caret} 4 | key3: 0 5 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_2017/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.3f1 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProjectWithShaders/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.4f1 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProjectWithoutPlugin/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.3f1 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityUnitTestingProject/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.4.3f1 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/TuanjieDebugAndUnitTesting/Project/Assets/Editor/Editor.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Editor" 3 | } 4 | -------------------------------------------------------------------------------- /docs/why_is_rider_suggesting_this.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/why_is_rider_suggesting_this.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmRefReference/TestList01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "{caret}" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/PreferGuidReference/Ref1.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ref1" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/GuidReference.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "First{caret}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/SingleFile.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Single{caret}File" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderBlock02.shader: -------------------------------------------------------------------------------- 1 | Shader "abc" 2 | {{caret} 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackError.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | Fallback 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackNone.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | Fallback Off 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test03.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma vertex zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test04.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma vertex zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test09.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma hull zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test10.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma hull zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test11.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma domain zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test12.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma domain zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test13.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma surface zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test14.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma surface zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DoubleQuotedLines.yaml: -------------------------------------------------------------------------------- 1 | " 1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty " 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/PlainImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | implicit block key : [ 2 | implicit flow key : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedLines.yaml: -------------------------------------------------------------------------------- 1 | ' 1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty ' 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/Stream.yaml: -------------------------------------------------------------------------------- 1 | Document 2 | --- 3 | # Empty 4 | ... 5 | %YAML 1.2 6 | --- 7 | matches %: 20 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/CompactBlockMappings.yaml: -------------------------------------------------------------------------------- 1 | {caret}- sun: yellow 2 | - ? earth: blue 3 | : moon: white 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}- !!str "a" 2 | - 'b' 3 | - &anchor "c" 4 | - *anchor 5 | - !!str 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/MultiLineComments.yaml: -------------------------------------------------------------------------------- 1 | {caret}key: # Comment 2 | # lines 3 | value 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/NamedTagHandle.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !e! tag:example.com,2000:app/ 2 | --- 3 | !e!foo "bar" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/NodeAnchors.yaml: -------------------------------------------------------------------------------- 1 | {caret}First occurrence: &anchor Value 2 | Second occurrence: *anchor 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/NodePropertyIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}anchored: !local &anchor value 2 | alias: *anchor 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/TagDirective.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !yaml! tag:yaml.org,2002: 2 | --- 3 | !yaml!str "foo" 4 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/LoadFromDiskPackages/from_disk/Editor/Resources/from_disk__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debugger/debugger-worker/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/debugger/debugger-worker/Subplatform.Snk -------------------------------------------------------------------------------- /docs/shader_context_widget_status_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_context_widget_status_bar.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/.gitignore: -------------------------------------------------------------------------------- 1 | /JetTestPackages/ 2 | /%JET_TEST_PACKAGES_DIR%/ 3 | /JET_TEST_PACKAGES_DIR/ 4 | NuGetLocks/ 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmDefReferences/Ref01_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ref01" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmRefReference/Ref01_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ref01" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/PreferGuidReference/AsmRef.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Ref1" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/InShaderLabFile01.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "abc" 2 | { 3 | 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Caches/ShaderVariants/AllDirectives.shader.gold: -------------------------------------------------------------------------------- 1 | Alpha 2 | Beta 3 | Delta 4 | Gamma 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/CustomEditorError.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | CustomEditor 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackNamed.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | Fallback "foo" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/PropertiesEmpty.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | Properties { } 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/ShaderWithErrors03.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader whatever whatever whatever { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test01.compute.gold: -------------------------------------------------------------------------------- 1 | #pragma kernel zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test02.compute.gold: -------------------------------------------------------------------------------- 1 | #pragma kernel zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test03.hlsl: -------------------------------------------------------------------------------- 1 | #pragma vertex main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test04.hlsl: -------------------------------------------------------------------------------- 1 | #pragma vertex ma{caret}in 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test05.hlsl: -------------------------------------------------------------------------------- 1 | #pragma fragment main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test05.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma fragment zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test06.hlsl: -------------------------------------------------------------------------------- 1 | #pragma fragment ma{caret}in 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test06.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma fragment zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test07.hlsl: -------------------------------------------------------------------------------- 1 | #pragma geometry main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test07.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma geometry zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test08.hlsl: -------------------------------------------------------------------------------- 1 | #pragma geometry mai{caret}n 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test08.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma geometry zzz 2 | 3 | int zzz() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test09.hlsl: -------------------------------------------------------------------------------- 1 | #pragma hull main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test10.hlsl: -------------------------------------------------------------------------------- 1 | #pragma hull ma{caret}in 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test11.hlsl: -------------------------------------------------------------------------------- 1 | #pragma domain main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test12.hlsl: -------------------------------------------------------------------------------- 1 | #pragma domain ma{caret}in 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test13.hlsl: -------------------------------------------------------------------------------- 1 | #pragma surface main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test14.hlsl: -------------------------------------------------------------------------------- 1 | #pragma surface mai{caret}n 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockScalarNodes.yaml: -------------------------------------------------------------------------------- 1 | literal: |2 2 | value 3 | folded: 4 | !foo 5 | >1 6 | value 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/ExplicitDocuments.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | { matches 3 | % : 20 } 4 | ... 5 | --- 6 | # Empty 7 | ... 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowCollectionIndicators.yaml: -------------------------------------------------------------------------------- 1 | sequence: [ one, two, ] 2 | mapping: { sky: blue, sea: green } 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DoubleQuotedLines.yaml: -------------------------------------------------------------------------------- 1 | {caret}" 1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty " 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowMappings.yaml: -------------------------------------------------------------------------------- 1 | {caret}- { one : two , three: four , } 2 | - {five: six,seven : eight} 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/GlobalTagPrefix.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !e! tag:example.com,2000:app/ 2 | --- 3 | - !e!foo "bar" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/PlainImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | {caret}implicit block key : [ 2 | implicit flow key : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Test08.yaml: -------------------------------------------------------------------------------- 1 | # ${ACTION0:+key0: 123} 2 | {caret} 3 | key1: 0 4 | key2: 0 5 | key3: 0 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SingleQuotedLines.yaml: -------------------------------------------------------------------------------- 1 | {caret}' 1st non-empty 2 | 3 | 2nd non-empty 4 | 3rd non-empty ' 5 | -------------------------------------------------------------------------------- /rider/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/rider/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/LoadFromDiskPackages/from_disk/Editor/Resources/from_disk__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/LoadFromDiskPackages/from_disk/Runtime/Resources/from_disk__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Packages/from_pack_folder/Editor/Resources/from_pack_folder__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_prefabs_2018/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.3.0b12 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/LoadFromDiskPackages/from_disk/Runtime/Resources/from_disk__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Packages/from_pack_folder/Editor/Resources/from_pack_folder__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Packages/from_pack_folder/Runtime/Resources/from_pack_folder__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/create_serialized_field_from_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/create_serialized_field_from_usage.png -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity/CSharp/Feature/Services/CallGraph/ExpensiveCodeAnalysis/AddExpensiveComment/AddExpensiveCommentContextAction.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/.gitignore: -------------------------------------------------------------------------------- 1 | # Used to contain files that can't be committed. See tests for more details 2 | external/ 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/CrossProjectReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/UnresolvedReference02_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/CrossFileRename.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CrossFi{caret}leRename" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/BlockShaders/CodeCompletion/Semantic/TestSemantic01.shaderFoundry.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Count: 0 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/BlockShaders/CodeCompletion/Semantic/TestSemantic02.shaderFoundry.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Count: 0 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/NonUnityType.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | class A 3 | { 4 | {caret} 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent01.shader: -------------------------------------------------------------------------------- 1 | Shader "" { 2 | {caret} 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderBlock01.shader: -------------------------------------------------------------------------------- 1 | Shader "abc" 2 | { 3 | {caret} 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Resolve/TestShaderReference01.shader: -------------------------------------------------------------------------------- 1 | Shader "Bar" 2 | { 3 | Fallback "Foo" 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test01.compute: -------------------------------------------------------------------------------- 1 | #pragma kernel main 2 | 3 | int m{caret}ain() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/Test02.compute: -------------------------------------------------------------------------------- 1 | #pragma kernel ma{caret}in 2 | 3 | int main() 4 | {} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShaderReferenceRenameInCSharp01.01.shader: -------------------------------------------------------------------------------- 1 | Shader "Foo" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockScalarIndicators.yaml: -------------------------------------------------------------------------------- 1 | literal: | 2 | some 3 | text 4 | folded: > 5 | some 6 | text 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DoubleQuotedImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | "implicit block key" : [ 2 | "implicit flow key" : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowMappingAdjacentValues.yaml: -------------------------------------------------------------------------------- 1 | { 2 | "adjacent":value, 3 | "readable": value, 4 | "empty": 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | 'implicit block key' : [ 2 | 'implicit flow key' : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/YamlDirective.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.3 # Attempt parsing 2 | # with a warning 3 | --- 4 | "foo" 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockScalarNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}literal: |2 2 | value 3 | folded: 4 | !foo 5 | >1 6 | value 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/ExplicitDocuments.yaml: -------------------------------------------------------------------------------- 1 | {caret}--- 2 | { matches 3 | s% : 20 } 4 | ... 5 | --- 6 | # Empty 7 | ... 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Stream.yaml: -------------------------------------------------------------------------------- 1 | {caret}Document 2 | --- 3 | # Empty 4 | ... 5 | %YAML 1.2 6 | --- 7 | matches %: 20 8 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Packages/from_pack_folder/Runtime/Resources/from_pack_folder__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/AsmRefDefinition01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/AsmRef_FirstProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/MismatchedFilename/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "My{caret}Assembly" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/NonUnityProject.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | class A 3 | { 4 | {caret} 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InSerializableClass.cs.gold: -------------------------------------------------------------------------------- 1 | Unity C# file 2 | Unity serializable type members 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestTopLevelStatement02.shader.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Count: 0 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestTopLevelStatement03.shader.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Count: 0 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/TestBlockCommandCompletion02.shader.jcnf: -------------------------------------------------------------------------------- 1 | {BraceStyle: "END_OF_LINE_NO_SPACE"} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Lexing/UnterminatedComment.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" 2 | { 3 | /* Unterminated comment 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/CustomEditor.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | CustomEditor "MyCustomEditor" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/TestShaderReferenceRenameInCSharp01.01.shader.gold: -------------------------------------------------------------------------------- 1 | Shader "zzz" 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | 7 | [*.xml] 8 | indent_size = 2 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockScalarIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}literal: | 2 | some 3 | text 4 | folded: > 5 | some 6 | text 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowCollectionIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}sequence: [ one, two, ] 2 | mapping: { sky: blue, sea: green } 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Test02.yaml: -------------------------------------------------------------------------------- 1 | # ${ACTION0:+123} 2 | %YAML 1.1 3 | --- 4 | key1: 0 5 | key2: 0{caret} 6 | key3: 0 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/.gitignore: -------------------------------------------------------------------------------- 1 | **/.idea/ 2 | 3 | **/Assets/Plugins/ 4 | **/Assets/Plugins.meta 5 | **/Temp/ 6 | **/Obj/ 7 | **/Logs/ 8 | -------------------------------------------------------------------------------- /docs/shader_context_widget_status_bar_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/docs/shader_context_widget_status_bar_picker.png -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/InlayHints/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/MismatchedFilename/MyAssembly.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "My{caret}Assembly" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/AsmRefGuidReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e1593fde9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionInsideInterface.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "Awak" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionInsideStruct.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "Awak" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/RedundantAssemblyAttribute.cs.gold: -------------------------------------------------------------------------------- 1 | using UnityEngine;{caret} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent06.shader.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Count: 0 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderLabRoot01.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | Unity ShaderLab Root 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderLabRoot02.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | Unity ShaderLab Root 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/ShaderWithErrors04.shader: -------------------------------------------------------------------------------- 1 | Shader "test" { 2 | Properties { } 3 | {caret}aa 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/IndirectLinkBetweenDefinitionAndDeclarationViaCommonHeader/common.hlsl: -------------------------------------------------------------------------------- 1 | void bar(); -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DoubleQuotedLineBreaks.yaml: -------------------------------------------------------------------------------- 1 | "folded 2 | to a space, 3 | 4 | to a line feed, or \ 5 | \ non-content" 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/ImplicitBlockMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | plain key: in-line value 2 | : # Both empty 3 | "quoted key": 4 | - entry 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/ReservedDirective.yaml: -------------------------------------------------------------------------------- 1 | %FOO bar baz # Should be ignored 2 | # with a warning. 3 | --- "foo" 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SecondaryTagHandle.yaml: -------------------------------------------------------------------------------- 1 | %TAG !! tag:example.com,2000:app/ 2 | --- 3 | !!int 1 - 3 # Interval, not integer 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DoubleQuotedImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | {caret}"implicit block key" : [ 2 | "implicit flow key" : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowMappingAdjacentValues.yaml: -------------------------------------------------------------------------------- 1 | {caret}{ 2 | "adjacent":value, 3 | "readable": value, 4 | "empty": 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SingleQuotedImplicitKeys.yaml: -------------------------------------------------------------------------------- 1 | {caret}'implicit block key' : [ 2 | 'implicit flow key' : value, 3 | ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/YamlDirective.yaml: -------------------------------------------------------------------------------- 1 | {caret}%YAML 1.3 # Attempt parsing 2 | # with a warning 3 | --- 4 | "foo" 5 | -------------------------------------------------------------------------------- /rider/src/test/testData/integrationTests/ConnectionTest/checkExternalEditorWithExecutingMethod/gold/checkExternalEditorWithExecutingMethod.gold: -------------------------------------------------------------------------------- 1 | riderTestPath -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/LoadFromDiskPackages/from_disk/Runtime/Resources/Folder/noescapefromrider.txt: -------------------------------------------------------------------------------- 1 | run Forest 2 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/AsmdefResponse/AsmdefResponse.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AsmdefResponse" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-json/src/Json/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-json/src/Json/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-json/test/src/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-json/test/src/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity/src/Unity/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/AsmRefReference01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "First{caret}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/AsmRefNamedReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "First{on}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/Ref2.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Ref2", 3 | "references": [ "Ref1" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/MismatchedFilename/Availability/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "My{caret}Assembly" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Breadcrumbs/TestHLSLFile.hlsl: -------------------------------------------------------------------------------- 1 | float3 hsv2rgb(float3 c) 2 | { 3 | return c;{caret} 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Intentions/QuickFixes/ShaderLabRedundantPreprocessorChar/Test01.shader: -------------------------------------------------------------------------------- 1 | #line 23{caret}SShader "Foo" { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInShaderBlock01.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | Unity ShaderLab Shader Block 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInTexturePassBlock01.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | Unity ShaderLab Pass Block 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/IndirectLinkBetweenDefinitionAndDeclarationViaCommonHeader/common.hlsl.gold: -------------------------------------------------------------------------------- 1 | void zzz(); -------------------------------------------------------------------------------- /resharper/resharper-unity/test/src/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity/test/src/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-yaml/src/Yaml/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-yaml/src/Yaml/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockCollectionNodes.yaml: -------------------------------------------------------------------------------- 1 | sequence: !!seq 2 | - entry 3 | - !!seq 4 | - nested 5 | mapping: !!map 6 | foo: bar 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SinglePairImplicitEntries.yaml: -------------------------------------------------------------------------------- 1 | - [ YAML : separate ] 2 | - [ : empty key entry ] 3 | - [ {JSON: like}:adjacent ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SecondaryTagHandle.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !! tag:example.com,2000:app/ 2 | --- 3 | !!int 1 - 3 # Interval, not integer 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/src/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-yaml/test/src/Subplatform.Snk -------------------------------------------------------------------------------- /rider/src/test/testData/integrationTests/ConnectionTest/checkExternalEditorWithUnityModelRefresh/gold/checkExternalEditorWithUnityModelRefresh.gold: -------------------------------------------------------------------------------- 1 | riderTestPath -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/PackageCache/com.jetbrains.from_git@f9e423ad5f/Editor/Resources/from_git__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Library/PackageCache/com.jetbrains.from_git@f9e423ad5f/Editor/Resources/from_git__EDITOR.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/Library/PackageCache/com.jetbrains.from_git@f9e423ad5f/Runtime/Resources/from_git__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/AsmdefResponse/SS/AsmdefResponse2.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "AsmdefResponse2" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/object6.json: -------------------------------------------------------------------------------- 1 | { 2 | "field1" : true, 3 | "field2" : false, 4 | "field 3" : [5, 4, 3, 2, "1", null] 5 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/object6.json: -------------------------------------------------------------------------------- 1 | { 2 | "field1" : true, 3 | "field2" : false, 4 | "field 3" : [5, 4, 3, 2, "1", null] 5 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/GuidReference/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/InlayHints/GuidReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e1593fde9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/TestAsmRef01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Second{caret}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/UnresolvedReference01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thisAsm", 3 | "references": [ "unresolvedAsm" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInPropertiesBlock01.shader.gold: -------------------------------------------------------------------------------- 1 | ShaderLab (Unity) 2 | Unity ShaderLab Properties Block 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Lexing/UnterminatedComment2.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" 2 | { 3 | /* Unterminated /* nested comment */ 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackLodValueErrorWithOff.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "FallbackLodValue" 2 | { 3 | Fallback Off, 1 4 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockStructureIndicators.yaml: -------------------------------------------------------------------------------- 1 | sequence: 2 | - one 3 | - two 4 | mapping: 5 | ? sky 6 | : blue 7 | sea : green 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowFolding.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: C_DOUBLE_QUOTED_MULTILINE '"\n foo \n \n \t bar\n\n baz\n"' 2 | 0027: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedCharacters.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: C_SINGLE_QUOTED_SINGLE_LINE ''here''s to "quotes"'' 2 | 0021: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/TagShorthands.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example.com,2000:app/ 2 | --- 3 | - !local foo 4 | - !!str bar 5 | - !e!tag%21 baz 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DoubleQuotedLineBreaks.yaml: -------------------------------------------------------------------------------- 1 | {caret}"folded 2 | to a space, 3 | 4 | to a line feed, or \ 5 | \ non-content" 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/ImplicitBlockMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | {caret}plain key: in-line value 2 | : # Both empty 3 | "quoted key": 4 | - entry 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/ReservedDirective.yaml: -------------------------------------------------------------------------------- 1 | {caret}%FOO bar baz # Should be ignored 2 | # with a warning. 3 | --- "foo" 4 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/PackageCache/com.jetbrains.from_git@f9e423ad5f/Runtime/Resources/from_git__RUNTIME.bytes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsages_event_handlers_2018/Assets.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 72f489fd662447eeba917c03f6d8a227 3 | timeCreated: 1574677412 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UI_PrefabModifications/Assets/erf.cs: -------------------------------------------------------------------------------- 1 | namespace DefaultNamespace 2 | { 3 | public class erf 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UI_PrefabModifications/Assets/erf.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4691ea8dc4bb42b980cf70128418c1cc 3 | timeCreated: 1666174985 -------------------------------------------------------------------------------- /resharper/resharper-json/src/Json.Rider/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-json/src/Json.Rider/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity-visual-studio/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity-visual-studio/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmRefReference/TestAction01.asmref: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Ref01} 2 | { 3 | "reference": "{caret}" 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Re{on}f1" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/Test03.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test03", 3 | "references": [ "Re{on}f1" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/CrossProjectReference.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject", 3 | "references": [ "SecondProject" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InMonoBehaviour.cs.gold: -------------------------------------------------------------------------------- 1 | Unity C# file 2 | Unity type members 3 | Unity serializable type members 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InScriptableObject.cs.gold: -------------------------------------------------------------------------------- 1 | Unity C# file 2 | Unity type members 3 | Unity serializable type members 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InUnityCSharpFile02.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | {caret} 4 | 5 | public class MyData 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Intentions/QuickFixes/ShaderLabRedundantPreprocessorChar/Test01.shader.gold: -------------------------------------------------------------------------------- 1 | #line 23 2 | {caret}SShader "Foo" { 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/src/Yaml.Rider/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-yaml/src/Yaml.Rider/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockNodeTypes.yaml: -------------------------------------------------------------------------------- 1 | - 2 | "flow in block" 3 | - > 4 | Block scalar 5 | - !!map # Block collection 6 | foo : bar 7 | 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DirectivesDocuments.yaml: -------------------------------------------------------------------------------- 1 | %YAML 1.2 2 | --- | 3 | %!PS-Adobe-2.0 # !!str 4 | ... 5 | %YAML1.2 6 | --- 7 | # Empty 8 | ... 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockCollectionNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}sequence: !!seq 2 | - entry 3 | - !!seq 4 | - nested 5 | mapping: !!map 6 | foo: bar 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockStructureIndicators.yaml: -------------------------------------------------------------------------------- 1 | {caret}sequence: 2 | - one 3 | - two 4 | mapping: 5 | ? sky 6 | : blue 7 | sea : green 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SinglePairImplicitEntries.yaml: -------------------------------------------------------------------------------- 1 | {caret}- [ YAML : separate ] 2 | - [ : empty key entry ] 3 | - [ {JSON: like}:adjacent ] 4 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/TagShorthands.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !e! tag:example.com,2000:app/ 2 | --- 3 | - !local foo 4 | - !!str bar 5 | - !e!tag%21 baz 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Cube2.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: addd4c29467941b18ad6c6f34c9ef1ec 3 | timeCreated: 1665649270 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Cube3.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b86c748a5f114105a594630a91db6b69 3 | timeCreated: 1665650136 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Cube4.prefab.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c47f629d97449b58e68094c8bbff273 3 | timeCreated: 1665652892 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/RiderSample/Assets/TestScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9b6fa67bd94d4c6990f86e518e97342b 3 | timeCreated: 1584016723 -------------------------------------------------------------------------------- /unity/EditorPlugin/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Runtime.CompilerServices; 2 | 3 | [assembly: InternalsVisibleTo("JetBrains.Rider.Unity.Editor.Plugin.Tests")] 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity.Fleet/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity/src/Unity.Fleet/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity.Rider/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity/src/Unity.Rider/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefAvailability02.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:brok{off}en" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefAvailability03.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Unres{off}olved" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefAvailability04.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Second{off}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/Test02.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test02", 3 | "references": [ "Re{on}f1", "Ref1" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/UnresolvedReference02.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject", 3 | "references": [ "UnresolvedReference" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/CrossFileRename_SecondProject.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Foo", 3 | "references": [ "zzz" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionFollowingSerializeFieldAttribute04.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "On" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Resolve/UnityObjectTypeInStringLiteral/CodeCompletion/AddComponent03.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "Gri" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Resolve/UnityObjectTypeInStringLiteral/CodeCompletion/AddComponent08.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "My" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Resolve/UnityObjectTypeInStringLiteral/CodeCompletion/GetComponent03.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "Gri" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Resolve/UnityObjectTypeInStringLiteral/CodeCompletion/GetComponent08.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "My" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Intentions/QuickFixes/ShaderLabRedundantPreprocessorChar/Availability/Test01.shader: -------------------------------------------------------------------------------- 1 | #line 23{caret}SShader "Foo" { 2 | } 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackLodValueProper.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "FallbackLodValue" 2 | { 3 | Fallback "fallbackShader", 1 4 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/References/Test03.hlsl.gold: -------------------------------------------------------------------------------- 1 | #pragma kernel 2 | 3 | int main() 4 | {} 5 | ------------------------------------------------ 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowMappingSeparateValues.yaml: -------------------------------------------------------------------------------- 1 | { 2 | unquoted : "separate", 3 | http://foo.com, 4 | omitted value:, 5 | : omitted key, 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/LineFolding.yaml: -------------------------------------------------------------------------------- 1 | # Folding indicator followed by chomping indicator 2 | >- 3 | trimmed 4 | 5 | 6 | 7 | as 8 | space 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/PrimaryTagHandle.yaml: -------------------------------------------------------------------------------- 1 | # Private 2 | !foo "bar" 3 | ... 4 | # Global 5 | %TAG ! tag:example.com,2000:app/ 6 | --- 7 | !foo "bar" 8 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/LibraryFormatVersion.txt: -------------------------------------------------------------------------------- 1 | unityRebuildLibraryVersion: 11 2 | unityForwardCompatibleVersion: 40 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/BroadcastScript1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9dce233d66e647f2bf0cc349064e0a41 3 | timeCreated: 1665650593 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/MarkupTestData/Assets/Scripts/Mechanics/Test.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f3a93f389cf944f9a015653c12a65392 3 | timeCreated: 1663073449 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/MarkupTestData/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.36f1 2 | m_EditorVersionWithRevision: 2020.3.36f1 (71f96b79b9f0) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Script2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 242860ed315545178b6e3336d7b5f12c 3 | timeCreated: 1588276291 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Script4.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 842f9e56112043bfa749480de2b1bdda 3 | timeCreated: 1588283196 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Script5.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 22a70e717116407c83fa1dbe0dd1a8cf 3 | timeCreated: 1588351265 -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Lexing/object2.json: -------------------------------------------------------------------------------- 1 | { 2 | // comment1 3 | /* 4 | 5 | 6 | comment2 7 | */ 8 | "field1" : [1, 2, 3, 4] 9 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/object2.json: -------------------------------------------------------------------------------- 1 | { 2 | // comment1 3 | /* 4 | 5 | 6 | comment2 7 | */ 8 | "field1" : [1, 2, 3, 4] 9 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity.Shaders/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity/src/Unity.Shaders/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmDefReferences/TestList01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ 4 | "{caret}" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmRefReference/TestAction01.asmref.gold: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Ref01} 2 | { 3 | "reference": "Ref01{caret}" 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/GuidReference/GuidReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e1593fde9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Resolve/UnresolvedProject/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "thisAsm", 3 | "references": [ "unresolvedAsm" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefExecute01.asmref.gold: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "SecondProje{caret}ct" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/Availability/TestAsmRef01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "Second{caret}Project" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/MonoBehaviour01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test171.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test172.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test173.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test174.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test181.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test182.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test183.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test184.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test191.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test192.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test193.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test194.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test201.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test54.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test55.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/Test56.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/GenericClassesAssembly01/GenericClassesAssembly01/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace GenericClassesAssembly01 2 | { 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Breadcrumbs/TestHLSLFile.hlsl.gold: -------------------------------------------------------------------------------- 1 | [Composite(PsiSymbolTypicalSizePlaceholder, Method)] hsv2rgb -- hsv2rgb\nClick to navigate 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestCategoryCommandContent01.shader: -------------------------------------------------------------------------------- 1 | Shader "" { 2 | Category { 3 | {caret} 4 | } 5 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/TestKeywordReplacement.shader: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Shader} 2 | // ${COMPLETION_TYPE:Replace} 3 | Sha{caret} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Caches/ShaderProgram/TestMultipleSourceFilesWithSamePath.shader.gold: -------------------------------------------------------------------------------- 1 | TestMultipleSourceFilesWithSamePath.shader(57 - 259) 2 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackLodValueErrorNoLiteral.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "FallbackLodValue" 2 | { 3 | Fallback "fallbackShader", 4 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockNodeTypes.yaml: -------------------------------------------------------------------------------- 1 | {caret}- 2 | "flow in block" 3 | - > 4 | Block scalar 5 | - !!map # Block collection 6 | foo : bar 7 | 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/DirectivesDocuments.yaml: -------------------------------------------------------------------------------- 1 | {caret}%YAML 1.2 2 | --- | 3 | %!PS-Adobe-2.0 # !!str 4 | ... 5 | %YAML1.2 6 | --- 7 | # Empty 8 | ... 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowMappingSeparateValues.yaml: -------------------------------------------------------------------------------- 1 | {caret}{ 2 | unquoted : "separate", 3 | http://foo.com, 4 | omitted value:, 5 | : omitted key, 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/UnityClassLibTest/lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/rider/src/test/testData/UnityClassLibTest/lib/UnityEngine.dll -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimImplicitUsageTest/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.2.0b16 2 | m_EditorVersionWithRevision: 2022.2.0b16 (3c3b3e6cd1d7) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/NewBehaviourScript1.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: bd260730442e482a9a51d79f276362b5 3 | timeCreated: 1665652483 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/NewBehaviourScript2.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: cb0944b9fc854d309a3fadea577de4da 3 | timeCreated: 1665649312 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/NewBehaviourScript3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 80d6d86921254b78a10ba089f45f0fb1 3 | timeCreated: 1665650155 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/NewBehaviourScript4.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 4c95537f02074543afe6bf273c3d8eac 3 | timeCreated: 1665652905 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.36f1 2 | m_EditorVersionWithRevision: 2020.3.36f1 (71f96b79b9f0) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/MarkupTestData/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ide.rider": "3.0.15" 4 | }, 5 | "testables": [] 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsAutocompletionTestData/Assets/DotsClasses.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fc41698b84980864c9c9930941530082 3 | timeCreated: 1684507516 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/Assets/ResetTransformSystem.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 76b46d511cf1347e1a9ef40057654c15 3 | timeCreated: 1660328313 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityPlayerProjects/SimpleUnityGame/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ide.rider": "{{VERSION}}" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Scripts.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a10641eac1364a1e8581fe7bdc526f78 3 | timeCreated: 1576697279 -------------------------------------------------------------------------------- /resharper/resharper-unity-visual-studio-common/Subplatform.Snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-unity-visual-studio-common/Subplatform.Snk -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/ReferencingSelf/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ 4 | "Test01" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/GuidReference_SecondProject.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/Navigation/AsmRefGuidReference.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e{on}1593fde9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/Availability/GuidReference_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "SecondProject" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ReferencingSelf/Test01.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Unresolved"{caret} ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Psi/Resolve/GuidReference.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject", 3 | "references": [ "guid:7d9f6c8edad14e1593fde9cc75764047" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Refactorings/Rename/CrossFileRename_SecondProject.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Foo", 3 | "references": [ "CrossFileRename" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/MonoBehaviour02.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | OnAnima{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Daemon/IdentifierTooltip/SerialisedField.gold: -------------------------------------------------------------------------------- 1 | (serialised field) int A.MySerialisedField 2 | This field is initialized from Inspector 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements04.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Camera 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements08.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEditor; 3 | 4 | class A : Editor 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements11.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Joint 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InMonoBehaviour.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InSerializableClass.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | [Serializable] 4 | public class MyData 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestBlend01.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader { 4 | Blend {caret} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/Dependency01.shader: -------------------------------------------------------------------------------- 1 | {caret} Shader "test" { 2 | Dependency "AddPassShader" = "MyShaders/Terrain/Editor/AddPass" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/FallbackLodValueExpectedLiteral.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "FallbackLodValue" 2 | { 3 | Fallback "fallbackShader", ID 4 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/ShadersWithSameDefinitions/test2.hlsl: -------------------------------------------------------------------------------- 1 | void bar() 2 | { 3 | } 4 | 5 | void foo() 6 | { 7 | bar(); 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/SelectEmbracingConstruct/Test01.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" 2 | { 3 | SubShader 4 | { 5 | Name "PAS{caret}S" 6 | } 7 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/SelectEmbracingConstruct/Test02.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" 2 | { 3 | SubShader 4 | { 5 | Name "PASS" 6 | {caret} } 7 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/AliasNodes.yaml: -------------------------------------------------------------------------------- 1 | First occurrence: &anchor Foo 2 | Second occurrence: *anchor 3 | Override anchor: &anchor Bar 4 | Reuse anchor: *anchor 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BareDocuments.yaml: -------------------------------------------------------------------------------- 1 | Bare 2 | document 3 | ... 4 | # No document 5 | ... 6 | | 7 | %!PS-Adobe-2.0 # Not the first line - should be string 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/InvalidTagShorthands.yaml: -------------------------------------------------------------------------------- 1 | %TAG !e! tag:example,2000:app/ 2 | --- 3 | - !e! foo 4 | - !h!bar baz # Valid lexically, but doesn't resolve 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedLinesWithSingleQuotedCharacters.yaml: -------------------------------------------------------------------------------- 1 | ' 1st non-empty 2 | 3 | 2nd non-empty 4 | here''s to "quotes" 5 | 3rd non-empty ' 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/LineFolding.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Folding indicator followed by chomping indicator 2 | >- 3 | trimmed 4 | 5 | 6 | 7 | as 8 | space 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/PrimaryTagHandle.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Private 2 | !foo "bar" 3 | ... 4 | # Global 5 | %TAG ! tag:example.com,2000:app/ 6 | --- 7 | !foo "bar" 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/SingleQuotedLinesWithSingleQuotedCharacters.yaml: -------------------------------------------------------------------------------- 1 | ' 1st non-empty 2 | 3 | 2nd non-empty 4 | here''s to "quotes" 5 | 3rd non-empty ' 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/BroadcastScript1.inputactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37f04415586b4394a428c7428cbbe1fc 3 | timeCreated: 1665650656 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/MyInputForPrefab2.inputactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c37b7cbb9ca94648bbc8cec294c0e4d3 3 | timeCreated: 1665649296 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/MyInputForPrefab3.inputactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 46e33bbab4bc433db6492514af3fac1f 3 | timeCreated: 1665650147 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/MyInputForPrefab4.inputactions.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9368ee1a00ed48f2a0e912fcccfc0e9f 3 | timeCreated: 1665652899 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Scenes/SceneBroadcast1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 0c24153613fd4f33abc1fdabbc558d54 3 | timeCreated: 1665650567 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Scenes/SceneWithPrefab1.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: e807625fedfa43e4a6e132551a17d390 3 | timeCreated: 1665404624 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Scenes/SceneWithPrefab2.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: aea18242c6aa48f088d39b0f2ac8e4c2 3 | timeCreated: 1665649242 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Scenes/SceneWithPrefab3.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 07f31a09e3cd4f6a8496a2bcbb39d6b5 3 | timeCreated: 1665650125 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Assets/Scenes/SceneWithPrefab4.unity.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 10fdd33111954f8d9e99bdce65bb495a 3 | timeCreated: 1665652885 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Ex1/Description.txt.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6e43db85bb3f4fd08e932081da5faa1d 3 | timeCreated: 1588278455 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/MethodsContainer.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c038af24c61c4d3a94593d86b913d024 3 | timeCreated: 1588268096 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/MethodsContainer3.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2d988dae5a7f473ca9dc4af5f81884f9 3 | timeCreated: 1588281141 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/MethodsContainer4.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: a36c51dbb01f4b83808cbcc45785bbf2 3 | timeCreated: 1588283185 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UI_PrefabModifications/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2020.3.36f1 2 | m_EditorVersionWithRevision: 2020.3.36f1 (71f96b79b9f0) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/Assets/Editor/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbd18cad92a44ec8f4142b336cdfc5a 3 | timeCreated: 1607962250 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.62f3 2 | m_EditorVersionWithRevision: 2022.3.62f3 (96770f904ca7) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace DefaultNamespace 2 | { 3 | public class Class1 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/AsmRefGuidReference01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:ef9c8e866dc4442eb{caret}84d0c41c873ab0d" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Second{caret}Project" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ReferencingSelf/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Unresolved", "Test{caret}01" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/AlphabeticalMonoBehaviour01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements02.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | class A : UnityEditor.AssetModificationProcessor 3 | { 4 | {caret} 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements06.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Collider 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements07.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Collider2D 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements12.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Joint2D 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements14.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Network 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements15.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Renderer 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements16.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : Rigidbody 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/RedundantAssemblyAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [assembly: SerializeFie{caret}ld] 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InUnityCSharpFile01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | {caret} 4 | 5 | public class MyBehaviour : MonoBehaviour 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Refactorings/Rename/Test01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Test : MonoBehaviour 4 | { 5 | public int Val{caret}ue1; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/PartialClassesLib01/IInterface1.cs: -------------------------------------------------------------------------------- 1 | namespace PartialClassesLib01 2 | { 3 | public interface IInterface1{} 4 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestBlend02.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader { 4 | Blend 1 One {caret} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestSubShaderCommandContent01.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" { 2 | SubShader { 3 | {caret} 4 | } 5 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/TestKeywordReplacement.shader.gold: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Shader} 2 | // ${COMPLETION_TYPE:Replace} 3 | Shader {caret} -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Daemon/Stages/Highlightings/ShaderVariants.hlsl: -------------------------------------------------------------------------------- 1 | #ifdef FOO 2 | void foo() { } 3 | #endif 4 | 5 | #ifdef BAR 6 | void bar() { } 7 | #endif -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/InShaderLabFile02.shader: -------------------------------------------------------------------------------- 1 | Shader "abc" 2 | { 3 | SubShader 4 | { 5 | UsePass {caret}"" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/LiveTemplates/Scope/MustBeInPropertiesBlock01.shader: -------------------------------------------------------------------------------- 1 | Shader "abc" 2 | { 3 | Properties 4 | { 5 | {caret} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/QuickDoc/ShaderLabKeyword.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "Test" 2 | { 3 | SubShader { 4 | Blend One OneMinusSrcAlpha 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/ShadersWithSameDefinitions/test2.hlsl.gold: -------------------------------------------------------------------------------- 1 | void bar() 2 | { 3 | } 4 | 5 | void foo() 6 | { 7 | bar(); 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/UnityUIElementsCompletionTest/Solutions/UIElementsDemo/Assets/UI Toolkit/UnityThemes/UnityDefaultRuntimeTheme.tss: -------------------------------------------------------------------------------- 1 | @import url("unity-theme://default"); -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/BlockSequenceEntryTypes.yaml: -------------------------------------------------------------------------------- 1 | - # Empty 2 | - | 3 | block node 4 | - - one # Compact 5 | - two # sequence 6 | - one: two # Compact mapping 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DoubleQuotedLines.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: C_DOUBLE_QUOTED_MULTILINE '" 1st non-empty\n\n 2nd non-empty \n\t3rd non-empty "' 2 | 0049: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/ExplicitBlockMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | ? explicit key # Empty value 2 | ? | 3 | block key 4 | : - one # Explicit compact 5 | - two # block value 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowSequenceEntries.yaml: -------------------------------------------------------------------------------- 1 | [ 2 | "double 3 | quoted", 'single 4 | quoted', 5 | plain 6 | text, [ nested ], 7 | single: pair, 8 | ] 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/SingleQuotedLines.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: C_SINGLE_QUOTED_MULTILINE '' 1st non-empty\n\n 2nd non-empty \n\t3rd non-empty '' 2 | 0049: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/WhitespaceCharacters.yaml: -------------------------------------------------------------------------------- 1 | # Tabs and spaces 2 | quoted: "Quoted " 3 | block: | 4 | void main() { 5 | printf("Hello, world!\n"); 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/AliasNodes.yaml: -------------------------------------------------------------------------------- 1 | {caret}First occurrence: &anchor Foo 2 | Second occurrence: *anchor 3 | Override anchor: &anchor Bar 4 | Reuse anchor: *anchor 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BareDocuments.yaml: -------------------------------------------------------------------------------- 1 | {caret}Bare 2 | document 3 | ... 4 | # No document 5 | ... 6 | | 7 | %!PS-Adobe-2.0 # Not the first line - should be string 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/InvalidTagShorthands.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !e! tag:example,2000:app/ 2 | --- 3 | - !e! foo 4 | - !h!bar baz # Valid lexically, but doesn't resolve 5 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimImplicitUsageTest/Assets/Anim/WithControllerAndScriptMod.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 5ba9d08436ad4bce8bf0326ee2354282 3 | timeCreated: 1674137028 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/EditorOnlyVirtualTextureState.json: -------------------------------------------------------------------------------- 1 | {"m_VirtualTexturingEnabled":false,"m_VirtualTexturingEnabledInitialized":true} -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/FindUsagesOverriddenEventHandlers/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.2.8f1 2 | m_EditorVersionWithRevision: 2021.2.8f1 (d0e5f0a7b06a) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/MarkupTestData/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- 1 | sceneSetups: 2 | - path: Assets/Scenes/Scene.unity 3 | isLoaded: 1 4 | isActive: 1 5 | isSubScene: 0 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Ex1/Description.txt: -------------------------------------------------------------------------------- 1 | Prefab is serialized with m_Target which points to 0 2 | Scene modification points to correct script -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/Assets/Ex2/Description.txt: -------------------------------------------------------------------------------- 1 | Prefab is serialized with old name "voidHandler2" 2 | Modification uses new name "voidHandler" 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/PrefabModificationTestSolution/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.5f1 2 | m_EditorVersionWithRevision: 2019.3.5f1 (d691e07d38ef) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/ResourcesAutocompletionTestData/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.6f1 2 | m_EditorVersionWithRevision: 2021.3.6f1 (7da38d85baf6) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/PlayMode/Tests.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tests", 3 | "optionalUnityReferences": [ 4 | "TestAssemblies" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsAutocompletionTestData/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2021.3.6f1 2 | m_EditorVersionWithRevision: 2021.3.6f1 (7da38d85baf6) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/Assets/Common/RotationSpeedAuthoring.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 62d7dbb0ffc94a0f84d91069deb977a6 3 | timeCreated: 1660313437 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityPlayerProjects/SimpleUnityGame/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | Logs 3 | obj 4 | UserSettings 5 | Library/* 6 | !Library/zero 7 | Assets/SceneDependencyCache* 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/Test02.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ 4 | "T{caret:FromRef}est01" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/TestAsmRef01.asmref.gold: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "GUID:7d9f6c8edad14{caret}e1593fde9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/MonoBehaviour03.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | private OnAnima{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/MonoBehaviour04.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | public OnAnima{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements01.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : MonoBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements09.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEditor; 3 | 4 | class A : EditorWindow 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements13.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : MasterServer 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements17.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : ScriptableObject 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/MonoBehaviour01.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : MonoBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/RedundantClassAttribute.cs.gold: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | {caret}public class Foo 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Resolve/UnityObjectTypeInStringLiteral/CodeCompletion/ScriptableObjectCreateInstance08.cs.gold: -------------------------------------------------------------------------------- 1 | Completion: Basic 2 | Prefix: "My" 3 | Count: 0 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestBlendOp01.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader { 4 | BlendOp Add, {caret} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestBlendOp02.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader { 4 | BlendOp Add, {caret} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestCullValue.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader 4 | { 5 | Cull {caret} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent02.shader: -------------------------------------------------------------------------------- 1 | Shader "" 2 | { 3 | Properties 4 | { 5 | } 6 | 7 | {caret} 8 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Resolve/TestTexturePassReference01.shader: -------------------------------------------------------------------------------- 1 | Shader "Bar" 2 | { 3 | SubShader 4 | { 5 | UsePass "Foo/BAZ" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/ShadersWithSameDefinitions/test1.compute: -------------------------------------------------------------------------------- 1 | void {caret}bar() 2 | { 3 | } 4 | 5 | void foo() 6 | { 7 | bar(); 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Refactorings/Rename/Hlsl/ShadersWithSameDefinitions/test1.compute.gold: -------------------------------------------------------------------------------- 1 | void zzz() 2 | { 3 | } 4 | 5 | void foo() 6 | { 7 | zzz(); 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartQuot03.shader: -------------------------------------------------------------------------------- 1 | // ${CHAR:"} 2 | Shader "Unlit/NewUnlitShader" 3 | { 4 | Properties 5 | { 6 | _Color({caret}) 7 | } 8 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartQuot04.shader: -------------------------------------------------------------------------------- 1 | // ${CHAR:"} 2 | Shader "Unlit/NewUnlitShader" 3 | { 4 | Properties 5 | { 6 | _Color({caret} 7 | } 8 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/FlowMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | # Note last entry is equivalent to ? !!null "" : !!null "", 2 | { 3 | ? explicit: entry, 4 | implicit: entry, 5 | ? 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/LocalTagPrefix.yaml: -------------------------------------------------------------------------------- 1 | %TAG !m! !my- 2 | --- # Bulb here 3 | !m!light fluorescent 4 | ... 5 | %TAG !m! !my- 6 | --- # Color here 7 | !m!light green 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/BlockSequenceEntryTypes.yaml: -------------------------------------------------------------------------------- 1 | {caret}- # Empty 2 | - | 3 | block node 4 | - - one # Compact 5 | - two # sequence 6 | - one: two # Compact mapping 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.2.7f1 2 | m_EditorVersionWithRevision: 2022.2.7f1 (8331acaee5d3) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/TuanjieDebugAndUnitTesting/PlayMode/Tests.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Tests", 3 | "optionalUnityReferences": [ 4 | "TestAssemblies" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/TuanjieDebugAndUnitTesting/Project/Assets/TextureDebuggingScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ce737843c04aea9e94b731babb54a0 3 | timeCreated: 1702483146 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UI_PrefabModifications/Packages/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "com.unity.ide.rider": "3.0.16", 4 | "com.unity.ugui": "1.0.0" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/Project/Assets/Editor/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbd18cad92a44ec8f4142b336cdfc5a 3 | timeCreated: 1607962250 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDebugAndUnitTesting/Project/Assets/TextureDebuggingScript.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: b6ce737843c04aea9e94b731babb54a0 3 | timeCreated: 1702483146 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | Logs 3 | obj 4 | UserSettings 5 | Library/* 6 | !Library/zero 7 | Assets/SceneDependencyCache* 8 | *.csproj 9 | *.sln -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityPlayerProjects/SimpleUnityGame/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.17f1 2 | m_EditorVersionWithRevision: 2022.3.17f1 (4fc78088f837) 3 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Scripts/NewDirectory1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 027ce7d9b6a04aa8b082a255fc6d5030 3 | timeCreated: 1577715414 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2019.3.0f1 2 | m_EditorVersionWithRevision: 2019.3.0f1 (ffacea4b84e7) 3 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/InlayHints/GuidReference.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject", 3 | "references": [ "guid:7d9f6c8edad14e1593fde9cc75764047" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefAvailability01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e1593fd{on}e9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/AsmRefExecute01.asmref: -------------------------------------------------------------------------------- 1 | { 2 | "reference": "guid:7d9f6c8edad14e1593fd{caret}e9cc75764047" 3 | } 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/Execute01.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "SecondProje{caret}ct" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/Availability/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Second{caret}Project" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ReferencingSelf/Availability/Test01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "Unresolved", "Test{caret}01" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ReferencingSelf/Test02.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ 4 | "Unresolved"{caret} 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/MonoBehaviour05.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | private void OnAnima{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/InsertSingleMethod02.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : MonoBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements03.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEditor; 3 | 4 | class A : AssetPostprocessor 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements05.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : CharacterController 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements19.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine; 3 | 4 | class A : StateMachineBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/CreateAssetMenu/AddCreateAssetMenu.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Fo{caret}o : ScriptableObject 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantEventFunction/Test01.cs.gold: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyBehaviour : MonoBehaviour 4 | {{caret} 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/LiveTemplates/Scope/InScriptableObject.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyScriptableObject : ScriptableObject 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/NonSpecificTag.yaml: -------------------------------------------------------------------------------- 1 | # Assuming conventional resolution: 2 | - "12" # Resolves to !!str 3 | - 12 # Resolves to !!int 4 | - ! 12 # Resolves to !!str 5 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Comments.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Single line comment 2 | key: # Comment 3 | value # Comment 2 4 | 5 | # Multi line comment 1 6 | # Multi line comment 2 7 | 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/ExplicitBlockMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | {caret}? explicit key # Empty value 2 | ? | 3 | block key 4 | : - one # Explicit compact 5 | - two # block value 6 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowMappingEntries.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Note last entry is equivalent to ? !!null "" : !!null "", 2 | { 3 | ? explicit: entry, 4 | implicit: entry, 5 | ? 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/FlowSequenceEntries.yaml: -------------------------------------------------------------------------------- 1 | {caret}[ 2 | "double 3 | quoted", 'single 4 | quoted', 5 | plain 6 | text, [ nested ], 7 | single: pair, 8 | ] 9 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/LocalTagPrefix.yaml: -------------------------------------------------------------------------------- 1 | {caret}%TAG !m! !my- 2 | --- # Bulb here 3 | !m!light fluorescent 4 | ... 5 | %TAG !m! !my- 6 | --- # Color here 7 | !m!light green 8 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/WhitespaceCharacters.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Tabs and spaces 2 | quoted: "Quoted " 3 | block: | 4 | void main() { 5 | printf("Hello, world!\n"); 6 | } 7 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimImplicitUsageTest/Assets/AnimEventHolderWithControllerAndScriptMod.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 2b577ea3bbab469ca1ea59fb78cd56df 3 | timeCreated: 1674137989 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/TuanjieDebugAndUnitTesting/Project/Assets/Editor/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbd18cad92a44ec8f4142b336cdfc5a 3 | timeCreated: 1607962250 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityPlayerProjects/SimpleUnityGame/Assets/Editor/CommandLineParser.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fbbd18cad92a44ec8f4142b336cdfc5a 3 | timeCreated: 1607962250 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Dir1/ClassInDir1.cs: -------------------------------------------------------------------------------- 1 | namespace DefaultNamespace 2 | { 3 | public class ClassInDir1 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/Scripts/Editor/NewDirectory1.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 6bcbc13fc1894d2285ca3cd6e66756b4 3 | timeCreated: 1577715332 -------------------------------------------------------------------------------- /resharper/.idea/.idea.resharper-unity/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/Availability/RedundantAssemblyAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [assembly: SerializeFie{caret}ld] 4 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantInitializeOnLoadAttribute/Test01.cs.gold: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | {caret}public class MissingConstructor() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Refactorings/Rename/Test02.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Test : MonoBehaviour 4 | { 5 | [SerializeField] private int Val{caret}ue1; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Refactorings/Rename/Test03.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Test : MonoBehaviour 4 | { 5 | public int Value1, Val{caret}ue2, Value3; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/ListArrayFixedBufferAssemblyTest/ListArrayFixedBufferAssemblyTest/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace ListArrayFixedBufferAssemblyTest 2 | { 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/PartialClassesLib01/Part1.Class1.cs: -------------------------------------------------------------------------------- 1 | namespace PartialClassesLib01 2 | { 3 | public partial class Class1 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/PropertyWithBackingFieldAssembly/PropertyWithBackingFieldAssembly/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace PropertyWithBackingFieldAssembly 2 | { 3 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestColorMaterial.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader 4 | { 5 | ColorMaterial {caret} 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/Psi/Parsing/LegacyLighting01.shader: -------------------------------------------------------------------------------- 1 | {caret}Shader "Solid Red" 2 | { 3 | SubShader 4 | { 5 | Pass { Color (1,0,0,0) } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartQuot03.shader.gold: -------------------------------------------------------------------------------- 1 | // ${CHAR:"} 2 | Shader "Unlit/NewUnlitShader" 3 | { 4 | Properties 5 | { 6 | _Color("{caret}") 7 | } 8 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartQuot04.shader.gold: -------------------------------------------------------------------------------- 1 | // ${CHAR:"} 2 | Shader "Unlit/NewUnlitShader" 3 | { 4 | Properties 5 | { 6 | _Color("{caret}" 7 | } 8 | } -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/InputSystemTestData/Library/LastSceneManagerSetup.txt: -------------------------------------------------------------------------------- 1 | sceneSetups: 2 | - path: Assets/Scenes/SampleScene.unity 3 | isLoaded: 1 4 | isActive: 1 5 | isSubScene: 0 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityDotsDebug/Project/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [] 4 | } 5 | } -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityProjectModelViewExtensionsTest/Assets/AsmdefResponse/SS/rrr.cs: -------------------------------------------------------------------------------- 1 | namespace Assets.AsmdefResponse.SS 2 | { 3 | public class rrr 4 | { 5 | 6 | } 7 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Daemon/Stages/Analysis/GuidReference/GuidReference.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "FirstProject", 3 | "references": [ "guid:7d9f6c8edad14e1593fde9cc75764047" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ReferencingSelf/Test02.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ 4 | "Unresolved", 5 | "Test{caret}01" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/OnParticleTriggerWithNoArgs55.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | private OnPart{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/OnParticleTriggerWithOneArg54.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | private OnPart{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Daemon/IdentifierTooltip/SerialisedField.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | public int MySer{caret}ialisedField; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Generate/ListElements10.cs: -------------------------------------------------------------------------------- 1 | // ${KIND:Unity.EventFunctions} 2 | using UnityEngine.Experimental.Director; 3 | 4 | class A : Playable 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/GenerateUnityEventFunctions/GenerateEvents.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/RedundantClassAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [SerializeFie{caret}ld] 4 | public class Foo 5 | { 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestBlend03.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | SubShader { 4 | Blend 1 One OneMinusSrcAlpha, {caret} 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent05.shader: -------------------------------------------------------------------------------- 1 | Shader "" 2 | { 3 | Properties 4 | { 5 | } 6 | 7 | Fallback {caret}"" 8 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent06.shader: -------------------------------------------------------------------------------- 1 | Shader "" 2 | { 3 | Properties 4 | { 5 | } 6 | 7 | Category { }{caret} 8 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/DoubleQuotedLineBreaks.yaml.gold: -------------------------------------------------------------------------------- 1 | 0000: C_DOUBLE_QUOTED_MULTILINE '"folded \nto a space,\t\n \nto a line feed, or \t\\n \ \tnon-content"' 2 | 0062: NEW_LINE '\n' 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/NonSpecificTag.yaml: -------------------------------------------------------------------------------- 1 | {caret}# Assuming conventional resolution: 2 | - "12" # Resolves to !!str 3 | - 12 # Resolves to !!int 4 | - ! 12 # Resolves to !!str 5 | -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimationFindUsages/Assets/Subtype.cs: -------------------------------------------------------------------------------- 1 | using System.Collections; 2 | using System.Collections.Generic; 3 | using UnityEngine; 4 | 5 | public class Subtype : Base 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/src/Unity.Shaders/Model/UrtCompilationMode.cs: -------------------------------------------------------------------------------- 1 | namespace JetBrains.ReSharper.Plugins.Unity.Shaders.Model; 2 | 3 | public enum UrtCompilationMode 4 | { 5 | Compute, 6 | Hardware, 7 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmDefReferences/TestAction01.asmdef: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Ref01} 2 | { 3 | "name": "Test01", 4 | "references": [ 5 | "{caret}" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/Test03.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Te{caret:NameOnly}st01", 3 | "references": [ 4 | "Tes{caret:Unresolved}t02" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/SerializationReference/Solutions/PartialClassesLib01/Class1.cs: -------------------------------------------------------------------------------- 1 | namespace PartialClassesLib01 2 | { 3 | public partial class Class1 : IInterface1 4 | { 5 | } 6 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestSubShaderCommandContent02.shader: -------------------------------------------------------------------------------- 1 | Shader "MyShader" { 2 | SubShader { 3 | Fallback Off 4 | {caret} 5 | } 6 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/TypingAssist/SmartQuot01.shader: -------------------------------------------------------------------------------- 1 | // ${CHAR:"} 2 | Shader "Unlit/NewUnlitShader" 3 | { 4 | Properties 5 | { 6 | _MainTex ({caret}, 2D) = "white" {} 7 | } 8 | } -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Lexing/Unity/BinarySerialization.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-yaml/test/data/Psi/Lexing/Unity/BinarySerialization.asset -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Unity/BinarySerialization.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/resharper/resharper-yaml/test/data/Psi/Parsing/Unity/BinarySerialization.asset -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/SimpleUnityProject/Assets/UI/TitleScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/rider/src/test/testData/solutions/SimpleUnityProject/Assets/UI/TitleScreen.png -------------------------------------------------------------------------------- /resharper/resharper-json/src/Json/Psi/Tree/IJsonNewMember.cs: -------------------------------------------------------------------------------- 1 | namespace JetBrains.ReSharper.Plugins.Json.Psi.Tree 2 | { 3 | public partial interface IJsonNewMember 4 | { 5 | string Key { get; } 6 | } 7 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/VersionDefines/TestList01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "TestProject", 3 | "versionDefines": [ 4 | { 5 | "name": "{caret}" 6 | } 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/ContextActions/ConvertToNamedReference/Execute01.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "guid:7d9f6c8edad14e1593fd{caret}e9cc75764047" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/Intentions/QuickFixes/ConvertToGuidReference/Test01.asmdef.gold: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test01", 3 | "references": [ "GUID:7d9f6c8edad14{caret}e1593fde9cc75764047" ] 4 | } 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionInsideStruct.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | // Invalid code, but hey 4 | public struct A : MonoBehaviour 5 | { 6 | Awak{caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Daemon/IdentifierTooltip/SerialisedFieldWithTooltip.gold: -------------------------------------------------------------------------------- 1 | (serialised field) int A.MySerialisedField 2 | 3 | Something cool 4 | This field is initialized from Inspector 5 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/AddHeaderAttribute/AddAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | public int my{caret}Value; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/AddRangeAttribute/AddAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | public int my{caret}Value; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/AddSpaceAttribute/AddAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | public int my{caret}Value; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/CreateFromUsage/SerializedField04.cs: -------------------------------------------------------------------------------- 1 | public class NotMonoBehaviour 2 | { 3 | public void Whatever() 4 | { 5 | thing{caret}. 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantInitializeOnLoadAttribute/Test01.cs: -------------------------------------------------------------------------------- 1 | using UnityEditor; 2 | 3 | [InitializeOn{caret}Load] 4 | public class MissingConstructor() 5 | { 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/UseSerializedBackingField/Test01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | public int Prop { get;{caret} } 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestPropertyValueType.shader: -------------------------------------------------------------------------------- 1 | Shader "Test" 2 | { 3 | Properties 4 | { 5 | _TestProp("MyProp", {caret}) 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent03.shader: -------------------------------------------------------------------------------- 1 | Shader "" 2 | { 3 | Properties 4 | { 5 | } 6 | 7 | Category { } 8 | {caret} 9 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/ShaderLab/CodeCompletion/Keywords/List/TestShaderCommandContent04.shader: -------------------------------------------------------------------------------- 1 | Shader "" 2 | { 3 | Properties 4 | { 5 | } 6 | 7 | Fallback "" 8 | {caret} 9 | } -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/UnityUIElementsCompletionTest/Solutions/UIElementsDemo/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2022.3.1f1 2 | m_EditorVersionWithRevision: 2022.3.1f1 (f18e0c1b5784) 3 | -------------------------------------------------------------------------------- /resharper/resharper-yaml/test/data/Psi/Parsing/Reparse/Delete01.yaml.gold: -------------------------------------------------------------------------------- 1 | PsiLanguageType:YAML: reparsed node type: JetBrains.ReSharper.Plugins.Yaml.Psi.Tree.Impl.ChameleonDocumentBody, text: key1: 1 2 | key3: 3 3 | 4 | -------------------------------------------------------------------------------- /rider/.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /rider/src/test/testData/UnityClassLibTest/lib/UnityEngine-2018.3-07-30-2019.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JetBrains/resharper-unity/HEAD/rider/src/test/testData/UnityClassLibTest/lib/UnityEngine-2018.3-07-30-2019.dll -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AnimImplicitUsageTest/Assets/Anim/WithControllerAndScriptMod/WithControllerAndScriptMod.anim.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 37d38e3873288f246bb4278468616959 3 | timeCreated: 1674137039 -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/AssetDatabasePathCompletionProject/Library/PackageCache/com.unity.ide.rider@3.0.18/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 2 6 | end_of_line = lf -------------------------------------------------------------------------------- /rider/src/test/testData/solutions/UnityPlayerProjects/SimpleUnityGame/ProjectSettings/Packages/com.unity.testtools.codecoverage/Settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "m_Dictionary": { 3 | "m_DictionaryValues": [] 4 | } 5 | } -------------------------------------------------------------------------------- /resharper/resharper-json/test/data/Json/Psi/Parsing/boolLiteral.json.gold: -------------------------------------------------------------------------------- 1 | Language: PsiLanguageType:JSON_NEW 2 | IJsonNewFile 3 | IJsonNewLiteralExpression 4 | JsonNewKeywordTokenNode(type:TRUE_KEYWORD, text:true) 5 | 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/CodeCompletion/AsmDefReferences/TestAction01.asmdef.gold: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:Ref01} 2 | { 3 | "name": "Test01", 4 | "references": [ 5 | "Ref01{caret}" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/AsmDef/ContextHighlighters/AsmDefReferences/Test04.asmdef: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Test{caret:Errors}01", 3 | "references": [ 4 | "Test01", "Test01", "Test01", "Test01" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/Action/EmptyPrefix.cs: -------------------------------------------------------------------------------- 1 | // ${COMPLETE_ITEM:private LateUpdate() { ... \}} 2 | using UnityEngine; 3 | 4 | public class A : MonoBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionFollowingSerializeFieldAttribute01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | [SerializeField] {caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionFollowingSerializeFieldAttribute02.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | [SerializeField] On{caret} 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/NoCompletionInsideInterface.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | // Invalid code, but hey 4 | public interface A : MonoBehaviour 5 | { 6 | Awak{caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/CodeCompletion/List/UnityEditor01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | using UnityEditor; // More types in scope 3 | 4 | public class A : MonoBehaviour 5 | { 6 | {caret} 7 | } 8 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Daemon/IdentifierTooltip/EventFunction01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class A : MonoBehaviour 4 | { 5 | private void OnD{caret}estroy() 6 | { 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/ContextActions/ToggleSerializedField/ToSerialized01.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Foo : MonoBehaviour 4 | { 5 | private int my{caret}Value; 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/ConvertToScriptableObjectCreateInstance/MyScriptableObject.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class MyScriptableObject : ScriptableObject 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantAttributeOnTarget/Availability/RedundantClassAttribute.cs: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | [SerializeFie{caret}ld] 4 | public class Foo 5 | { 6 | } 7 | -------------------------------------------------------------------------------- /resharper/resharper-unity/test/data/Unity/CSharp/Intentions/QuickFixes/RedundantHideInInspectorAttribute/Test04.cs.gold: -------------------------------------------------------------------------------- 1 | using UnityEngine; 2 | 3 | public class Test 4 | { 5 | {caret} public static int Value1 = 42; 6 | } 7 | --------------------------------------------------------------------------------