├── .gitignore ├── LICENCE.txt ├── README.markdown └── src ├── Meshellator.Tests ├── Importers │ ├── 3ds │ │ └── Autodesk3dsTest.cs │ ├── Obj │ │ └── Objects │ │ │ └── Parsers │ │ │ └── FaceParserTests.cs │ └── Ply │ │ └── PlyTests.cs ├── MeshUtilityTests.cs ├── Meshellator.Tests.csproj ├── Models │ ├── 3ds │ │ ├── 85-nissan-fairlady.3DS │ │ └── Face │ │ │ ├── Jane_so1.jpg │ │ │ ├── Jane_so2.jpg │ │ │ ├── Jane_sol.jpg │ │ │ ├── Jane_solid_3ds.3ds │ │ │ └── readme.txt │ └── Ply │ │ ├── Bunny.ply │ │ └── Wuson.ply ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── Meshellator.Viewer.sln ├── Meshellator.Viewer ├── App.config ├── App.xaml ├── App.xaml.cs ├── Framework │ ├── Rendering │ │ ├── ConversionExtensions.cs │ │ ├── Decorators │ │ │ ├── BlurComponent.cs │ │ │ ├── DecoratorBase.cs │ │ │ ├── FillModeDecorator.cs │ │ │ ├── IDecorator.cs │ │ │ ├── NormalsDecorator.cs │ │ │ ├── RenderOptionsDecorator.cs │ │ │ ├── ShadowDecorator.cs │ │ │ └── Tulips.jpg │ │ ├── Effects │ │ │ ├── EffectParameter.cs │ │ │ ├── EffectUtility.cs │ │ │ ├── EffectWrapperBase.cs │ │ │ ├── GaussianBlurEffect.cs │ │ │ ├── GaussianBlurEffect.fx │ │ │ ├── LineEffect.cs │ │ │ ├── LineEffect.fx │ │ │ ├── SimpleEffect.cs │ │ │ └── SimpleEffect.fx │ │ ├── FillMode.cs │ │ ├── GraphicsDeviceService.cs │ │ ├── IGraphicsDeviceService.cs │ │ ├── Model.cs │ │ ├── ModelConverter.cs │ │ ├── ModelMesh.cs │ │ ├── RenderParameters.cs │ │ ├── RenderSettings.cs │ │ ├── RenderWindow.cs │ │ ├── Renderer.cs │ │ ├── VertexPositionNormalTexture.cs │ │ └── VertexTransformedPositionTexture.cs │ ├── Results │ │ └── RenderSettingsResult.cs │ ├── Scenes │ │ ├── MaterialViewModel.cs │ │ └── SceneViewModel.cs │ └── Services │ │ └── IModelEditor.cs ├── Meshellator.Viewer.csproj ├── Modules │ ├── ModelEditor │ │ ├── EditorProvider.cs │ │ ├── ViewModels │ │ │ └── ModelEditorViewModel.cs │ │ └── Views │ │ │ ├── ModelEditorView.xaml │ │ │ ├── ModelEditorView.xaml.cs │ │ │ └── Trackball.cs │ ├── ModelExplorer │ │ ├── IModelExplorer.cs │ │ ├── Module.cs │ │ ├── ViewModels │ │ │ └── ModelExplorerViewModel.cs │ │ └── Views │ │ │ ├── ModelExplorerView.xaml │ │ │ └── ModelExplorerView.xaml.cs │ ├── Output │ │ └── ImportLogger.cs │ └── Startup │ │ └── Module.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── packages.config ├── Meshellator.sln ├── Meshellator ├── AssetImporterAttribute.cs ├── AssetImporterBase.cs ├── Generators │ └── NormalLinesGenerator.cs ├── IAssetImporter.cs ├── IAssetImporterMetadata.cs ├── ILogger.cs ├── Importers │ ├── 3ds │ │ ├── Autodesk3dsImporter.cs │ │ ├── Camera3ds.cs │ │ ├── Color3ds.cs │ │ ├── Decode3ds.cs │ │ ├── Exception3ds.cs │ │ ├── Face3ds.cs │ │ ├── FaceMat3ds.cs │ │ ├── HideKey3ds.cs │ │ ├── HideTrack3ds.cs │ │ ├── Licence.txt │ │ ├── Light3ds.cs │ │ ├── Material3ds.cs │ │ ├── Mesh3ds.cs │ │ ├── MorphKey3ds.cs │ │ ├── MorphTrack3ds.cs │ │ ├── PKey3ds.cs │ │ ├── PTrack3ds.cs │ │ ├── RotationKey3ds.cs │ │ ├── RotationTrack3ds.cs │ │ ├── Scene3ds.cs │ │ ├── SplineKey3ds.cs │ │ ├── TexCoords3ds.cs │ │ ├── TextDecode3ds.cs │ │ ├── Texture3ds.cs │ │ ├── TextureMappingMode3ds.cs │ │ ├── Track3ds.cs │ │ ├── Utils3ds.cs │ │ ├── Vertex3ds.cs │ │ ├── XYZKey3ds.cs │ │ └── XYZTrack3ds.cs │ ├── Nff │ │ ├── NffImporter.cs │ │ └── Parsers │ │ │ ├── CommentParser.cs │ │ │ ├── CubeParser.cs │ │ │ ├── CylinderParser.cs │ │ │ ├── DefaultParser.cs │ │ │ ├── LineParser.cs │ │ │ ├── LineParserFactory.cs │ │ │ ├── MaterialParser.cs │ │ │ ├── ParserContext.cs │ │ │ ├── PlaneParser.cs │ │ │ ├── PrimitiveParser.cs │ │ │ ├── SphereParser.cs │ │ │ ├── TeapotParser.cs │ │ │ ├── TessellationParser.cs │ │ │ └── TorusParser.cs │ ├── Obj │ │ ├── Licence.txt │ │ ├── ObjImporter.cs │ │ └── Objects │ │ │ ├── Face.cs │ │ │ ├── FaceType.cs │ │ │ ├── Group.cs │ │ │ ├── Material.cs │ │ │ ├── Parsers │ │ │ ├── CommentParser.cs │ │ │ ├── DefaultParser.cs │ │ │ ├── LineParser.cs │ │ │ ├── LineParserFactory.cs │ │ │ ├── Mtl │ │ │ │ ├── KaParser.cs │ │ │ │ ├── KdMapParser.cs │ │ │ │ ├── KdParser.cs │ │ │ │ ├── KsParser.cs │ │ │ │ ├── MaterialFileParser.cs │ │ │ │ ├── MaterialParser.cs │ │ │ │ ├── MtlLineParserFactory.cs │ │ │ │ └── NsParser.cs │ │ │ ├── NormalParser.cs │ │ │ └── Obj │ │ │ │ ├── FaceParser.cs │ │ │ │ ├── FreeFormParser.cs │ │ │ │ ├── GroupParser.cs │ │ │ │ ├── MaterialParser.cs │ │ │ │ ├── ObjLineParserFactory.cs │ │ │ │ ├── TextureCoordinateParser.cs │ │ │ │ └── VertexParser.cs │ │ │ ├── TextureCoordinate.cs │ │ │ ├── Vertex.cs │ │ │ └── WavefrontObject.cs │ └── Ply │ │ ├── Licence.txt │ │ ├── PlyElement.cs │ │ ├── PlyElementValue.cs │ │ ├── PlyFile.cs │ │ ├── PlyFileType.cs │ │ ├── PlyImporter.cs │ │ ├── PlyProperty.cs │ │ └── PlyPropertyType.cs ├── Material.cs ├── Mesh.cs ├── MeshUtility.cs ├── Meshellator.csproj ├── Meshellator.nuspec ├── MeshellatorLoader.cs ├── Primitives │ ├── BasicPrimitiveTessellator.cs │ ├── BezierPatch.cs │ ├── BezierPrimitiveTessellator.cs │ ├── CubeTessellator.cs │ ├── CylinderTessellator.cs │ ├── PlaneTessellator.cs │ ├── PrimitiveTessellator.cs │ ├── SphereTessellator.cs │ ├── TeapotTessellator.cs │ └── TorusTessellator.cs ├── Properties │ └── AssemblyInfo.cs ├── Scene.cs ├── TextureMapMode.cs └── packages.config └── packages ├── AvalonDock.2.0.1114 ├── AvalonDock.2.0.1114.nupkg ├── lib │ └── net40 │ │ ├── AvalonDock.Themes.VS2010.dll │ │ ├── AvalonDock.Themes.VS2010.pdb │ │ ├── AvalonDock.XML │ │ ├── AvalonDock.dll │ │ └── AvalonDock.pdb └── misc │ └── AvalonDock_Samples.zip ├── Caliburn.Micro.1.3.1 ├── Caliburn.Micro.1.3.1.nupkg ├── lib │ ├── WinRT45 │ │ ├── Caliburn.Micro.Extensions.dll │ │ ├── Caliburn.Micro.Extensions.pdb │ │ ├── Caliburn.Micro.Extensions.xml │ │ ├── Caliburn.Micro.dll │ │ ├── Caliburn.Micro.pdb │ │ └── Caliburn.Micro.xml │ ├── net40 │ │ ├── Caliburn.Micro.dll │ │ ├── Caliburn.Micro.pdb │ │ ├── Caliburn.Micro.xml │ │ ├── System.Windows.Interactivity.dll │ │ └── System.Windows.Interactivity.xml │ ├── sl4-windowsphone71 │ │ ├── Caliburn.Micro.Extensions.dll │ │ ├── Caliburn.Micro.Extensions.pdb │ │ ├── Caliburn.Micro.Extensions.xml │ │ ├── Caliburn.Micro.dll │ │ ├── Caliburn.Micro.pdb │ │ ├── Caliburn.Micro.xml │ │ ├── System.Windows.Interactivity.dll │ │ ├── System.Windows.Interactivity.xml │ │ ├── de │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── en │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── es │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── fr │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── it │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── ja │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── ko │ │ │ └── System.Windows.Interactivity.resources.dll │ │ ├── zh-Hans │ │ │ └── System.Windows.Interactivity.resources.dll │ │ └── zh-Hant │ │ │ └── System.Windows.Interactivity.resources.dll │ ├── sl4 │ │ ├── Caliburn.Micro.dll │ │ ├── Caliburn.Micro.pdb │ │ ├── Caliburn.Micro.xml │ │ ├── System.Windows.Controls.dll │ │ ├── System.Windows.Controls.xml │ │ ├── System.Windows.Interactivity.dll │ │ ├── System.Windows.Interactivity.xml │ │ ├── ar │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── bg │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ca │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── cs │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── da │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── de │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── el │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── es │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── et │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── eu │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── fi │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── fr │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── he │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── hr │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── hu │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── id │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── it │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ja │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ko │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── lt │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── lv │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ms │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── nl │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── no │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── pl │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── pt-BR │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── pt │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ro │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── ru │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── sk │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── sl │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── sr-Cyrl-CS │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── sr-Latn-CS │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── sv │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── th │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── tr │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── uk │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── vi │ │ │ └── System.Windows.Controls.resources.dll │ │ ├── zh-Hans │ │ │ └── System.Windows.Controls.resources.dll │ │ └── zh-Hant │ │ │ └── System.Windows.Controls.resources.dll │ └── sl5 │ │ ├── Caliburn.Micro.dll │ │ ├── Caliburn.Micro.pdb │ │ ├── Caliburn.Micro.xml │ │ ├── System.Windows.Controls.dll │ │ ├── System.Windows.Controls.xml │ │ ├── System.Windows.Interactivity.dll │ │ ├── System.Windows.Interactivity.xml │ │ ├── ar │ │ └── System.Windows.Controls.resources.dll │ │ ├── bg │ │ └── System.Windows.Controls.resources.dll │ │ ├── ca │ │ └── System.Windows.Controls.resources.dll │ │ ├── cs │ │ └── System.Windows.Controls.resources.dll │ │ ├── da │ │ └── System.Windows.Controls.resources.dll │ │ ├── de │ │ └── System.Windows.Controls.resources.dll │ │ ├── el │ │ └── System.Windows.Controls.resources.dll │ │ ├── es │ │ └── System.Windows.Controls.resources.dll │ │ ├── et │ │ └── System.Windows.Controls.resources.dll │ │ ├── eu │ │ └── System.Windows.Controls.resources.dll │ │ ├── fi │ │ └── System.Windows.Controls.resources.dll │ │ ├── fr │ │ └── System.Windows.Controls.resources.dll │ │ ├── he │ │ └── System.Windows.Controls.resources.dll │ │ ├── hr │ │ └── System.Windows.Controls.resources.dll │ │ ├── hu │ │ └── System.Windows.Controls.resources.dll │ │ ├── id │ │ └── System.Windows.Controls.resources.dll │ │ ├── it │ │ └── System.Windows.Controls.resources.dll │ │ ├── ja │ │ └── System.Windows.Controls.resources.dll │ │ ├── ko │ │ └── System.Windows.Controls.resources.dll │ │ ├── lt │ │ └── System.Windows.Controls.resources.dll │ │ ├── lv │ │ └── System.Windows.Controls.resources.dll │ │ ├── ms │ │ └── System.Windows.Controls.resources.dll │ │ ├── nl │ │ └── System.Windows.Controls.resources.dll │ │ ├── no │ │ └── System.Windows.Controls.resources.dll │ │ ├── pl │ │ └── System.Windows.Controls.resources.dll │ │ ├── pt-BR │ │ └── System.Windows.Controls.resources.dll │ │ ├── pt │ │ └── System.Windows.Controls.resources.dll │ │ ├── ro │ │ └── System.Windows.Controls.resources.dll │ │ ├── ru │ │ └── System.Windows.Controls.resources.dll │ │ ├── sk │ │ └── System.Windows.Controls.resources.dll │ │ ├── sl │ │ └── System.Windows.Controls.resources.dll │ │ ├── sr-Cyrl-CS │ │ └── System.Windows.Controls.resources.dll │ │ ├── sr-Latn-CS │ │ └── System.Windows.Controls.resources.dll │ │ ├── sv │ │ └── System.Windows.Controls.resources.dll │ │ ├── th │ │ └── System.Windows.Controls.resources.dll │ │ ├── tr │ │ └── System.Windows.Controls.resources.dll │ │ ├── uk │ │ └── System.Windows.Controls.resources.dll │ │ ├── vi │ │ └── System.Windows.Controls.resources.dll │ │ ├── zh-Hans │ │ └── System.Windows.Controls.resources.dll │ │ └── zh-Hant │ │ └── System.Windows.Controls.resources.dll └── tools │ ├── install.ps1 │ ├── net40 │ ├── AppBootstrapper.cs │ ├── IShell.cs │ ├── ShellView.xaml │ └── ShellViewModel.cs │ ├── sl4-windowsphone71 │ ├── AppBootstrapper.cs │ └── MainPageViewModel.cs │ ├── sl4 │ ├── AppBootstrapper.cs │ ├── IShell.cs │ ├── ShellView.xaml │ └── ShellViewModel.cs │ └── sl5 │ ├── AppBootstrapper.cs │ ├── IShell.cs │ ├── ShellView.xaml │ └── ShellViewModel.cs ├── Extended.Wpf.Toolkit.1.7.0 ├── Extended.Wpf.Toolkit.1.7.0.nupkg ├── lib │ ├── net35 │ │ ├── WPFToolkit.Extended.dll │ │ └── WPFToolkit.dll │ └── net40 │ │ └── WPFToolkit.Extended.dll └── tools │ └── install.ps1 ├── GeminiWpf.0.1.2 ├── GeminiWpf.0.1.2.nupkg ├── LICENCE.txt └── lib │ └── net40 │ └── Gemini.dll ├── NUnit.2.6.1 ├── NUnit.2.6.1.nupkg ├── lib │ ├── nunit.framework.dll │ └── nunit.framework.xml └── license.txt ├── Nexus.2.1.0 ├── LICENCE.txt ├── Nexus.2.1.0.nupkg └── lib │ └── net40 │ └── Nexus.dll ├── Rx-Core.2.0.20823 ├── Rx-Core.2.0.20823.nupkg └── lib │ ├── Net40 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── Net45 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ ├── SL5 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll │ └── WinRT45 │ ├── System.Reactive.Core.XML │ └── System.Reactive.Core.dll ├── Rx-Interfaces.2.0.20823 ├── Rx-Interfaces.2.0.20823.nupkg └── lib │ ├── Net40 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── Net45 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ ├── SL5 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll │ └── WinRT45 │ ├── System.Reactive.Interfaces.XML │ └── System.Reactive.Interfaces.dll ├── Rx-Linq.2.0.20823 ├── Rx-Linq.2.0.20823.nupkg └── lib │ ├── Net40 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── Net45 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── SL4-WindowsPhone71 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ ├── SL5 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll │ └── WinRT45 │ ├── System.Reactive.Linq.XML │ └── System.Reactive.Linq.dll ├── SharpDX.2.3.1 ├── SharpDX.2.3.1.nupkg └── lib │ ├── net20 │ ├── SharpDX.dll │ └── SharpDX.xml │ ├── net40 │ ├── SharpDX.dll │ └── SharpDX.xml │ └── winrt │ ├── SharpDX.dll │ └── SharpDX.xml ├── SharpDX.Direct3D9.2.3.1 ├── SharpDX.Direct3D9.2.3.1.nupkg └── lib │ ├── net20 │ ├── SharpDX.Direct3D9.dll │ └── SharpDX.Direct3D9.xml │ └── net40 │ ├── SharpDX.Direct3D9.dll │ └── SharpDX.Direct3D9.xml └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/README.markdown -------------------------------------------------------------------------------- /src/Meshellator.Tests/Importers/3ds/Autodesk3dsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Importers/3ds/Autodesk3dsTest.cs -------------------------------------------------------------------------------- /src/Meshellator.Tests/Importers/Obj/Objects/Parsers/FaceParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Importers/Obj/Objects/Parsers/FaceParserTests.cs -------------------------------------------------------------------------------- /src/Meshellator.Tests/Importers/Ply/PlyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Importers/Ply/PlyTests.cs -------------------------------------------------------------------------------- /src/Meshellator.Tests/MeshUtilityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/MeshUtilityTests.cs -------------------------------------------------------------------------------- /src/Meshellator.Tests/Meshellator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Meshellator.Tests.csproj -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/85-nissan-fairlady.3DS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/3ds/85-nissan-fairlady.3DS -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/Face/Jane_so1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/3ds/Face/Jane_so1.jpg -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/Face/Jane_so2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/3ds/Face/Jane_so2.jpg -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/Face/Jane_sol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/3ds/Face/Jane_sol.jpg -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/Face/Jane_solid_3ds.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/3ds/Face/Jane_solid_3ds.3ds -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/3ds/Face/readme.txt: -------------------------------------------------------------------------------- 1 | Downloaded from http://facegen.com/sampleExports.htm -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/Ply/Bunny.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/Ply/Bunny.ply -------------------------------------------------------------------------------- /src/Meshellator.Tests/Models/Ply/Wuson.ply: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Models/Ply/Wuson.ply -------------------------------------------------------------------------------- /src/Meshellator.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Meshellator.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Tests/packages.config -------------------------------------------------------------------------------- /src/Meshellator.Viewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer.sln -------------------------------------------------------------------------------- /src/Meshellator.Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/App.config -------------------------------------------------------------------------------- /src/Meshellator.Viewer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/App.xaml -------------------------------------------------------------------------------- /src/Meshellator.Viewer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/App.xaml.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/ConversionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/ConversionExtensions.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/BlurComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/BlurComponent.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/DecoratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/DecoratorBase.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/FillModeDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/FillModeDecorator.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/IDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/IDecorator.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/NormalsDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/NormalsDecorator.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/RenderOptionsDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/RenderOptionsDecorator.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/ShadowDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/ShadowDecorator.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Decorators/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Decorators/Tulips.jpg -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/EffectParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/EffectParameter.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/EffectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/EffectUtility.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/EffectWrapperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/EffectWrapperBase.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/GaussianBlurEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/GaussianBlurEffect.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/GaussianBlurEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/GaussianBlurEffect.fx -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/LineEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/LineEffect.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/LineEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/LineEffect.fx -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/SimpleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/SimpleEffect.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Effects/SimpleEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Effects/SimpleEffect.fx -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/FillMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/FillMode.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/GraphicsDeviceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/GraphicsDeviceService.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/IGraphicsDeviceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/IGraphicsDeviceService.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Model.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/ModelConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/ModelConverter.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/ModelMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/ModelMesh.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/RenderParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/RenderParameters.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/RenderSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/RenderSettings.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/RenderWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/RenderWindow.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/Renderer.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/VertexPositionNormalTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/VertexPositionNormalTexture.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Rendering/VertexTransformedPositionTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Rendering/VertexTransformedPositionTexture.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Results/RenderSettingsResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Results/RenderSettingsResult.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Scenes/MaterialViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Scenes/MaterialViewModel.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Scenes/SceneViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Scenes/SceneViewModel.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Framework/Services/IModelEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Framework/Services/IModelEditor.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Meshellator.Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Meshellator.Viewer.csproj -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelEditor/EditorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelEditor/EditorProvider.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelEditor/ViewModels/ModelEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelEditor/ViewModels/ModelEditorViewModel.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelEditor/Views/ModelEditorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelEditor/Views/ModelEditorView.xaml -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelEditor/Views/ModelEditorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelEditor/Views/ModelEditorView.xaml.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelEditor/Views/Trackball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelEditor/Views/Trackball.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelExplorer/IModelExplorer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelExplorer/IModelExplorer.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelExplorer/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelExplorer/Module.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelExplorer/ViewModels/ModelExplorerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelExplorer/ViewModels/ModelExplorerViewModel.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelExplorer/Views/ModelExplorerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelExplorer/Views/ModelExplorerView.xaml -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/ModelExplorer/Views/ModelExplorerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/ModelExplorer/Views/ModelExplorerView.xaml.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/Output/ImportLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/Output/ImportLogger.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Modules/Startup/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Modules/Startup/Module.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Meshellator.Viewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Meshellator.Viewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.Viewer/packages.config -------------------------------------------------------------------------------- /src/Meshellator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator.sln -------------------------------------------------------------------------------- /src/Meshellator/AssetImporterAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/AssetImporterAttribute.cs -------------------------------------------------------------------------------- /src/Meshellator/AssetImporterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/AssetImporterBase.cs -------------------------------------------------------------------------------- /src/Meshellator/Generators/NormalLinesGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Generators/NormalLinesGenerator.cs -------------------------------------------------------------------------------- /src/Meshellator/IAssetImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/IAssetImporter.cs -------------------------------------------------------------------------------- /src/Meshellator/IAssetImporterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/IAssetImporterMetadata.cs -------------------------------------------------------------------------------- /src/Meshellator/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/ILogger.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Autodesk3dsImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Autodesk3dsImporter.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Camera3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Camera3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Color3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Color3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Decode3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Decode3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Exception3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Exception3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Face3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Face3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/FaceMat3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/FaceMat3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/HideKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/HideKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/HideTrack3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/HideTrack3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Licence.txt -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Light3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Light3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Material3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Material3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Mesh3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Mesh3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/MorphKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/MorphKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/MorphTrack3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/MorphTrack3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/PKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/PKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/PTrack3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/PTrack3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/RotationKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/RotationKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/RotationTrack3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/RotationTrack3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Scene3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Scene3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/SplineKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/SplineKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/TexCoords3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/TexCoords3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/TextDecode3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/TextDecode3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Texture3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Texture3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/TextureMappingMode3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/TextureMappingMode3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Track3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Track3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Utils3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Utils3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/Vertex3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/Vertex3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/XYZKey3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/XYZKey3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/3ds/XYZTrack3ds.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/3ds/XYZTrack3ds.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/NffImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/NffImporter.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/CommentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/CommentParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/CubeParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/CubeParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/CylinderParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/CylinderParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/DefaultParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/DefaultParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/LineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/LineParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/LineParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/LineParserFactory.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/MaterialParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/MaterialParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/ParserContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/ParserContext.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/PlaneParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/PlaneParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/PrimitiveParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/PrimitiveParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/SphereParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/SphereParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/TeapotParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/TeapotParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/TessellationParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/TessellationParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Nff/Parsers/TorusParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Nff/Parsers/TorusParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Licence.txt -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/ObjImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/ObjImporter.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Face.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/FaceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/FaceType.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Group.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Group.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Material.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/CommentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/CommentParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/DefaultParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/DefaultParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/LineParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/LineParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/LineParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/LineParserFactory.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KaParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KaParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KdMapParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KdMapParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KdParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KdParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/KsParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MaterialFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MaterialFileParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MaterialParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MaterialParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MtlLineParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/MtlLineParserFactory.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/NsParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Mtl/NsParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/NormalParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/NormalParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/FaceParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/FaceParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/FreeFormParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/FreeFormParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/GroupParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/GroupParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/MaterialParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/MaterialParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/ObjLineParserFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/ObjLineParserFactory.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/TextureCoordinateParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/TextureCoordinateParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Parsers/Obj/VertexParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Parsers/Obj/VertexParser.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/TextureCoordinate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/TextureCoordinate.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/Vertex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/Vertex.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Obj/Objects/WavefrontObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Obj/Objects/WavefrontObject.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/Licence.txt: -------------------------------------------------------------------------------- 1 | Code adapted from Greg Turk's PLY importer: 2 | http://paulbourke.net/dataformats/ply/ -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyElement.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyElementValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyElementValue.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyFile.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyFileType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyFileType.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyImporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyImporter.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyProperty.cs -------------------------------------------------------------------------------- /src/Meshellator/Importers/Ply/PlyPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Importers/Ply/PlyPropertyType.cs -------------------------------------------------------------------------------- /src/Meshellator/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Material.cs -------------------------------------------------------------------------------- /src/Meshellator/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Mesh.cs -------------------------------------------------------------------------------- /src/Meshellator/MeshUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/MeshUtility.cs -------------------------------------------------------------------------------- /src/Meshellator/Meshellator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Meshellator.csproj -------------------------------------------------------------------------------- /src/Meshellator/Meshellator.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Meshellator.nuspec -------------------------------------------------------------------------------- /src/Meshellator/MeshellatorLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/MeshellatorLoader.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/BasicPrimitiveTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/BasicPrimitiveTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/BezierPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/BezierPatch.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/BezierPrimitiveTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/BezierPrimitiveTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/CubeTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/CubeTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/CylinderTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/CylinderTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/PlaneTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/PlaneTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/PrimitiveTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/PrimitiveTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/SphereTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/SphereTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/TeapotTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/TeapotTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Primitives/TorusTessellator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Primitives/TorusTessellator.cs -------------------------------------------------------------------------------- /src/Meshellator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Meshellator/Scene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/Scene.cs -------------------------------------------------------------------------------- /src/Meshellator/TextureMapMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/TextureMapMode.cs -------------------------------------------------------------------------------- /src/Meshellator/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/Meshellator/packages.config -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/AvalonDock.2.0.1114.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/AvalonDock.2.0.1114.nupkg -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.Themes.VS2010.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.Themes.VS2010.dll -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.Themes.VS2010.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.Themes.VS2010.pdb -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.XML -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.dll -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/lib/net40/AvalonDock.pdb -------------------------------------------------------------------------------- /src/packages/AvalonDock.2.0.1114/misc/AvalonDock_Samples.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/AvalonDock.2.0.1114/misc/AvalonDock_Samples.zip -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/Caliburn.Micro.1.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/Caliburn.Micro.1.3.1.nupkg -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.Extensions.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/WinRT45/Caliburn.Micro.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/net40/Caliburn.Micro.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/net40/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/net40/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/net40/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/net40/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.Extensions.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/Caliburn.Micro.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/de/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/de/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/en/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/en/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/es/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/es/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/fr/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/fr/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/it/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/it/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/ja/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/ja/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/ko/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/ko/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/zh-Hans/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/zh-Hans/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/zh-Hant/System.Windows.Interactivity.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4-windowsphone71/zh-Hant/System.Windows.Interactivity.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/Caliburn.Micro.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Controls.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Controls.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ar/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ar/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/bg/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/bg/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ca/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ca/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/cs/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/cs/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/da/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/da/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/de/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/de/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/el/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/el/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/es/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/es/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/et/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/et/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/eu/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/eu/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/fi/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/fi/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/fr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/fr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/he/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/he/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/hr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/hr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/hu/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/hu/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/id/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/id/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/it/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/it/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ja/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ja/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ko/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ko/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/lt/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/lt/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/lv/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/lv/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ms/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ms/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/nl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/nl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/no/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/no/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/pl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/pl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/pt-BR/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/pt-BR/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/pt/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/pt/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ro/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ro/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/ru/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/ru/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/sk/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/sk/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/sl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/sl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/sr-Cyrl-CS/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/sr-Cyrl-CS/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/sr-Latn-CS/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/sr-Latn-CS/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/sv/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/sv/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/th/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/th/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/tr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/tr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/uk/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/uk/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/vi/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/vi/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/zh-Hans/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/zh-Hans/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl4/zh-Hant/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl4/zh-Hant/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.pdb -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/Caliburn.Micro.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Controls.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Controls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Controls.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Interactivity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Interactivity.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Interactivity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/System.Windows.Interactivity.xml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ar/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ar/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/bg/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/bg/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ca/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ca/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/cs/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/cs/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/da/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/da/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/de/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/de/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/el/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/el/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/es/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/es/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/et/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/et/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/eu/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/eu/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/fi/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/fi/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/fr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/fr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/he/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/he/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/hr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/hr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/hu/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/hu/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/id/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/id/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/it/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/it/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ja/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ja/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ko/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ko/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/lt/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/lt/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/lv/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/lv/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ms/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ms/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/nl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/nl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/no/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/no/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/pl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/pl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/pt-BR/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/pt-BR/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/pt/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/pt/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ro/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ro/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/ru/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/ru/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/sk/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/sk/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/sl/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/sl/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/sr-Cyrl-CS/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/sr-Cyrl-CS/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/sr-Latn-CS/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/sr-Latn-CS/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/sv/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/sv/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/th/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/th/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/tr/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/tr/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/uk/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/uk/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/vi/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/vi/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/zh-Hans/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/zh-Hans/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/lib/sl5/zh-Hant/System.Windows.Controls.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/lib/sl5/zh-Hant/System.Windows.Controls.resources.dll -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/install.ps1 -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/net40/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/net40/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/net40/IShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/net40/IShell.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/net40/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/net40/ShellView.xaml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/net40/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/net40/ShellViewModel.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4-windowsphone71/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4-windowsphone71/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4-windowsphone71/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4-windowsphone71/MainPageViewModel.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4/IShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4/IShell.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4/ShellView.xaml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl4/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl4/ShellViewModel.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl5/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl5/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl5/IShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl5/IShell.cs -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl5/ShellView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl5/ShellView.xaml -------------------------------------------------------------------------------- /src/packages/Caliburn.Micro.1.3.1/tools/sl5/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Caliburn.Micro.1.3.1/tools/sl5/ShellViewModel.cs -------------------------------------------------------------------------------- /src/packages/Extended.Wpf.Toolkit.1.7.0/Extended.Wpf.Toolkit.1.7.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Extended.Wpf.Toolkit.1.7.0/Extended.Wpf.Toolkit.1.7.0.nupkg -------------------------------------------------------------------------------- /src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net35/WPFToolkit.Extended.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net35/WPFToolkit.Extended.dll -------------------------------------------------------------------------------- /src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net35/WPFToolkit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net35/WPFToolkit.dll -------------------------------------------------------------------------------- /src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net40/WPFToolkit.Extended.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Extended.Wpf.Toolkit.1.7.0/lib/net40/WPFToolkit.Extended.dll -------------------------------------------------------------------------------- /src/packages/Extended.Wpf.Toolkit.1.7.0/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Extended.Wpf.Toolkit.1.7.0/tools/install.ps1 -------------------------------------------------------------------------------- /src/packages/GeminiWpf.0.1.2/GeminiWpf.0.1.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/GeminiWpf.0.1.2/GeminiWpf.0.1.2.nupkg -------------------------------------------------------------------------------- /src/packages/GeminiWpf.0.1.2/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/GeminiWpf.0.1.2/LICENCE.txt -------------------------------------------------------------------------------- /src/packages/GeminiWpf.0.1.2/lib/net40/Gemini.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/GeminiWpf.0.1.2/lib/net40/Gemini.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.1/NUnit.2.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/NUnit.2.6.1/NUnit.2.6.1.nupkg -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.1/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/NUnit.2.6.1/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.1/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/NUnit.2.6.1/lib/nunit.framework.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.1/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/NUnit.2.6.1/license.txt -------------------------------------------------------------------------------- /src/packages/Nexus.2.1.0/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Nexus.2.1.0/LICENCE.txt -------------------------------------------------------------------------------- /src/packages/Nexus.2.1.0/Nexus.2.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Nexus.2.1.0/Nexus.2.1.0.nupkg -------------------------------------------------------------------------------- /src/packages/Nexus.2.1.0/lib/net40/Nexus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Nexus.2.1.0/lib/net40/Nexus.dll -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/Rx-Core.2.0.20823.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/Rx-Core.2.0.20823.nupkg -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/Net40/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/Net40/System.Reactive.Core.XML -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/Net40/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/Net40/System.Reactive.Core.dll -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/Net45/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/Net45/System.Reactive.Core.XML -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/Net45/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/Net45/System.Reactive.Core.dll -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Core.XML -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Core.dll -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/SL5/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/SL5/System.Reactive.Core.XML -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/SL5/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/SL5/System.Reactive.Core.dll -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/WinRT45/System.Reactive.Core.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/WinRT45/System.Reactive.Core.XML -------------------------------------------------------------------------------- /src/packages/Rx-Core.2.0.20823/lib/WinRT45/System.Reactive.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Core.2.0.20823/lib/WinRT45/System.Reactive.Core.dll -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/Rx-Interfaces.2.0.20823.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/Rx-Interfaces.2.0.20823.nupkg -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/Net40/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/Net40/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/Net40/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/Net40/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/Net45/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/Net45/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/Net45/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/Net45/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/SL5/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/SL5/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/SL5/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/SL5/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/WinRT45/System.Reactive.Interfaces.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/WinRT45/System.Reactive.Interfaces.XML -------------------------------------------------------------------------------- /src/packages/Rx-Interfaces.2.0.20823/lib/WinRT45/System.Reactive.Interfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Interfaces.2.0.20823/lib/WinRT45/System.Reactive.Interfaces.dll -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/Rx-Linq.2.0.20823.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/Rx-Linq.2.0.20823.nupkg -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/Net40/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/Net40/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/Net40/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/Net40/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/Net45/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/Net45/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/Net45/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/Net45/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/SL4-WindowsPhone71/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/SL5/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/SL5/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/SL5/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/SL5/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/WinRT45/System.Reactive.Linq.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/WinRT45/System.Reactive.Linq.XML -------------------------------------------------------------------------------- /src/packages/Rx-Linq.2.0.20823/lib/WinRT45/System.Reactive.Linq.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/Rx-Linq.2.0.20823/lib/WinRT45/System.Reactive.Linq.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/SharpDX.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/SharpDX.2.3.1.nupkg -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/net20/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/net20/SharpDX.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/net20/SharpDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/net20/SharpDX.xml -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/net40/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/net40/SharpDX.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/net40/SharpDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/net40/SharpDX.xml -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/winrt/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/winrt/SharpDX.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.2.3.1/lib/winrt/SharpDX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.2.3.1/lib/winrt/SharpDX.xml -------------------------------------------------------------------------------- /src/packages/SharpDX.Direct3D9.2.3.1/SharpDX.Direct3D9.2.3.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.Direct3D9.2.3.1/SharpDX.Direct3D9.2.3.1.nupkg -------------------------------------------------------------------------------- /src/packages/SharpDX.Direct3D9.2.3.1/lib/net20/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.Direct3D9.2.3.1/lib/net20/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.Direct3D9.2.3.1/lib/net20/SharpDX.Direct3D9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.Direct3D9.2.3.1/lib/net20/SharpDX.Direct3D9.xml -------------------------------------------------------------------------------- /src/packages/SharpDX.Direct3D9.2.3.1/lib/net40/SharpDX.Direct3D9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.Direct3D9.2.3.1/lib/net40/SharpDX.Direct3D9.dll -------------------------------------------------------------------------------- /src/packages/SharpDX.Direct3D9.2.3.1/lib/net40/SharpDX.Direct3D9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/SharpDX.Direct3D9.2.3.1/lib/net40/SharpDX.Direct3D9.xml -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/meshellator/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------