├── .gitignore ├── .vimrc_l ├── Demo ├── .gitignore ├── Projeny.yaml ├── UnityPackages │ ├── AllMovers │ │ ├── AllMovers.unity │ │ ├── AllMovers.unity.meta │ │ ├── ExampleFile1.cs │ │ ├── ExampleFile1.cs.meta │ │ ├── ProjenyPackage.yaml │ │ └── ProjenyPackage.yaml.meta │ ├── CommonShapeMover │ │ ├── ShapeMover.cs │ │ └── ShapeMover.cs.meta │ ├── CubeMover │ │ ├── Cube.prefab │ │ ├── Cube.prefab.meta │ │ ├── CubeColorChanger.cs │ │ ├── CubeColorChanger.cs.meta │ │ ├── CubeMain.unity │ │ ├── CubeMain.unity.meta │ │ ├── ProjenyPackage.yaml │ │ └── ProjenyPackage.yaml.meta │ └── SphereMover │ │ ├── ProjenyPackage.yaml │ │ ├── ProjenyPackage.yaml.meta │ │ ├── Sphere.prefab │ │ ├── Sphere.prefab.meta │ │ ├── SphereColorChanger.cs │ │ ├── SphereColorChanger.cs.meta │ │ ├── SphereMain.unity │ │ └── SphereMain.unity.meta └── UnityProjects │ ├── AllMovers │ ├── .gitignore │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ └── UnityConnectSettings.asset │ └── ProjenyProject.yaml │ ├── CubeMover │ ├── .gitignore │ ├── ProjectSettings │ │ ├── AudioManager.asset │ │ ├── ClusterInputManager.asset │ │ ├── DynamicsManager.asset │ │ ├── EditorBuildSettings.asset │ │ ├── EditorSettings.asset │ │ ├── GraphicsSettings.asset │ │ ├── InputManager.asset │ │ ├── NavMeshAreas.asset │ │ ├── NetworkManager.asset │ │ ├── Physics2DSettings.asset │ │ ├── ProjectSettings.asset │ │ ├── ProjectVersion.txt │ │ ├── QualitySettings.asset │ │ ├── TagManager.asset │ │ ├── TimeManager.asset │ │ ├── UnityAdsSettings.asset │ │ └── UnityConnectSettings.asset │ └── ProjenyProject.yaml │ ├── ProjenyProject.yaml │ └── SphereMover │ ├── .gitignore │ ├── ProjectSettings │ ├── AudioManager.asset │ ├── ClusterInputManager.asset │ ├── DynamicsManager.asset │ ├── EditorBuildSettings.asset │ ├── EditorSettings.asset │ ├── GraphicsSettings.asset │ ├── InputManager.asset │ ├── NavMeshAreas.asset │ ├── NetworkManager.asset │ ├── Physics2DSettings.asset │ ├── ProjectSettings.asset │ ├── ProjectVersion.txt │ ├── QualitySettings.asset │ ├── TagManager.asset │ ├── TimeManager.asset │ ├── UnityAdsSettings.asset │ └── UnityConnectSettings.asset │ └── ProjenyProject.yaml ├── Docs ├── Logo.png ├── LogoNoText.png ├── LogoWhite.png ├── LogoWhiteWithText.png ├── ReadMe.URL ├── Screen1.png ├── Screen10.png ├── Screen11.png ├── Screen12.png ├── Screen13.png ├── Screen2.png ├── Screen3.png ├── Screen4.png ├── Screen5.png ├── Screen6.png ├── Screen7.png ├── Screen8.png └── Screen9.png ├── Installer ├── .gitignore ├── BinFiles │ ├── Prj.bat │ ├── PrjEditorApi.bat │ ├── PrjOpenInVisualStudio.bat │ └── PrjUpdateReleaseManifest.bat ├── CreateInstaller.nsi └── Images │ ├── Logo-Icon.ico │ └── Sidebar.bmp ├── License.md ├── Projeny.yaml ├── README.md ├── Source ├── .gitignore ├── BuildAllExes.bat ├── BuildAllExes.py ├── PackageBuild.bat ├── ReadMe.txt ├── Version.txt ├── __init__.py ├── bin │ ├── Prj.bat │ ├── PrjEditorApi.bat │ ├── PrjUpdateReleaseManifest.bat │ └── ProjenyOpenInVisualStudio.bat ├── mtm │ ├── __init__.py │ ├── config │ │ ├── Config.py │ │ ├── ConfigLoaderHardCoded.py │ │ ├── YamlConfigLoader.py │ │ ├── __init__.py │ │ └── tests │ │ │ ├── ExampleConfig.yaml │ │ │ ├── ExampleConfig2.yaml │ │ │ ├── TestConfig.xml │ │ │ ├── TestConfigYaml.py │ │ │ └── TestYamlWrite.py │ ├── ioc │ │ ├── Container.py │ │ ├── Inject.py │ │ ├── IocAssertions.py │ │ ├── __init__.py │ │ └── tests │ │ │ ├── TestCircularDependencies.py │ │ │ ├── TestConditionalInjections.py │ │ │ ├── TestOptionalInjection.py │ │ │ ├── TestSingletonsAndTransients.py │ │ │ └── __init__.py │ ├── log │ │ ├── ColorConsole.py │ │ ├── LogStreamConsole.py │ │ ├── LogStreamConsoleErrorsOnly.py │ │ ├── LogStreamConsoleHeadingsOnly.py │ │ ├── LogStreamFile.py │ │ ├── LogStreamStdout.py │ │ ├── LogWatcher.py │ │ ├── Logger.py │ │ └── __init__.py │ └── util │ │ ├── Assert.py │ │ ├── CleanUpPython.py │ │ ├── CommonSettings.py │ │ ├── JunctionHelper.py │ │ ├── JunctionUtil.py │ │ ├── MiscUtil.py │ │ ├── PlatformUtil.py │ │ ├── Platforms.py │ │ ├── ProcessRunner.py │ │ ├── ScriptRunner.py │ │ ├── SystemHelper.py │ │ ├── UnityHelper.py │ │ ├── Util.py │ │ ├── VarManager.py │ │ ├── YamlSerializer.py │ │ ├── ZipHelper.py │ │ ├── __init__.py │ │ └── tests │ │ ├── .gitignore │ │ ├── TestLogger.py │ │ ├── TestSystemHelper.py │ │ ├── TestVarManager.py │ │ └── __init__.py └── prj │ ├── __init__.py │ ├── main │ ├── CsProjAnalyzer.py │ ├── EditorApi.py │ ├── OpenInVisualStudio.py │ ├── PackageBuild.py │ ├── PackageConfig.py │ ├── PackageManager.py │ ├── Prj.py │ ├── PrjRunner.py │ ├── ProjectConfig.py │ ├── ProjectConfigChanger.py │ ├── ProjectSchemaLoader.py │ ├── ProjenyConstants.py │ ├── ProjenyVisualStudioHelper.py │ ├── ReleaseManifestUpdater.py │ ├── UnityEditorMenuGenerator.py │ ├── VisualStudioHelper.py │ ├── VisualStudioSolutionGenerator.py │ ├── __init__.py │ └── tests │ │ └── .gitignore │ ├── plugins │ ├── .gitignore │ └── ExamplePlugin.py │ └── reg │ ├── AssetStoreCacheReleaseSource.py │ ├── LocalFolderReleaseSource.py │ ├── PackageInfo.py │ ├── ReleaseInfo.py │ ├── ReleaseSourceManager.py │ ├── RemoteServerReleaseSource.py │ ├── UnityPackageAnalyzer.py │ ├── UnityPackageExtractor.py │ └── __init__.py ├── Templates ├── CsProjectTemplate.csproj ├── CsSolutionTemplate.sln ├── Placeholder1 │ ├── Placeholder.cs │ └── Placeholder.cs.meta ├── Placeholder2 │ ├── Placeholder.cs │ └── Placeholder.cs.meta ├── Projeny.dll.meta ├── ProjenyChangeProjectMenu.cs.meta ├── customProjectRootGitIgnore └── customProjectRootSvnIgnore └── UnityPlugin ├── .vimrc_l ├── Libraries └── Unity │ ├── UnityEditor.dll │ └── UnityEngine.dll ├── Projeny.sln ├── Projeny ├── .gitignore ├── Assets │ ├── Fonts.meta │ ├── Fonts │ │ ├── Myriad Pro (25).otf │ │ ├── Myriad Pro (25).otf.meta │ │ ├── SourceCodePro-Regular.otf │ │ └── SourceCodePro-Regular.otf.meta │ ├── Resources.meta │ ├── Resources │ │ ├── Projeny.meta │ │ └── Projeny │ │ │ ├── Icon.png │ │ │ ├── Icon.png.meta │ │ │ ├── PmSettings.asset │ │ │ └── PmSettings.asset.meta │ ├── Skin.meta │ ├── Skin │ │ ├── Dark.meta │ │ ├── Dark │ │ │ ├── SkinDark.guiskin │ │ │ ├── SkinDark.guiskin.meta │ │ │ ├── Sources.meta │ │ │ └── Sources │ │ │ │ ├── box.png │ │ │ │ ├── box.png.meta │ │ │ │ ├── button active.png │ │ │ │ ├── button active.png.meta │ │ │ │ ├── button hover.png │ │ │ │ ├── button hover.png.meta │ │ │ │ ├── button on hover.png │ │ │ │ ├── button on hover.png.meta │ │ │ │ ├── button on.png │ │ │ │ ├── button on.png.meta │ │ │ │ ├── button.png │ │ │ │ ├── button.png.meta │ │ │ │ ├── horizontal scrollbar thumb.png │ │ │ │ ├── horizontal scrollbar thumb.png.meta │ │ │ │ ├── horizontal scrollbar.png │ │ │ │ ├── horizontal scrollbar.png.meta │ │ │ │ ├── horizontalslider.png │ │ │ │ ├── horizontalslider.png.meta │ │ │ │ ├── slider thumb active.png │ │ │ │ ├── slider thumb active.png.meta │ │ │ │ ├── slider thumb.png │ │ │ │ ├── slider thumb.png.meta │ │ │ │ ├── slidert humb hover.png │ │ │ │ ├── slidert humb hover.png.meta │ │ │ │ ├── textfield hover.png │ │ │ │ ├── textfield hover.png.meta │ │ │ │ ├── textfield on.png │ │ │ │ ├── textfield on.png.meta │ │ │ │ ├── textfield.png │ │ │ │ ├── textfield.png.meta │ │ │ │ ├── toggle active.png │ │ │ │ ├── toggle active.png.meta │ │ │ │ ├── toggle hover.png │ │ │ │ ├── toggle hover.png.meta │ │ │ │ ├── toggle on active.png │ │ │ │ ├── toggle on active.png.meta │ │ │ │ ├── toggle on hover.png │ │ │ │ ├── toggle on hover.png.meta │ │ │ │ ├── toggle on.png │ │ │ │ ├── toggle on.png.meta │ │ │ │ ├── toggle.png │ │ │ │ ├── toggle.png.meta │ │ │ │ ├── vertical scrollbar thumb.png │ │ │ │ ├── vertical scrollbar thumb.png.meta │ │ │ │ ├── vertical scrollbar.png │ │ │ │ ├── vertical scrollbar.png.meta │ │ │ │ ├── verticalslider.png │ │ │ │ ├── verticalslider.png.meta │ │ │ │ ├── window on.png │ │ │ │ ├── window on.png.meta │ │ │ │ ├── window.png │ │ │ │ └── window.png.meta │ │ ├── Light.meta │ │ └── Light │ │ │ ├── SkinLight.guiskin │ │ │ ├── SkinLight.guiskin.meta │ │ │ ├── Sources.meta │ │ │ └── Sources │ │ │ ├── box.png │ │ │ ├── box.png.meta │ │ │ ├── button active.png │ │ │ ├── button active.png.meta │ │ │ ├── button hover.png │ │ │ ├── button hover.png.meta │ │ │ ├── button on hover.png │ │ │ ├── button on hover.png.meta │ │ │ ├── button on.png │ │ │ ├── button on.png.meta │ │ │ ├── button.png │ │ │ ├── button.png.meta │ │ │ ├── horizontal scrollbar thumb.png │ │ │ ├── horizontal scrollbar thumb.png.meta │ │ │ ├── horizontal scrollbar.png │ │ │ ├── horizontal scrollbar.png.meta │ │ │ ├── horizontalslider.png │ │ │ ├── horizontalslider.png.meta │ │ │ ├── slider thumb active.png │ │ │ ├── slider thumb active.png.meta │ │ │ ├── slider thumb.png │ │ │ ├── slider thumb.png.meta │ │ │ ├── slidert humb hover.png │ │ │ ├── slidert humb hover.png.meta │ │ │ ├── textfield hover.png │ │ │ ├── textfield hover.png.meta │ │ │ ├── textfield on.png │ │ │ ├── textfield on.png.meta │ │ │ ├── textfield.png │ │ │ ├── textfield.png.meta │ │ │ ├── toggle active.png │ │ │ ├── toggle active.png.meta │ │ │ ├── toggle hover.png │ │ │ ├── toggle hover.png.meta │ │ │ ├── toggle on active.png │ │ │ ├── toggle on active.png.meta │ │ │ ├── toggle on hover.png │ │ │ ├── toggle on hover.png.meta │ │ │ ├── toggle on.png │ │ │ ├── toggle on.png.meta │ │ │ ├── toggle.png │ │ │ ├── toggle.png.meta │ │ │ ├── vertical scrollbar thumb.png │ │ │ ├── vertical scrollbar thumb.png.meta │ │ │ ├── vertical scrollbar.png │ │ │ ├── vertical scrollbar.png.meta │ │ │ ├── verticalslider.png │ │ │ ├── verticalslider.png.meta │ │ │ ├── window on.png │ │ │ ├── window on.png.meta │ │ │ ├── window.png │ │ │ └── window.png.meta │ ├── Textures.meta │ └── Textures │ │ ├── Clear.png │ │ ├── Clear.png.meta │ │ ├── Dark.meta │ │ ├── Dark │ │ ├── Border.png │ │ └── Border.png.meta │ │ ├── Gray.png │ │ ├── Gray.png.meta │ │ ├── Light.meta │ │ ├── Light │ │ ├── ArrowLeft.png │ │ ├── ArrowLeft.png.meta │ │ ├── ArrowRight.png │ │ ├── ArrowRight.png.meta │ │ ├── Border.png │ │ ├── Border.png.meta │ │ ├── DropdownArrow.png │ │ └── DropdownArrow.png.meta │ │ ├── SearchIcon.png │ │ ├── SearchIcon.png.meta │ │ ├── SortDirDown.png │ │ ├── SortDirDown.png.meta │ │ ├── SortDirUp.png │ │ ├── SortDirUp.png.meta │ │ ├── SortIcon.png │ │ ├── SortIcon.png.meta │ │ ├── SortIcon_Hover.png │ │ ├── SortIcon_Hover.png.meta │ │ ├── White.png │ │ └── White.png.meta ├── Internal │ ├── Assert.cs │ ├── Assert.cs.meta │ ├── AsyncProcessor.cs │ ├── AsyncProcessor.cs.meta │ ├── Coroutine.cs │ ├── Coroutine.cs.meta │ ├── DateTimeUtil.cs │ ├── DateTimeUtil.cs.meta │ ├── DictionaryExtensions.cs │ ├── DictionaryExtensions.cs.meta │ ├── Events.meta │ ├── Events │ │ ├── EventDispatcher.cs │ │ ├── EventDispatcher.cs.meta │ │ ├── EventHandlerKey.cs │ │ ├── EventHandlerKey.cs.meta │ │ ├── EventManager.cs │ │ ├── EventManager.cs.meta │ │ ├── IFrameCounter.cs │ │ ├── IFrameCounter.cs.meta │ │ ├── TimerPool.cs │ │ └── TimerPool.cs.meta │ ├── ExceptionExtensions.cs │ ├── ExceptionExtensions.cs.meta │ ├── ImguiUtil.cs │ ├── ImguiUtil.cs.meta │ ├── JunctionPoint.cs │ ├── JunctionPoint.cs.meta │ ├── LinqExtensions.cs │ ├── LinqExtensions.cs.meta │ ├── Log.cs │ ├── Log.cs.meta │ ├── MiscExtensions.cs │ ├── MiscExtensions.cs.meta │ ├── MiscUnityEditorExtensions.cs │ ├── MiscUnityEditorExtensions.cs.meta │ ├── PathUtil.cs │ ├── PathUtil.cs.meta │ ├── PreserveAttribute.cs │ ├── PreserveAttribute.cs.meta │ ├── ProfileBlock.cs │ ├── ProfileBlock.cs.meta │ ├── StringExtensions.cs │ ├── StringExtensions.cs.meta │ ├── Tuple.cs │ ├── Tuple.cs.meta │ ├── TypeExtensions.cs │ └── TypeExtensions.cs.meta ├── Main │ ├── Models.meta │ ├── Models │ │ ├── PackageInfo.cs │ │ ├── PackageInfo.cs.meta │ │ ├── ProjectConfig.cs │ │ ├── ProjectConfig.cs.meta │ │ ├── ReleaseInfo.cs │ │ └── ReleaseInfo.cs.meta │ ├── PrjHelper.cs │ ├── PrjHelper.cs.meta │ ├── PrjInterface.cs │ ├── PrjInterface.cs.meta │ ├── PrjPathVars.cs │ ├── PrjPathVars.cs.meta │ ├── ProjenyConfigValidator.cs │ ├── ProjenyConfigValidator.cs.meta │ ├── ProjenyEditorMenu.cs │ ├── ProjenyEditorMenu.cs.meta │ ├── ProjenyEditorUtil.cs │ ├── ProjenyEditorUtil.cs.meta │ ├── Serialization.meta │ └── Serialization │ │ ├── PrjSerializer.cs │ │ ├── PrjSerializer.cs.meta │ │ ├── YamlSerializer.cs │ │ └── YamlSerializer.cs.meta ├── PackageManager │ ├── Controller.meta │ ├── Controller │ │ ├── PmDragDropHandler.cs │ │ ├── PmDragDropHandler.cs.meta │ │ ├── PmInputHandler.cs │ │ ├── PmInputHandler.cs.meta │ │ ├── PmModelViewSyncer.cs │ │ ├── PmModelViewSyncer.cs.meta │ │ ├── PmPackageHandler.cs │ │ ├── PmPackageHandler.cs.meta │ │ ├── PmPackageViewHandler.cs │ │ ├── PmPackageViewHandler.cs.meta │ │ ├── PmProjectViewHandler.cs │ │ ├── PmProjectViewHandler.cs.meta │ │ ├── PmReleasesViewHandler.cs │ │ ├── PmReleasesViewHandler.cs.meta │ │ ├── PmViewAsyncHandler.cs │ │ ├── PmViewAsyncHandler.cs.meta │ │ ├── PmViewErrorHandler.cs │ │ ├── PmViewErrorHandler.cs.meta │ │ ├── PmViewHandlerCommon.cs │ │ ├── PmViewHandlerCommon.cs.meta │ │ ├── PmVsSolutionViewHandler.cs │ │ └── PmVsSolutionViewHandler.cs.meta │ ├── Model.meta │ ├── Model │ │ ├── PmModel.cs │ │ ├── PmModel.cs.meta │ │ ├── PmProjectHandler.cs │ │ ├── PmProjectHandler.cs.meta │ │ ├── PmReleasesHandler.cs │ │ ├── PmReleasesHandler.cs.meta │ │ ├── UpmCommandHandler.cs │ │ └── UpmCommandHandler.cs.meta │ ├── PmCompositionRoot.cs │ ├── PmCompositionRoot.cs.meta │ ├── PmCreateNewProjectPopupHandler.cs │ ├── PmCreateNewProjectPopupHandler.cs.meta │ ├── PmSettings.cs │ ├── PmSettings.cs.meta │ ├── PmWindow.cs │ ├── PmWindow.cs.meta │ ├── PmWindowInitializer.cs │ ├── PmWindowInitializer.cs.meta │ ├── View.meta │ └── View │ │ ├── DragList.cs │ │ ├── DragList.cs.meta │ │ ├── PmView.cs │ │ └── PmView.cs.meta └── Projeny.csproj └── YamlDotNet ├── .gitignore ├── Core ├── AnchorNotFoundException.cs ├── CharacterAnalyzer.cs ├── Constants.cs ├── Cursor.cs ├── DuplicateAnchorException.cs ├── Emitter.cs ├── EmitterState.cs ├── EventReader.cs ├── Events │ ├── AnchorAlias.cs │ ├── Comment.cs │ ├── DocumentEnd.cs │ ├── DocumentStart.cs │ ├── EventType.cs │ ├── IParsingEventVisitor.cs │ ├── MappingEnd.cs │ ├── MappingStart.cs │ ├── MappingStyle.cs │ ├── NodeEvent.cs │ ├── ParsingEvent.cs │ ├── Scalar.cs │ ├── SequenceEnd.cs │ ├── SequenceStart.cs │ ├── SequenceStyle.cs │ ├── StreamEnd.cs │ └── StreamStart.cs ├── FakeList.cs ├── ForwardAnchorNotSupportedException.cs ├── HashCode.cs ├── IEmitter.cs ├── ILookAheadBuffer.cs ├── IParser.cs ├── IScanner.cs ├── InsertionQueue.cs ├── LookAheadBuffer.cs ├── Mark.cs ├── MergingParser.cs ├── Parser.cs ├── ParserState.cs ├── ScalarStyle.cs ├── Scanner.cs ├── SemanticErrorException.cs ├── SimpleKey.cs ├── StringLookAheadBuffer.cs ├── SyntaxErrorException.cs ├── TagDirectiveCollection.cs ├── Tokens │ ├── Anchor.cs │ ├── AnchorAlias.cs │ ├── BlockEnd.cs │ ├── BlockEntry.cs │ ├── BlockMappingStart.cs │ ├── BlockSequenceStart.cs │ ├── Comment.cs │ ├── DocumentEnd.cs │ ├── DocumentStart.cs │ ├── FlowEntry.cs │ ├── FlowMappingEnd.cs │ ├── FlowMappingStart.cs │ ├── FlowSequenceEnd.cs │ ├── FlowSequenceStart.cs │ ├── Key.cs │ ├── Scalar.cs │ ├── StreamEnd.cs │ ├── StreamStart.cs │ ├── Tag.cs │ ├── TagDirective.cs │ ├── Token.cs │ ├── Value.cs │ └── VersionDirective.cs ├── Version.cs └── YamlException.cs ├── Helpers └── Portability.cs ├── Properties └── AssemblyInfo.cs ├── RepresentationModel ├── DocumentLoadingState.cs ├── EmitterState.cs ├── IYamlVisitor.cs ├── YamlAliasNode.cs ├── YamlDocument.cs ├── YamlMappingNode.cs ├── YamlNode.cs ├── YamlNodeIdentityEqualityComparer.cs ├── YamlScalarNode.cs ├── YamlSequenceNode.cs ├── YamlStream.cs └── YamlVisitor.cs ├── Serialization ├── Converters │ └── GuidConverter.cs ├── Deserializer.cs ├── EventEmitters │ ├── ChainedEventEmitter.cs │ ├── JsonEventEmitter.cs │ ├── TypeAssigningEventEmitter.cs │ └── WriterEventEmitter.cs ├── EventInfo.cs ├── IAliasProvider.cs ├── IEventEmitter.cs ├── INamingConvention.cs ├── INodeDeserializer.cs ├── INodeTypeResolver.cs ├── IObjectDescriptor.cs ├── IObjectFactory.cs ├── IObjectGraphTraversalStrategy.cs ├── IObjectGraphVisitor.cs ├── IPropertyDescriptor.cs ├── ITypeInspector.cs ├── ITypeResolver.cs ├── IValueDeserializer.cs ├── IValuePromise.cs ├── IYamlSerializable.cs ├── IYamlTypeConverter.cs ├── NamingConventions │ ├── CamelCaseNamingConvention.cs │ ├── HyphenatedNamingConvention.cs │ ├── NullNamingConvention.cs │ ├── PascalCaseNamingConvention.cs │ └── UnderscoredNamingConvention.cs ├── NodeDeserializers │ ├── ArrayNodeDeserializer.cs │ ├── EnumerableNodeDeserializer.cs │ ├── GenericCollectionNodeDeserializer.cs │ ├── GenericDictionaryNodeDeserializer.cs │ ├── NonGenericDictionaryNodeDeserializer.cs │ ├── NonGenericListNodeDeserializer.cs │ ├── NullNodeDeserializer.cs │ ├── ObjectNodeDeserializer.cs │ ├── ScalarNodeDeserializer.cs │ └── TypeConverterNodeDeserializer.cs ├── NodeTypeResolvers │ ├── DefaultContainersNodeTypeResolver.cs │ ├── TagNodeTypeResolver.cs │ └── TypeNameInTagNodeTypeResolver.cs ├── ObjectDescriptor.cs ├── ObjectFactories │ ├── DefaultObjectFactory.cs │ └── LambdaObjectFactory.cs ├── ObjectGraphTraversalStrategies │ ├── FullObjectGraphTraversalStrategy.cs │ └── RoundtripObjectGraphTraversalStrategy.cs ├── ObjectGraphVisitors │ ├── AnchorAssigner.cs │ ├── AnchorAssigningObjectGraphVisitor.cs │ ├── ChainedObjectGraphVisitor.cs │ ├── CustomSerializationObjectGraphVisitor.cs │ ├── DefaultExclusiveObjectGraphVisitor.cs │ └── EmittingObjectGraphVisitor.cs ├── PropertyDescriptor.cs ├── SerializationOptions.cs ├── Serializer.cs ├── StreamFragment.cs ├── TagMappings.cs ├── TypeInspectors │ ├── CachedTypeInspector.cs │ ├── NamingConventionTypeInspector.cs │ ├── ReadableAndWritablePropertiesTypeInspector.cs │ ├── ReadablePropertiesTypeInspector.cs │ └── TypeInspectorSkeleton.cs ├── TypeResolvers │ ├── DynamicTypeResolver.cs │ └── StaticTypeResolver.cs ├── Utilities │ ├── IPostDeserializationCallback.cs │ ├── ObjectAnchorCollection.cs │ ├── ReflectionUtility.cs │ ├── SerializerState.cs │ ├── StringExtensions.cs │ ├── TypeConverter.cs │ └── YamlTypeConverters.cs ├── ValueDeserializers │ ├── AliasValueDeserializer.cs │ └── NodeValueDeserializer.cs ├── YamlAliasAttribute.cs ├── YamlAttributesTypeInspector.cs ├── YamlFormatter.cs ├── YamlIgnoreAttribute.cs └── YamlMember.cs ├── YamlDotNet.Signed.nuspec ├── YamlDotNet.Unsigned.nuspec └── YamlDotNet.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/.gitignore -------------------------------------------------------------------------------- /.vimrc_l: -------------------------------------------------------------------------------- 1 | 2 | call Ave#Git#AddMappings() 3 | -------------------------------------------------------------------------------- /Demo/.gitignore: -------------------------------------------------------------------------------- 1 | /PrjLog.txt 2 | -------------------------------------------------------------------------------- /Demo/Projeny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/Projeny.yaml -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/AllMovers.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/AllMovers.unity -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/AllMovers.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/AllMovers.unity.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/ExampleFile1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/ExampleFile1.cs -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/ExampleFile1.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/ExampleFile1.cs.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/ProjenyPackage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/ProjenyPackage.yaml -------------------------------------------------------------------------------- /Demo/UnityPackages/AllMovers/ProjenyPackage.yaml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/AllMovers/ProjenyPackage.yaml.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/CommonShapeMover/ShapeMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CommonShapeMover/ShapeMover.cs -------------------------------------------------------------------------------- /Demo/UnityPackages/CommonShapeMover/ShapeMover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CommonShapeMover/ShapeMover.cs.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/Cube.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/Cube.prefab -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/Cube.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/Cube.prefab.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/CubeColorChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/CubeColorChanger.cs -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/CubeColorChanger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/CubeColorChanger.cs.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/CubeMain.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/CubeMain.unity -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/CubeMain.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/CubeMain.unity.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/ProjenyPackage.yaml: -------------------------------------------------------------------------------- 1 | 2 | Dependencies: 3 | - CommonShapeMover 4 | -------------------------------------------------------------------------------- /Demo/UnityPackages/CubeMover/ProjenyPackage.yaml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/CubeMover/ProjenyPackage.yaml.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/ProjenyPackage.yaml: -------------------------------------------------------------------------------- 1 | 2 | Dependencies: 3 | - CommonShapeMover 4 | -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/ProjenyPackage.yaml.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/ProjenyPackage.yaml.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/Sphere.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/Sphere.prefab -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/Sphere.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/Sphere.prefab.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/SphereColorChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/SphereColorChanger.cs -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/SphereColorChanger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/SphereColorChanger.cs.meta -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/SphereMain.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/SphereMain.unity -------------------------------------------------------------------------------- /Demo/UnityPackages/SphereMover/SphereMain.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityPackages/SphereMover/SphereMain.unity.meta -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/.gitignore -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 5.6.1f1 2 | -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/AllMovers/ProjenyProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/AllMovers/ProjenyProject.yaml -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/.gitignore -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/CubeMover/ProjenyProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/CubeMover/ProjenyProject.yaml -------------------------------------------------------------------------------- /Demo/UnityProjects/ProjenyProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/ProjenyProject.yaml -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/.gitignore -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/UnityAdsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/UnityAdsSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /Demo/UnityProjects/SphereMover/ProjenyProject.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Demo/UnityProjects/SphereMover/ProjenyProject.yaml -------------------------------------------------------------------------------- /Docs/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Logo.png -------------------------------------------------------------------------------- /Docs/LogoNoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/LogoNoText.png -------------------------------------------------------------------------------- /Docs/LogoWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/LogoWhite.png -------------------------------------------------------------------------------- /Docs/LogoWhiteWithText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/LogoWhiteWithText.png -------------------------------------------------------------------------------- /Docs/ReadMe.URL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/ReadMe.URL -------------------------------------------------------------------------------- /Docs/Screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen1.png -------------------------------------------------------------------------------- /Docs/Screen10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen10.png -------------------------------------------------------------------------------- /Docs/Screen11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen11.png -------------------------------------------------------------------------------- /Docs/Screen12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen12.png -------------------------------------------------------------------------------- /Docs/Screen13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen13.png -------------------------------------------------------------------------------- /Docs/Screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen2.png -------------------------------------------------------------------------------- /Docs/Screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen3.png -------------------------------------------------------------------------------- /Docs/Screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen4.png -------------------------------------------------------------------------------- /Docs/Screen5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen5.png -------------------------------------------------------------------------------- /Docs/Screen6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen6.png -------------------------------------------------------------------------------- /Docs/Screen7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen7.png -------------------------------------------------------------------------------- /Docs/Screen8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen8.png -------------------------------------------------------------------------------- /Docs/Screen9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Docs/Screen9.png -------------------------------------------------------------------------------- /Installer/.gitignore: -------------------------------------------------------------------------------- 1 | /Build 2 | /Dist 3 | -------------------------------------------------------------------------------- /Installer/BinFiles/Prj.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "%~dp0\Data\Prj.exe" %* 3 | -------------------------------------------------------------------------------- /Installer/BinFiles/PrjEditorApi.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "%~dp0\Data\EditorApi.exe" %* 3 | -------------------------------------------------------------------------------- /Installer/BinFiles/PrjOpenInVisualStudio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Installer/BinFiles/PrjOpenInVisualStudio.bat -------------------------------------------------------------------------------- /Installer/BinFiles/PrjUpdateReleaseManifest.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | "%~dp0\Data\ReleaseManifestUpdater.exe" %* 3 | -------------------------------------------------------------------------------- /Installer/CreateInstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Installer/CreateInstaller.nsi -------------------------------------------------------------------------------- /Installer/Images/Logo-Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Installer/Images/Logo-Icon.ico -------------------------------------------------------------------------------- /Installer/Images/Sidebar.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Installer/Images/Sidebar.bmp -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/License.md -------------------------------------------------------------------------------- /Projeny.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Projeny.yaml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/README.md -------------------------------------------------------------------------------- /Source/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Source/BuildAllExes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/BuildAllExes.bat -------------------------------------------------------------------------------- /Source/BuildAllExes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/BuildAllExes.py -------------------------------------------------------------------------------- /Source/PackageBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/PackageBuild.bat -------------------------------------------------------------------------------- /Source/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/ReadMe.txt -------------------------------------------------------------------------------- /Source/Version.txt: -------------------------------------------------------------------------------- 1 | 0.3.12 2 | -------------------------------------------------------------------------------- /Source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/bin/Prj.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/bin/Prj.bat -------------------------------------------------------------------------------- /Source/bin/PrjEditorApi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/bin/PrjEditorApi.bat -------------------------------------------------------------------------------- /Source/bin/PrjUpdateReleaseManifest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/bin/PrjUpdateReleaseManifest.bat -------------------------------------------------------------------------------- /Source/bin/ProjenyOpenInVisualStudio.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/bin/ProjenyOpenInVisualStudio.bat -------------------------------------------------------------------------------- /Source/mtm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/config/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/Config.py -------------------------------------------------------------------------------- /Source/mtm/config/ConfigLoaderHardCoded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/ConfigLoaderHardCoded.py -------------------------------------------------------------------------------- /Source/mtm/config/YamlConfigLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/YamlConfigLoader.py -------------------------------------------------------------------------------- /Source/mtm/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/config/tests/ExampleConfig.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/tests/ExampleConfig.yaml -------------------------------------------------------------------------------- /Source/mtm/config/tests/ExampleConfig2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/tests/ExampleConfig2.yaml -------------------------------------------------------------------------------- /Source/mtm/config/tests/TestConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/tests/TestConfig.xml -------------------------------------------------------------------------------- /Source/mtm/config/tests/TestConfigYaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/tests/TestConfigYaml.py -------------------------------------------------------------------------------- /Source/mtm/config/tests/TestYamlWrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/config/tests/TestYamlWrite.py -------------------------------------------------------------------------------- /Source/mtm/ioc/Container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/Container.py -------------------------------------------------------------------------------- /Source/mtm/ioc/Inject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/Inject.py -------------------------------------------------------------------------------- /Source/mtm/ioc/IocAssertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/IocAssertions.py -------------------------------------------------------------------------------- /Source/mtm/ioc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/ioc/tests/TestCircularDependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/tests/TestCircularDependencies.py -------------------------------------------------------------------------------- /Source/mtm/ioc/tests/TestConditionalInjections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/tests/TestConditionalInjections.py -------------------------------------------------------------------------------- /Source/mtm/ioc/tests/TestOptionalInjection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/tests/TestOptionalInjection.py -------------------------------------------------------------------------------- /Source/mtm/ioc/tests/TestSingletonsAndTransients.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/ioc/tests/TestSingletonsAndTransients.py -------------------------------------------------------------------------------- /Source/mtm/ioc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/log/ColorConsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/ColorConsole.py -------------------------------------------------------------------------------- /Source/mtm/log/LogStreamConsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogStreamConsole.py -------------------------------------------------------------------------------- /Source/mtm/log/LogStreamConsoleErrorsOnly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogStreamConsoleErrorsOnly.py -------------------------------------------------------------------------------- /Source/mtm/log/LogStreamConsoleHeadingsOnly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogStreamConsoleHeadingsOnly.py -------------------------------------------------------------------------------- /Source/mtm/log/LogStreamFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogStreamFile.py -------------------------------------------------------------------------------- /Source/mtm/log/LogStreamStdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogStreamStdout.py -------------------------------------------------------------------------------- /Source/mtm/log/LogWatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/LogWatcher.py -------------------------------------------------------------------------------- /Source/mtm/log/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/log/Logger.py -------------------------------------------------------------------------------- /Source/mtm/log/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/util/Assert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/Assert.py -------------------------------------------------------------------------------- /Source/mtm/util/CleanUpPython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/CleanUpPython.py -------------------------------------------------------------------------------- /Source/mtm/util/CommonSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/CommonSettings.py -------------------------------------------------------------------------------- /Source/mtm/util/JunctionHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/JunctionHelper.py -------------------------------------------------------------------------------- /Source/mtm/util/JunctionUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/JunctionUtil.py -------------------------------------------------------------------------------- /Source/mtm/util/MiscUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/MiscUtil.py -------------------------------------------------------------------------------- /Source/mtm/util/PlatformUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/PlatformUtil.py -------------------------------------------------------------------------------- /Source/mtm/util/Platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/Platforms.py -------------------------------------------------------------------------------- /Source/mtm/util/ProcessRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/ProcessRunner.py -------------------------------------------------------------------------------- /Source/mtm/util/ScriptRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/ScriptRunner.py -------------------------------------------------------------------------------- /Source/mtm/util/SystemHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/SystemHelper.py -------------------------------------------------------------------------------- /Source/mtm/util/UnityHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/UnityHelper.py -------------------------------------------------------------------------------- /Source/mtm/util/Util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/Util.py -------------------------------------------------------------------------------- /Source/mtm/util/VarManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/VarManager.py -------------------------------------------------------------------------------- /Source/mtm/util/YamlSerializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/YamlSerializer.py -------------------------------------------------------------------------------- /Source/mtm/util/ZipHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/ZipHelper.py -------------------------------------------------------------------------------- /Source/mtm/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/mtm/util/tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/tests/.gitignore -------------------------------------------------------------------------------- /Source/mtm/util/tests/TestLogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/tests/TestLogger.py -------------------------------------------------------------------------------- /Source/mtm/util/tests/TestSystemHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/tests/TestSystemHelper.py -------------------------------------------------------------------------------- /Source/mtm/util/tests/TestVarManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/mtm/util/tests/TestVarManager.py -------------------------------------------------------------------------------- /Source/mtm/util/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/prj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/prj/main/CsProjAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/CsProjAnalyzer.py -------------------------------------------------------------------------------- /Source/prj/main/EditorApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/EditorApi.py -------------------------------------------------------------------------------- /Source/prj/main/OpenInVisualStudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/OpenInVisualStudio.py -------------------------------------------------------------------------------- /Source/prj/main/PackageBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/PackageBuild.py -------------------------------------------------------------------------------- /Source/prj/main/PackageConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/PackageConfig.py -------------------------------------------------------------------------------- /Source/prj/main/PackageManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/PackageManager.py -------------------------------------------------------------------------------- /Source/prj/main/Prj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/Prj.py -------------------------------------------------------------------------------- /Source/prj/main/PrjRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/PrjRunner.py -------------------------------------------------------------------------------- /Source/prj/main/ProjectConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ProjectConfig.py -------------------------------------------------------------------------------- /Source/prj/main/ProjectConfigChanger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ProjectConfigChanger.py -------------------------------------------------------------------------------- /Source/prj/main/ProjectSchemaLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ProjectSchemaLoader.py -------------------------------------------------------------------------------- /Source/prj/main/ProjenyConstants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ProjenyConstants.py -------------------------------------------------------------------------------- /Source/prj/main/ProjenyVisualStudioHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ProjenyVisualStudioHelper.py -------------------------------------------------------------------------------- /Source/prj/main/ReleaseManifestUpdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/ReleaseManifestUpdater.py -------------------------------------------------------------------------------- /Source/prj/main/UnityEditorMenuGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/UnityEditorMenuGenerator.py -------------------------------------------------------------------------------- /Source/prj/main/VisualStudioHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/VisualStudioHelper.py -------------------------------------------------------------------------------- /Source/prj/main/VisualStudioSolutionGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/main/VisualStudioSolutionGenerator.py -------------------------------------------------------------------------------- /Source/prj/main/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/prj/main/tests/.gitignore: -------------------------------------------------------------------------------- 1 | /testSchema.xml 2 | -------------------------------------------------------------------------------- /Source/prj/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | /ProjenyPlugin 2 | /templates 3 | -------------------------------------------------------------------------------- /Source/prj/plugins/ExamplePlugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/plugins/ExamplePlugin.py -------------------------------------------------------------------------------- /Source/prj/reg/AssetStoreCacheReleaseSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/AssetStoreCacheReleaseSource.py -------------------------------------------------------------------------------- /Source/prj/reg/LocalFolderReleaseSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/LocalFolderReleaseSource.py -------------------------------------------------------------------------------- /Source/prj/reg/PackageInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/PackageInfo.py -------------------------------------------------------------------------------- /Source/prj/reg/ReleaseInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/ReleaseInfo.py -------------------------------------------------------------------------------- /Source/prj/reg/ReleaseSourceManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/ReleaseSourceManager.py -------------------------------------------------------------------------------- /Source/prj/reg/RemoteServerReleaseSource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/RemoteServerReleaseSource.py -------------------------------------------------------------------------------- /Source/prj/reg/UnityPackageAnalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/UnityPackageAnalyzer.py -------------------------------------------------------------------------------- /Source/prj/reg/UnityPackageExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Source/prj/reg/UnityPackageExtractor.py -------------------------------------------------------------------------------- /Source/prj/reg/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Templates/CsProjectTemplate.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/CsProjectTemplate.csproj -------------------------------------------------------------------------------- /Templates/CsSolutionTemplate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/CsSolutionTemplate.sln -------------------------------------------------------------------------------- /Templates/Placeholder1/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/Placeholder1/Placeholder.cs -------------------------------------------------------------------------------- /Templates/Placeholder1/Placeholder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/Placeholder1/Placeholder.cs.meta -------------------------------------------------------------------------------- /Templates/Placeholder2/Placeholder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/Placeholder2/Placeholder.cs -------------------------------------------------------------------------------- /Templates/Placeholder2/Placeholder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/Placeholder2/Placeholder.cs.meta -------------------------------------------------------------------------------- /Templates/Projeny.dll.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/Projeny.dll.meta -------------------------------------------------------------------------------- /Templates/ProjenyChangeProjectMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/ProjenyChangeProjectMenu.cs.meta -------------------------------------------------------------------------------- /Templates/customProjectRootGitIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/customProjectRootGitIgnore -------------------------------------------------------------------------------- /Templates/customProjectRootSvnIgnore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/Templates/customProjectRootSvnIgnore -------------------------------------------------------------------------------- /UnityPlugin/.vimrc_l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/.vimrc_l -------------------------------------------------------------------------------- /UnityPlugin/Libraries/Unity/UnityEditor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Libraries/Unity/UnityEditor.dll -------------------------------------------------------------------------------- /UnityPlugin/Libraries/Unity/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Libraries/Unity/UnityEngine.dll -------------------------------------------------------------------------------- /UnityPlugin/Projeny.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny.sln -------------------------------------------------------------------------------- /UnityPlugin/Projeny/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Fonts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Fonts.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Fonts/Myriad Pro (25).otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Fonts/Myriad Pro (25).otf -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Fonts/Myriad Pro (25).otf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Fonts/Myriad Pro (25).otf.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Fonts/SourceCodePro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Fonts/SourceCodePro-Regular.otf -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Fonts/SourceCodePro-Regular.otf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Fonts/SourceCodePro-Regular.otf.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources/Projeny.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources/Projeny.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources/Projeny/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources/Projeny/Icon.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources/Projeny/Icon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources/Projeny/Icon.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources/Projeny/PmSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources/Projeny/PmSettings.asset -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Resources/Projeny/PmSettings.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Resources/Projeny/PmSettings.asset.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/SkinDark.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/SkinDark.guiskin -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/SkinDark.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/SkinDark.guiskin.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/box.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/box.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/box.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/button.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontal scrollbar.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontalslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontalslider.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontalslider.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/horizontalslider.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slider thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slidert humb hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slidert humb hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slidert humb hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/slidert humb hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/textfield.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/toggle.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/vertical scrollbar.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/verticalslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/verticalslider.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/verticalslider.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/verticalslider.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Dark/Sources/window.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/SkinLight.guiskin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/SkinLight.guiskin -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/SkinLight.guiskin.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/SkinLight.guiskin.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/box.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/box.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/box.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/button.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/button.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontal scrollbar.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontalslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontalslider.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontalslider.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/horizontalslider.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slider thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slidert humb hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slidert humb hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/slidert humb hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/slidert humb hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/textfield.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on active.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on active.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on active.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/toggle.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar thumb.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar thumb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar thumb.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/vertical scrollbar.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/verticalslider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/verticalslider.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/verticalslider.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/verticalslider.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/window on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/window on.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/window on.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/window on.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/window.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Skin/Light/Sources/window.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Skin/Light/Sources/window.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Clear.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Clear.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Clear.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Dark.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Dark.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Dark/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Dark/Border.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Dark/Border.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Dark/Border.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Gray.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Gray.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Gray.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/ArrowLeft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/ArrowLeft.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/ArrowLeft.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/ArrowLeft.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/ArrowRight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/ArrowRight.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/ArrowRight.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/ArrowRight.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/Border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/Border.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/Border.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/Border.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/DropdownArrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/DropdownArrow.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/Light/DropdownArrow.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/Light/DropdownArrow.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SearchIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SearchIcon.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SearchIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SearchIcon.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortDirDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortDirDown.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortDirDown.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortDirDown.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortDirUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortDirUp.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortDirUp.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortDirUp.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortIcon.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortIcon.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortIcon.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortIcon_Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortIcon_Hover.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/SortIcon_Hover.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/SortIcon_Hover.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/White.png -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Assets/Textures/White.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Assets/Textures/White.png.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Assert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Assert.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Assert.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Assert.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/AsyncProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/AsyncProcessor.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/AsyncProcessor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/AsyncProcessor.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Coroutine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Coroutine.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Coroutine.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Coroutine.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/DateTimeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/DateTimeUtil.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/DateTimeUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/DateTimeUtil.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/DictionaryExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/DictionaryExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/DictionaryExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventDispatcher.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventDispatcher.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventDispatcher.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventHandlerKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventHandlerKey.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventHandlerKey.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventHandlerKey.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventManager.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/EventManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/EventManager.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/IFrameCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/IFrameCounter.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/IFrameCounter.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/IFrameCounter.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/TimerPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/TimerPool.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Events/TimerPool.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Events/TimerPool.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ExceptionExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ExceptionExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ExceptionExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ImguiUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ImguiUtil.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ImguiUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ImguiUtil.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/JunctionPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/JunctionPoint.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/JunctionPoint.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/JunctionPoint.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/LinqExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/LinqExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/LinqExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Log.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Log.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Log.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/MiscExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/MiscExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/MiscExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/MiscExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/MiscUnityEditorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/MiscUnityEditorExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/MiscUnityEditorExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/MiscUnityEditorExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/PathUtil.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/PathUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/PathUtil.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/PreserveAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/PreserveAttribute.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/PreserveAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/PreserveAttribute.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ProfileBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ProfileBlock.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/ProfileBlock.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/ProfileBlock.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/StringExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/StringExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/StringExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Tuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Tuple.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/Tuple.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/Tuple.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/TypeExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Internal/TypeExtensions.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Internal/TypeExtensions.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/PackageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/PackageInfo.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/PackageInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/PackageInfo.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/ProjectConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/ProjectConfig.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/ProjectConfig.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/ProjectConfig.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/ReleaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/ReleaseInfo.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Models/ReleaseInfo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Models/ReleaseInfo.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjHelper.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjHelper.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjHelper.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjInterface.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjInterface.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjInterface.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjPathVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjPathVars.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/PrjPathVars.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/PrjPathVars.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyConfigValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyConfigValidator.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyConfigValidator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyConfigValidator.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyEditorMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyEditorMenu.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyEditorMenu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyEditorMenu.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyEditorUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyEditorUtil.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/ProjenyEditorUtil.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/ProjenyEditorUtil.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Serialization.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Serialization.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Serialization/PrjSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Serialization/PrjSerializer.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Serialization/PrjSerializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Serialization/PrjSerializer.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Serialization/YamlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Serialization/YamlSerializer.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Main/Serialization/YamlSerializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Main/Serialization/YamlSerializer.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmDragDropHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmDragDropHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmDragDropHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmDragDropHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmInputHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmInputHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmInputHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmInputHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmModelViewSyncer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmModelViewSyncer.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmModelViewSyncer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmModelViewSyncer.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmPackageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmPackageHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmPackageHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmPackageHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmPackageViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmPackageViewHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmPackageViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmPackageViewHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmProjectViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmProjectViewHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmProjectViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmProjectViewHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmReleasesViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmReleasesViewHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmReleasesViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmReleasesViewHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewAsyncHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewAsyncHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewAsyncHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewAsyncHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewErrorHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewErrorHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewErrorHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewHandlerCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewHandlerCommon.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmViewHandlerCommon.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmViewHandlerCommon.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmVsSolutionViewHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmVsSolutionViewHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Controller/PmVsSolutionViewHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Controller/PmVsSolutionViewHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmModel.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmModel.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmModel.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmProjectHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmProjectHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmProjectHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmProjectHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmReleasesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmReleasesHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/PmReleasesHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/PmReleasesHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/UpmCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/UpmCommandHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/Model/UpmCommandHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/Model/UpmCommandHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmCompositionRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmCompositionRoot.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmCompositionRoot.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmCompositionRoot.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmCreateNewProjectPopupHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmCreateNewProjectPopupHandler.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmCreateNewProjectPopupHandler.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmCreateNewProjectPopupHandler.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmSettings.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmSettings.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmSettings.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmWindow.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmWindow.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmWindow.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmWindowInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmWindowInitializer.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/PmWindowInitializer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/PmWindowInitializer.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/View.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/View.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/View/DragList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/View/DragList.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/View/DragList.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/View/DragList.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/View/PmView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/View/PmView.cs -------------------------------------------------------------------------------- /UnityPlugin/Projeny/PackageManager/View/PmView.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/PackageManager/View/PmView.cs.meta -------------------------------------------------------------------------------- /UnityPlugin/Projeny/Projeny.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/Projeny/Projeny.csproj -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /obj 3 | -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/AnchorNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/AnchorNotFoundException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/CharacterAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/CharacterAnalyzer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Constants.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Cursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Cursor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/DuplicateAnchorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/DuplicateAnchorException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Emitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Emitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/EmitterState.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/EventReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/EventReader.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/AnchorAlias.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/Comment.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/DocumentEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/DocumentStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/EventType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/EventType.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/IParsingEventVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/IParsingEventVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/MappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/MappingEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/MappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/MappingStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/MappingStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/MappingStyle.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/NodeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/NodeEvent.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/ParsingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/ParsingEvent.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/Scalar.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/SequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/SequenceEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/SequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/SequenceStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/SequenceStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/SequenceStyle.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/StreamEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Events/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Events/StreamStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/FakeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/FakeList.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/ForwardAnchorNotSupportedException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/HashCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/HashCode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/IEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/IEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/ILookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/ILookAheadBuffer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/IParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/IParser.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/IScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/IScanner.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/InsertionQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/InsertionQueue.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/LookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/LookAheadBuffer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Mark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Mark.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/MergingParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/MergingParser.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Parser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Parser.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/ParserState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/ParserState.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/ScalarStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/ScalarStyle.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Scanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Scanner.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/SemanticErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/SemanticErrorException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/SimpleKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/SimpleKey.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/StringLookAheadBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/StringLookAheadBuffer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/SyntaxErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/SyntaxErrorException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/TagDirectiveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/TagDirectiveCollection.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Anchor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Anchor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/AnchorAlias.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/AnchorAlias.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/BlockEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/BlockEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/BlockEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/BlockEntry.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/BlockMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/BlockMappingStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/BlockSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/BlockSequenceStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Comment.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/DocumentEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/DocumentEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/DocumentStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/DocumentStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/FlowEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/FlowEntry.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/FlowMappingEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/FlowMappingEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/FlowMappingStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/FlowMappingStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/FlowSequenceEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/FlowSequenceStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/FlowSequenceStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Key.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Key.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Scalar.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/StreamEnd.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/StreamEnd.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/StreamStart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/StreamStart.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Tag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Tag.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/TagDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/TagDirective.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Token.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Token.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/Value.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/Value.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Tokens/VersionDirective.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Tokens/VersionDirective.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/Version.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Core/YamlException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Core/YamlException.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Helpers/Portability.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Helpers/Portability.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/DocumentLoadingState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/DocumentLoadingState.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/EmitterState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/EmitterState.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/IYamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/IYamlVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlAliasNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlAliasNode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlDocument.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlMappingNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlMappingNode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlNode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlNodeIdentityEqualityComparer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlScalarNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlScalarNode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlSequenceNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlSequenceNode.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlStream.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/RepresentationModel/YamlVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/RepresentationModel/YamlVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Converters/GuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Converters/GuidConverter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Deserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Deserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/EventEmitters/ChainedEventEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/EventEmitters/JsonEventEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/EventEmitters/TypeAssigningEventEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/EventEmitters/WriterEventEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/EventInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/EventInfo.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IAliasProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IAliasProvider.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IEventEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IEventEmitter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/INamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/INamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/INodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/INodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/INodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/INodeTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IObjectDescriptor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IObjectFactory.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IPropertyDescriptor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ITypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ITypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ITypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ITypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IValueDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IValuePromise.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IValuePromise.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IYamlSerializable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IYamlSerializable.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/IYamlTypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/IYamlTypeConverter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NamingConventions/CamelCaseNamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NamingConventions/HyphenatedNamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NamingConventions/NullNamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NamingConventions/PascalCaseNamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NamingConventions/UnderscoredNamingConvention.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ArrayNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/EnumerableNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/GenericCollectionNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/GenericCollectionNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/GenericDictionaryNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/GenericDictionaryNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NonGenericDictionaryNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NonGenericDictionaryNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NonGenericListNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NonGenericListNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/NullNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ObjectNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/ScalarNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeDeserializers/TypeConverterNodeDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/DefaultContainersNodeTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/TagNodeTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/NodeTypeResolvers/TypeNameInTagNodeTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectDescriptor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectFactories/DefaultObjectFactory.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectFactories/LambdaObjectFactory.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/FullObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphTraversalStrategies/RoundtripObjectGraphTraversalStrategy.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigner.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/AnchorAssigningObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/ChainedObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/CustomSerializationObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/DefaultExclusiveObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ObjectGraphVisitors/EmittingObjectGraphVisitor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/PropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/PropertyDescriptor.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/SerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/SerializationOptions.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Serializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/StreamFragment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/StreamFragment.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TagMappings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TagMappings.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeInspectors/CachedTypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeInspectors/NamingConventionTypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeInspectors/ReadableAndWritablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeInspectors/ReadablePropertiesTypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeInspectors/TypeInspectorSkeleton.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeResolvers/DynamicTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/TypeResolvers/StaticTypeResolver.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/IPostDeserializationCallback.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/ObjectAnchorCollection.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/ReflectionUtility.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/SerializerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/SerializerState.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/TypeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/TypeConverter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/Utilities/YamlTypeConverters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/Utilities/YamlTypeConverters.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ValueDeserializers/AliasValueDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/ValueDeserializers/NodeValueDeserializer.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/YamlAliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/YamlAliasAttribute.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/YamlAttributesTypeInspector.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/YamlFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/YamlFormatter.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/YamlIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/YamlIgnoreAttribute.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/Serialization/YamlMember.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/Serialization/YamlMember.cs -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/YamlDotNet.Signed.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/YamlDotNet.Signed.nuspec -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/YamlDotNet.Unsigned.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/YamlDotNet.Unsigned.nuspec -------------------------------------------------------------------------------- /UnityPlugin/YamlDotNet/YamlDotNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modesttree/Projeny/HEAD/UnityPlugin/YamlDotNet/YamlDotNet.csproj --------------------------------------------------------------------------------