├── .gitignore ├── CHANGELOG.markdown ├── LICENSE.txt ├── README.markdown ├── appveyor.yml ├── lib └── ShaderBuildTask.dll ├── nuget └── DynamicImage │ └── content │ └── App_Start │ └── DynamicImage.cs.pp └── src ├── SoundInTheory.DynamicImage.Extensions.ContentAwareResizing ├── Filters │ ├── ContentAwareResizeFilter.cs │ └── ContentAwareResizeFilterConvolutionType.cs ├── Fluent │ └── ContentAwareResizeFilterBuilder.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── CAIR.exe │ ├── GPL.txt │ ├── ReadMe.txt │ └── pthreadVSE2.dll ├── SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.csproj ├── SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.nuspec ├── SoundInTheory.OpenSource.snk └── Util │ └── CairWrapper.cs ├── SoundInTheory.DynamicImage.Extensions.Pdf ├── Fluent │ └── PdfLayerBuilder.cs ├── Layers │ └── PdfLayer.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── gsdll32.dll │ └── gsdll64.dll ├── SoundInTheory.DynamicImage.Extensions.Pdf.csproj ├── SoundInTheory.DynamicImage.Extensions.Pdf.nuspec ├── SoundInTheory.OpenSource.snk └── Util │ ├── GhostscriptUtil.cs │ └── GhostscriptWrapper.cs ├── SoundInTheory.DynamicImage.Extensions.Rendered3D ├── AutoCamera.cs ├── Camera.cs ├── FileSceneSource.cs ├── Fluent │ └── RenderedLayerBuilder.cs ├── Index.cs ├── IndexCollection.cs ├── InlineSceneSource.cs ├── Layers │ └── RenderedLayer.cs ├── Material.cs ├── Mesh.cs ├── MeshCollection.cs ├── OrthographicCamera.cs ├── PerspectiveCamera.cs ├── Point2D.cs ├── Point2DCollection.cs ├── Point3D.cs ├── Point3DCollection.cs ├── ProjectionCamera.cs ├── Properties │ └── AssemblyInfo.cs ├── SceneSource.cs ├── SoundInTheory.DynamicImage.Extensions.Rendered3D.csproj ├── SoundInTheory.DynamicImage.Extensions.Rendered3D.nuspec ├── Util │ └── ConversionUtility.cs ├── Vector3D.cs ├── Vector3DCollection.cs └── packages.config ├── SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot ├── Fluent │ └── WebsiteScreenshotLayerBuilder.cs ├── Layers │ └── WebsiteScreenshotLayer.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ └── CutyCapt.exe ├── SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.csproj ├── SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.nuspec ├── SoundInTheory.OpenSource.snk └── Util │ └── CutyCaptWrapper.cs ├── SoundInTheory.DynamicImage.Mvc ├── HtmlHelperExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundInTheory.DynamicImage.Mvc.csproj ├── SoundInTheory.DynamicImage.Mvc.nuspec ├── SoundInTheory.OpenSource.snk └── packages.config ├── SoundInTheory.DynamicImage.Mvc4 ├── HtmlHelperExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── SoundInTheory.DynamicImage.Mvc4.csproj ├── SoundInTheory.DynamicImage.Mvc4.nuspec ├── SoundInTheory.OpenSource.snk └── packages.config ├── SoundInTheory.DynamicImage.Tests ├── Bugs │ └── FontFileDefaultsToVerdana.cs ├── CompositionTests.cs ├── FastBitmapTestUtility.cs ├── Filters │ ├── CropFilterTests.cs │ └── ResizeFilterTests.cs ├── Fluent │ └── FluentInterfaceTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Tulips.png │ └── TulipsCropped200x200.png ├── SoundInTheory.DynamicImage.Tests.csproj ├── Util │ ├── Cross_process___Photoshop__acv_by_LikeGravity.acv │ └── PhotoshopCurvesReaderTests.cs └── packages.config ├── SoundInTheory.DynamicImage.Website ├── App_Start │ └── DynamicImage.cs ├── Assets │ ├── Css │ │ ├── bootstrap.min.css │ │ └── screen.css │ ├── Fonts │ │ └── ADamnMess.ttf │ ├── Images │ │ ├── AlphaAutumnLeaves.png │ │ ├── ArrowLeftDark.png │ │ ├── ArrowLeftLight.png │ │ ├── ArrowRightDark.png │ │ ├── ArrowRightLight.png │ │ ├── AstonMartin.gif │ │ ├── AutumnLeaves.jpg │ │ ├── BoardExample.png │ │ ├── Desert.jpg │ │ ├── Forest.jpg │ │ ├── GrayscaleAutumnLeaves.jpg │ │ ├── GrayscaleAutumnLeaves.png │ │ ├── Horse.jpg │ │ ├── Koala.jpg │ │ ├── Mask.png │ │ ├── Penguins.jpg │ │ ├── Tower.jpg │ │ ├── Tulips.jpg │ │ ├── bmw.jpg │ │ ├── oryxantelope-small.bmp │ │ ├── oryxantelope-small.jpg │ │ ├── phone.jpg │ │ ├── stonehenge_sunset1.gif │ │ ├── sunset.jpg │ │ ├── win7_rtm_homepremium_04.jpg │ │ ├── win7_rtm_homepremium_08.jpg │ │ └── win7_rtm_homepremium_16.jpg │ ├── Js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── jquery.js │ ├── Misc │ │ └── CrossProcess-Curves.acv │ ├── Models │ │ ├── 3ds │ │ │ ├── 75Cathedral-model.3DS │ │ │ └── 85-nissan-fairlady.3DS │ │ └── Obj │ │ │ ├── Tank.mtl │ │ │ ├── Tank.obj │ │ │ ├── engine_diff_tex_small.png │ │ │ └── turret_alt_diff_tex_small.png │ └── PDFs │ │ └── pdf-test.pdf ├── Content │ └── Prettify │ │ ├── Themes │ │ ├── desert.css │ │ ├── doxy.css │ │ ├── sons-of-obsidian.css │ │ └── sunburst.css │ │ └── prettify.css ├── Controllers │ ├── ExtensionsController.cs │ ├── FeaturesController.cs │ ├── FiltersController.cs │ ├── GettingStartedController.cs │ ├── HomeController.cs │ └── LayersController.cs ├── Global.asax ├── Global.asax.cs ├── Html │ └── HtmlHelperExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ └── Prettify │ │ ├── lang-apollo.js │ │ ├── lang-basic.js │ │ ├── lang-clj.js │ │ ├── lang-css.js │ │ ├── lang-dart.js │ │ ├── lang-erlang.js │ │ ├── lang-go.js │ │ ├── lang-hs.js │ │ ├── lang-lisp.js │ │ ├── lang-llvm.js │ │ ├── lang-lua.js │ │ ├── lang-matlab.js │ │ ├── lang-ml.js │ │ ├── lang-mumps.js │ │ ├── lang-n.js │ │ ├── lang-pascal.js │ │ ├── lang-proto.js │ │ ├── lang-r.js │ │ ├── lang-rd.js │ │ ├── lang-scala.js │ │ ├── lang-sql.js │ │ ├── lang-tcl.js │ │ ├── lang-tex.js │ │ ├── lang-vb.js │ │ ├── lang-vhdl.js │ │ ├── lang-wiki.js │ │ ├── lang-xq.js │ │ ├── lang-yaml.js │ │ ├── prettify.js │ │ └── run_prettify.js ├── SoundInTheory.DynamicImage.Website.csproj ├── Views │ ├── Extensions │ │ ├── ContentAwareResizing.cshtml │ │ ├── Index.cshtml │ │ ├── Pdf.cshtml │ │ ├── Rendered3D.cshtml │ │ ├── WebsiteScreenshot.cshtml │ │ └── _Nav.cshtml │ ├── Features │ │ ├── BlendModes.cshtml │ │ ├── BytesSourceImage.cshtml │ │ ├── GlobalFilters.cshtml │ │ ├── GradientFill.cshtml │ │ ├── GrayscaleSourceImage.cshtml │ │ ├── Index.cshtml │ │ ├── IndexedSourceImage.cshtml │ │ ├── Lomo.cshtml │ │ ├── Opacity.cshtml │ │ ├── Positioning.cshtml │ │ ├── TransparentSourceImage.cshtml │ │ └── _Nav.cshtml │ ├── Filters │ │ ├── Border.cshtml │ │ ├── BrightnessAdjustment.cshtml │ │ ├── ClippingMask.cshtml │ │ ├── ColorKey.cshtml │ │ ├── ColorTint.cshtml │ │ ├── ContrastAdjustment.cshtml │ │ ├── Crop.cshtml │ │ ├── Curves.cshtml │ │ ├── DistortCorners.cshtml │ │ ├── DropShadow.cshtml │ │ ├── Emboss.cshtml │ │ ├── Feather.cshtml │ │ ├── GaussianBlur.cshtml │ │ ├── Grayscale.cshtml │ │ ├── Index.cshtml │ │ ├── Inversion.cshtml │ │ ├── OpacityAdjustment.cshtml │ │ ├── OuterGlow.cshtml │ │ ├── Resize.cshtml │ │ ├── Rotation.cshtml │ │ ├── RoundCorners.cshtml │ │ ├── Sepia.cshtml │ │ ├── ShinyFloor.cshtml │ │ ├── Solarize.cshtml │ │ ├── UnsharpMask.cshtml │ │ ├── Vignette.cshtml │ │ └── _Nav.cshtml │ ├── GettingStarted │ │ ├── Caching.cshtml │ │ ├── FluentApi.cshtml │ │ ├── Installation.cshtml │ │ ├── ObjectModel.cshtml │ │ └── _Nav.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Layers │ │ ├── Image.cshtml │ │ ├── Index.cshtml │ │ ├── JuliaFractal.cshtml │ │ ├── MandelbrotFractal.cshtml │ │ ├── PolygonShape.cshtml │ │ ├── RectangleShape.cshtml │ │ ├── Text.cshtml │ │ └── _Nav.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ └── _LayoutBase.cshtml │ ├── Web.config │ └── _ViewStart.cshtml ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── D3DCompiler_43.dll │ └── d3dx11_43.dll └── packages.config ├── SoundInTheory.DynamicImage.sln ├── SoundInTheory.DynamicImage.sln.DotSettings ├── SoundInTheory.DynamicImage ├── AnchorStyles.cs ├── BlendMode.cs ├── Caching │ ├── Dependency.cs │ ├── DiskCacheProviderBase.cs │ ├── DynamicImageCacheManager.cs │ ├── DynamicImageCacheProvider.cs │ ├── DynamicImageCachingMode.cs │ ├── ImageUrlGenerator.cs │ ├── InProcDynamicImageCacheProvider.cs │ ├── TransientCacheProvider.cs │ └── XmlCacheProvider.cs ├── Color.cs ├── ColorHsv.cs ├── Colors.cs ├── Composition.cs ├── Configuration │ ├── BrowserCachingSettings.cs │ ├── CachingSettings.cs │ ├── DependentSiteCollection.cs │ ├── DependentSiteElement.cs │ └── DynamicImageSection.cs ├── DashStyle.cs ├── DirtyTrackingCollection.cs ├── DirtyTrackingObject.cs ├── DynamicImageException.cs ├── DynamicImageFormat.cs ├── DynamicImageModule.cs ├── Fill.cs ├── FillType.cs ├── Filters │ ├── BorderFilter.cs │ ├── BrightnessAdjustmentFilter.cs │ ├── ClippingMaskFilter.cs │ ├── ColorKeyFilter.cs │ ├── ColorTintFilter.cs │ ├── ContrastAdjustmentFilter.cs │ ├── CropFilter.cs │ ├── Curve.cs │ ├── CurveCollection.cs │ ├── CurvePoint.cs │ ├── CurvePointCollection.cs │ ├── CurvesAdjustmentFilter.cs │ ├── DistortCornersFilter.cs │ ├── DropShadowFilter.cs │ ├── EdgeAction.cs │ ├── EmbossFilter.cs │ ├── FeatherFilter.cs │ ├── Filter.cs │ ├── FilterCollection.cs │ ├── GaussianBlurFilter.cs │ ├── GrayscaleFilter.cs │ ├── ImageMath.cs │ ├── ImageReplacementFilter.cs │ ├── InterpolationMode.cs │ ├── InversionFilter.cs │ ├── OpacityAdjustmentFilter.cs │ ├── OuterGlowFilter.cs │ ├── ResizeFilter.cs │ ├── RotationFilter.cs │ ├── RoundCornersFilter.cs │ ├── SepiaFilter.cs │ ├── ShaderEffectFilter.cs │ ├── ShadowFilterBase.cs │ ├── ShinyFloorFilter.cs │ ├── SolarizeFilter.cs │ ├── TransferFilter.cs │ ├── TransformFilter.cs │ ├── UnsharpMaskFilter.cs │ └── VignetteFilter.cs ├── Fluent │ ├── BaseFilterBuilder.cs │ ├── BaseLayerBuilder.cs │ ├── BorderFilterBuilder.cs │ ├── BrightnessAdjustmentFilterBuilder.cs │ ├── ClippingMaskFilterBuilder.cs │ ├── ClosedShapeLayerBuilder.cs │ ├── ColorKeyFilterBuilder.cs │ ├── ColorTintFilterBuilder.cs │ ├── CompositionBuilder.cs │ ├── ContrastAdjustmentFilterBuilder.cs │ ├── CropFilterBuilder.cs │ ├── CurvesAdjustmentFilterBuilder.cs │ ├── DistortCornersFilterBuilder.cs │ ├── DropShadowFilterBuilder.cs │ ├── EmbossFilterBuilder.cs │ ├── FeatherFilterBuilder.cs │ ├── FilterBuilder.cs │ ├── FractalLayerBuilder.cs │ ├── GaussianBlurFilterBuilder.cs │ ├── GrayscaleFilterBuilder.cs │ ├── ImageLayerBuilder.cs │ ├── InversionFilterBuilder.cs │ ├── JuliaFractalLayerBuilder.cs │ ├── LayerBuilder.cs │ ├── MandelbrotFractalLayerBuilder.cs │ ├── OpacityAdjustmentFilterBuilder.cs │ ├── OuterGlowFilterBuilder.cs │ ├── PolygonShapeLayerBuilder.cs │ ├── RectangleShapeLayerBuilder.cs │ ├── ResizeFilterBuilder.cs │ ├── RotationFilterBuilder.cs │ ├── RoundCornersFilterBuilder.cs │ ├── SepiaFilterBuilder.cs │ ├── ShadowFilterBuilderBase.cs │ ├── ShapeLayerBuilder.cs │ ├── ShinyFloorFilterBuilder.cs │ ├── SolarizeFilterBuilder.cs │ ├── TextLayerBuilder.cs │ ├── UnsharpMaskFilterBuilder.cs │ └── VignetteFilterBuilder.cs ├── Font.cs ├── FontDescription.cs ├── GeneratedImage.cs ├── ImageProperties.cs ├── Layer.cs ├── LayerBlender.cs ├── LayerCollection.cs ├── Layers │ ├── ClosedShapeLayer.cs │ ├── FractalLayer.cs │ ├── ImageLayer.cs │ ├── JuliaFractalLayer.cs │ ├── MandelbrotFractalLayer.cs │ ├── PolygonShapeLayer.cs │ ├── RectangleShapeLayer.cs │ ├── ShapeLayer.cs │ └── TextLayer.cs ├── Padding.cs ├── Properties │ └── AssemblyInfo.cs ├── ShaderEffects │ ├── BrightnessAdjustmentEffect.cs │ ├── BrightnessAdjustmentEffect.fx │ ├── BrightnessAdjustmentEffect.ps │ ├── BrightnessEffect.ps │ ├── ClippingMaskEffect.cs │ ├── ClippingMaskEffect.fx │ ├── ClippingMaskEffect.ps │ ├── ColorKeyEffect.cs │ ├── ColorKeyEffect.fx │ ├── ColorKeyEffect.ps │ ├── ColorTintEffect.cs │ ├── ColorTintEffect.fx │ ├── ColorTintEffect.ps │ ├── ContrastAdjustmentEffect.cs │ ├── ContrastAdjustmentEffect.fx │ ├── ContrastAdjustmentEffect.ps │ ├── Copy of ColorKeyEffect.ps │ ├── CurvesEffect.cs │ ├── CurvesEffect.fx │ ├── CurvesEffect.ps │ ├── EmbossEffect.cs │ ├── EmbossEffect.fx │ ├── EmbossEffect.ps │ ├── FeatherEffect.cs │ ├── FeatherEffect.fx │ ├── FeatherEffect.ps │ ├── GrayscaleEffect.cs │ ├── GrayscaleEffect.fx │ ├── GrayscaleEffect.ps │ ├── InversionEffect.cs │ ├── InversionEffect.fx │ ├── InversionEffect.ps │ ├── LayerBlenderEffect.ps │ ├── LayerBlending │ │ ├── LayerBlenderEffect.cs │ │ ├── LayerBlenderEffectColor.fx │ │ ├── LayerBlenderEffectColor.ps │ │ ├── LayerBlenderEffectColorBurn.fx │ │ ├── LayerBlenderEffectColorBurn.ps │ │ ├── LayerBlenderEffectColorDodge.fx │ │ ├── LayerBlenderEffectColorDodge.ps │ │ ├── LayerBlenderEffectDarken.fx │ │ ├── LayerBlenderEffectDarken.ps │ │ ├── LayerBlenderEffectDarkerColor.fx │ │ ├── LayerBlenderEffectDarkerColor.ps │ │ ├── LayerBlenderEffectDifference.fx │ │ ├── LayerBlenderEffectDifference.ps │ │ ├── LayerBlenderEffectDissolve.fx │ │ ├── LayerBlenderEffectDissolve.ps │ │ ├── LayerBlenderEffectExclusion.fx │ │ ├── LayerBlenderEffectExclusion.ps │ │ ├── LayerBlenderEffectHardLight.fx │ │ ├── LayerBlenderEffectHardLight.ps │ │ ├── LayerBlenderEffectHue.ps │ │ ├── LayerBlenderEffectLighten.fx │ │ ├── LayerBlenderEffectLighten.ps │ │ ├── LayerBlenderEffectLighterColor.fx │ │ ├── LayerBlenderEffectLighterColor.ps │ │ ├── LayerBlenderEffectLinearBurn.fx │ │ ├── LayerBlenderEffectLinearBurn.ps │ │ ├── LayerBlenderEffectLinearDodge.fx │ │ ├── LayerBlenderEffectLinearDodge.ps │ │ ├── LayerBlenderEffectLinearLight.fx │ │ ├── LayerBlenderEffectLinearLight.ps │ │ ├── LayerBlenderEffectLuminosity.fx │ │ ├── LayerBlenderEffectLuminosity.ps │ │ ├── LayerBlenderEffectMultiply.fx │ │ ├── LayerBlenderEffectMultiply.ps │ │ ├── LayerBlenderEffectNormal.fx │ │ ├── LayerBlenderEffectNormal.ps │ │ ├── LayerBlenderEffectOverlay.fx │ │ ├── LayerBlenderEffectOverlay.ps │ │ ├── LayerBlenderEffectPinLight.fx │ │ ├── LayerBlenderEffectPinLight.ps │ │ ├── LayerBlenderEffectSaturation.ps │ │ ├── LayerBlenderEffectScreen.fx │ │ ├── LayerBlenderEffectScreen.ps │ │ ├── LayerBlenderEffectSoftLight.fx │ │ ├── LayerBlenderEffectSoftLight.ps │ │ └── LayerBlending.fxh │ ├── RgbHsvConversion.fxh │ ├── SepiaEffect.cs │ ├── SepiaEffect.fx │ ├── SepiaEffect.ps │ ├── ShaderEffectBase.cs │ ├── ShinyFloorEffect.ps │ ├── TransferEffect.cs │ ├── TransferEffect.fx │ ├── TransferEffect.ps │ ├── UnsharpMaskEffect.cs │ ├── UnsharpMaskEffect.fx │ ├── UnsharpMaskEffect.ps │ └── VignetteEffect.ps ├── SoundInTheory.DynamicImage.csproj ├── SoundInTheory.DynamicImage.nuspec ├── SoundInTheory.OpenSource.snk ├── Sources │ ├── BytesImageSource.cs │ ├── FileImageSource.cs │ ├── ImageImageSource.cs │ ├── ImageSource.cs │ ├── RemoteImageSource.cs │ └── SqlDatabaseImageSource.cs ├── TextAlignment.cs ├── Unit.cs ├── UnitType.cs ├── Util │ ├── CanonicalSplineUtility.cs │ ├── ColorExtensionMethods.cs │ ├── CubicSplineUtility.cs │ ├── DispatcherTaskScheduler.cs │ ├── FastBitmap.cs │ ├── FileSourceHelper.cs │ ├── ImageGenerationContext.cs │ ├── Int32RectUtility.cs │ ├── Int32Size.cs │ ├── MathUtility.cs │ ├── PhotoshopCurvesReader.cs │ ├── RenderTargetBitmapUtility.cs │ ├── ShaderEffectUtility.cs │ └── Util.cs └── VerticalAlignment.cs └── packages ├── DotWarp.1.2.1 ├── DotWarp.1.2.1.nupkg ├── DotWarp.1.2.1.nuspec ├── LICENSE.txt └── lib │ └── NET40 │ ├── DotWarp.dll │ ├── SharpDX.D3DCompiler.dll │ ├── SharpDX.DXGI.dll │ ├── SharpDX.Direct3D11.dll │ └── SharpDX.dll ├── LowercaseRoutesMVC.1.0.3 ├── LowercaseRoutesMVC.1.0.3.nupkg ├── LowercaseRoutesMVC.1.0.3.nuspec └── lib │ ├── LowercaseRoutesMVC.XML │ ├── LowercaseRoutesMVC.dll │ └── LowercaseRoutesMVC.pdb ├── Meshellator.1.0.0.0 ├── LICENSE.txt ├── Meshellator.1.0.0.0.nupkg ├── Meshellator.1.0.0.0.nuspec └── lib │ ├── NET40 │ └── Meshellator.dll │ └── SL4 │ └── Meshellator.Silverlight.dll ├── Microsoft.AspNet.Mvc.3.0.20105.1 ├── Microsoft.AspNet.Mvc.3.0.20105.1.nupkg ├── Microsoft.AspNet.Mvc.3.0.20105.1.nuspec └── lib │ └── net40 │ └── System.Web.Mvc.dll ├── Microsoft.AspNet.Mvc.4.0.20710.0 ├── Microsoft.AspNet.Mvc.4.0.20710.0.nupkg ├── Microsoft.AspNet.Mvc.4.0.20710.0.nuspec └── lib │ └── net40 │ ├── System.Web.Mvc.dll │ └── System.Web.Mvc.xml ├── Microsoft.AspNet.Razor.1.0.20105.408 ├── Microsoft.AspNet.Razor.1.0.20105.408.nupkg ├── Microsoft.AspNet.Razor.1.0.20105.408.nuspec └── lib │ └── net40 │ └── System.Web.Razor.dll ├── Microsoft.AspNet.Razor.2.0.20715.0 ├── Microsoft.AspNet.Razor.2.0.20715.0.nupkg ├── Microsoft.AspNet.Razor.2.0.20715.0.nuspec └── lib │ └── net40 │ ├── System.Web.Razor.dll │ └── System.Web.Razor.xml ├── Microsoft.AspNet.WebPages.1.0.20105.408 ├── Microsoft.AspNet.WebPages.1.0.20105.408.nupkg ├── Microsoft.AspNet.WebPages.1.0.20105.408.nuspec └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Razor.dll │ └── System.Web.WebPages.dll ├── Microsoft.AspNet.WebPages.2.0.20710.0 ├── Microsoft.AspNet.WebPages.2.0.20710.0.nupkg ├── Microsoft.AspNet.WebPages.2.0.20710.0.nuspec └── lib │ └── net40 │ ├── System.Web.Helpers.dll │ ├── System.Web.Helpers.xml │ ├── System.Web.WebPages.Deployment.dll │ ├── System.Web.WebPages.Deployment.xml │ ├── System.Web.WebPages.Razor.dll │ ├── System.Web.WebPages.Razor.xml │ ├── System.Web.WebPages.dll │ └── System.Web.WebPages.xml ├── Microsoft.Web.Infrastructure.1.0.0.0 ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg ├── Microsoft.Web.Infrastructure.1.0.0.0.nuspec └── lib │ └── net40 │ └── Microsoft.Web.Infrastructure.dll ├── NUnit.2.6.2 ├── NUnit.2.6.2.nupkg ├── NUnit.2.6.2.nuspec ├── lib │ ├── nunit.framework.dll │ └── nunit.framework.xml └── license.txt ├── Nexus.1.0.0.0 ├── LICENSE.txt ├── Nexus.1.0.0.0.nupkg ├── Nexus.1.0.0.0.nuspec └── lib │ ├── NET40 │ └── Nexus.dll │ └── SL4 │ └── Nexus.Silverlight.dll ├── Nexus.Wpf.1.0.0.0 ├── LICENSE.txt ├── Nexus.Wpf.1.0.0.0.nupkg ├── Nexus.Wpf.1.0.0.0.nuspec └── lib │ └── NET40 │ └── Nexus.Wpf.dll ├── NuGet.CommandLine.1.6.0 ├── NuGet.CommandLine.1.6.0.nupkg └── tools │ └── NuGet.exe ├── Prettify.3.3.04.2013 ├── Prettify.3.3.04.2013.nupkg ├── Prettify.3.3.04.2013.nuspec └── content │ ├── Content │ └── Prettify │ │ ├── Themes │ │ ├── desert.css │ │ ├── doxy.css │ │ ├── sons-of-obsidian.css │ │ └── sunburst.css │ │ └── prettify.css │ └── Scripts │ └── Prettify │ ├── lang-apollo.js │ ├── lang-basic.js │ ├── lang-clj.js │ ├── lang-css.js │ ├── lang-dart.js │ ├── lang-erlang.js │ ├── lang-go.js │ ├── lang-hs.js │ ├── lang-lisp.js │ ├── lang-llvm.js │ ├── lang-lua.js │ ├── lang-matlab.js │ ├── lang-ml.js │ ├── lang-mumps.js │ ├── lang-n.js │ ├── lang-pascal.js │ ├── lang-proto.js │ ├── lang-r.js │ ├── lang-rd.js │ ├── lang-scala.js │ ├── lang-sql.js │ ├── lang-tcl.js │ ├── lang-tex.js │ ├── lang-vb.js │ ├── lang-vhdl.js │ ├── lang-wiki.js │ ├── lang-xq.js │ ├── lang-yaml.js │ ├── prettify.js │ └── run_prettify.js ├── WebActivatorEx.2.0.2 ├── WebActivatorEx.2.0.2.nupkg ├── WebActivatorEx.2.0.2.nuspec └── lib │ └── net40 │ └── WebActivatorEx.dll ├── psake.4.0.1.0 ├── psake.4.0.1.0.nupkg └── tools │ ├── README.markdown │ ├── chocolateyInstall.ps1 │ ├── en-US │ └── psake.psm1-help.xml │ ├── examples │ ├── checkvariables.ps1 │ ├── continueonerror.ps1 │ ├── default.ps1 │ ├── formattaskname_scriptblock.ps1 │ ├── formattaskname_string.ps1 │ ├── nested.ps1 │ ├── nested │ │ ├── nested1.ps1 │ │ └── nested2.ps1 │ ├── parameters.ps1 │ ├── passingParametersString │ │ ├── build.Release.Version.bat │ │ └── parameters.ps1 │ ├── preandpostaction.ps1 │ └── properties.ps1 │ ├── images │ ├── SakeBottle.jpg │ ├── SakeBottleLicense.txt │ ├── psake.pdn │ └── psake.png │ ├── init.ps1 │ ├── psake-buildTester.ps1 │ ├── psake-config.ps1 │ ├── psake-help.ps1 │ ├── psake.cmd │ ├── psake.ps1 │ ├── psake.psm1 │ ├── specs │ ├── bad_PreAndPostActions_should_fail.ps1 │ ├── calling_invoke-task_should_pass.ps1 │ ├── circular_dependency_in_tasks_should_fail.ps1 │ ├── default_task_with_action_should_fail.ps1 │ ├── dotNet4_should_pass.ps1 │ ├── duplicate_tasks_should_fail.ps1 │ ├── explicitly_specified_32bit_build_should_pass.ps1 │ ├── failing_postcondition_should_fail.ps1 │ ├── missing_task_should_fail.ps1 │ ├── multiline_blocks_should_pass.ps1 │ ├── nested │ │ ├── nested1.ps1 │ │ └── nested2.ps1 │ ├── nested_builds_should_pass.ps1 │ ├── running_aspnet_compiler_under_dotNet35_should_pass.ps1 │ ├── simple_properties_and_tasks_should_pass.ps1 │ ├── tasksetup_should_pass.ps1 │ ├── using_PreAndPostActions_should_pass.ps1 │ ├── using_msbuild_should_pass.ps1 │ ├── using_parameters_should_pass.ps1 │ ├── using_postcondition_should_pass.ps1 │ ├── using_precondition_should_pass.ps1 │ ├── using_properties_should_pass.ps1 │ └── writing_psake_variables_should_pass.ps1 │ └── tabexpansion │ ├── PsakeTabExpansion.ps1 │ └── Readme.PsakeTab.txt └── repositories.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/CHANGELOG.markdown -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/README.markdown -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/ShaderBuildTask.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/lib/ShaderBuildTask.dll -------------------------------------------------------------------------------- /nuget/DynamicImage/content/App_Start/DynamicImage.cs.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/nuget/DynamicImage/content/App_Start/DynamicImage.cs.pp -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Filters/ContentAwareResizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Filters/ContentAwareResizeFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Filters/ContentAwareResizeFilterConvolutionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Filters/ContentAwareResizeFilterConvolutionType.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Fluent/ContentAwareResizeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Fluent/ContentAwareResizeFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/CAIR.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/CAIR.exe -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/GPL.txt -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/ReadMe.txt -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/pthreadVSE2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Resources/pthreadVSE2.dll -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Util/CairWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.ContentAwareResizing/Util/CairWrapper.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Fluent/PdfLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Fluent/PdfLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Layers/PdfLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Layers/PdfLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Resources/gsdll32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Resources/gsdll32.dll -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Resources/gsdll64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Resources/gsdll64.dll -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.DynamicImage.Extensions.Pdf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.DynamicImage.Extensions.Pdf.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.DynamicImage.Extensions.Pdf.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.DynamicImage.Extensions.Pdf.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Util/GhostscriptUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Util/GhostscriptUtil.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Pdf/Util/GhostscriptWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Pdf/Util/GhostscriptWrapper.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/AutoCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/AutoCamera.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Camera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Camera.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/FileSceneSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/FileSceneSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Fluent/RenderedLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Fluent/RenderedLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Index.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/IndexCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/IndexCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/InlineSceneSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/InlineSceneSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Layers/RenderedLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Layers/RenderedLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Material.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Material.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Mesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Mesh.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/MeshCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/MeshCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/OrthographicCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/OrthographicCamera.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/PerspectiveCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/PerspectiveCamera.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point2D.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point2DCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point2DCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point3D.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point3DCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Point3DCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/ProjectionCamera.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/ProjectionCamera.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SceneSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SceneSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SoundInTheory.DynamicImage.Extensions.Rendered3D.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SoundInTheory.DynamicImage.Extensions.Rendered3D.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SoundInTheory.DynamicImage.Extensions.Rendered3D.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/SoundInTheory.DynamicImage.Extensions.Rendered3D.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Util/ConversionUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Util/ConversionUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Vector3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Vector3D.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Vector3DCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/Vector3DCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.Rendered3D/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.Rendered3D/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Fluent/WebsiteScreenshotLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Fluent/WebsiteScreenshotLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Layers/WebsiteScreenshotLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Layers/WebsiteScreenshotLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Resources/CutyCapt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Resources/CutyCapt.exe -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Util/CutyCaptWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Extensions.WebsiteScreenshot/Util/CutyCaptWrapper.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.DynamicImage.Mvc.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.DynamicImage.Mvc4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.DynamicImage.Mvc4.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.DynamicImage.Mvc4.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.DynamicImage.Mvc4.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Mvc4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Mvc4/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Bugs/FontFileDefaultsToVerdana.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Bugs/FontFileDefaultsToVerdana.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/CompositionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/CompositionTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/FastBitmapTestUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/FastBitmapTestUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Filters/CropFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Filters/CropFilterTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Filters/ResizeFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Filters/ResizeFilterTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Fluent/FluentInterfaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Fluent/FluentInterfaceTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Resources/Tulips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Resources/Tulips.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Resources/TulipsCropped200x200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Resources/TulipsCropped200x200.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/SoundInTheory.DynamicImage.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/SoundInTheory.DynamicImage.Tests.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Util/Cross_process___Photoshop__acv_by_LikeGravity.acv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Util/Cross_process___Photoshop__acv_by_LikeGravity.acv -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/Util/PhotoshopCurvesReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/Util/PhotoshopCurvesReaderTests.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Tests/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/App_Start/DynamicImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/App_Start/DynamicImage.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/bootstrap.min.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Css/screen.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Fonts/ADamnMess.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Fonts/ADamnMess.ttf -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AlphaAutumnLeaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AlphaAutumnLeaves.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftDark.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowLeftLight.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightDark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightDark.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightLight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/ArrowRightLight.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AstonMartin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AstonMartin.gif -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/AutumnLeaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/AutumnLeaves.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/BoardExample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/BoardExample.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Desert.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Forest.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/GrayscaleAutumnLeaves.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Horse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Horse.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Koala.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Mask.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Penguins.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Penguins.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Tower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Tower.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/Tulips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/Tulips.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/bmw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/bmw.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.bmp -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/oryxantelope-small.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/phone.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/stonehenge_sunset1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/stonehenge_sunset1.gif -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/sunset.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_04.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_08.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Images/win7_rtm_homepremium_16.jpg -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/bootstrap.min.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Js/jquery.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Misc/CrossProcess-Curves.acv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Misc/CrossProcess-Curves.acv -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/3ds/75Cathedral-model.3DS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/3ds/75Cathedral-model.3DS -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/3ds/85-nissan-fairlady.3DS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/3ds/85-nissan-fairlady.3DS -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/Tank.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/Tank.mtl -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/Tank.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/Tank.obj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/engine_diff_tex_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/engine_diff_tex_small.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/turret_alt_diff_tex_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/Models/Obj/turret_alt_diff_tex_small.png -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Assets/PDFs/pdf-test.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Assets/PDFs/pdf-test.pdf -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/desert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/desert.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/doxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/doxy.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/sons-of-obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/sons-of-obsidian.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Content/Prettify/Themes/sunburst.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Content/Prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Content/Prettify/prettify.css -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/ExtensionsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/ExtensionsController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/FeaturesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/FeaturesController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/FiltersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/FiltersController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/GettingStartedController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/GettingStartedController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Controllers/LayersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Controllers/LayersController.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Global.asax -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Global.asax.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Html/HtmlHelperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Html/HtmlHelperExtensions.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-apollo.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-basic.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-clj.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-css.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-dart.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-erlang.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-go.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-hs.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-lisp.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-llvm.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-lua.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-matlab.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-ml.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-mumps.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-n.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-pascal.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-proto.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-r.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-rd.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-scala.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-sql.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-tcl.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-tex.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-vb.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-vhdl.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-wiki.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-xq.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/lang-yaml.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/prettify.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Scripts/Prettify/run_prettify.js -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/SoundInTheory.DynamicImage.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/SoundInTheory.DynamicImage.Website.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/ContentAwareResizing.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/ContentAwareResizing.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/Pdf.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/Pdf.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/Rendered3D.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/Rendered3D.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/WebsiteScreenshot.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/WebsiteScreenshot.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Extensions/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Extensions/_Nav.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/BlendModes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/BlendModes.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/BytesSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/BytesSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GlobalFilters.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GlobalFilters.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GradientFill.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GradientFill.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/GrayscaleSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/GrayscaleSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/IndexedSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/IndexedSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Lomo.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Lomo.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Opacity.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Opacity.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/Positioning.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/Positioning.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/TransparentSourceImage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/TransparentSourceImage.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Features/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Features/_Nav.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Border.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Border.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/BrightnessAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/BrightnessAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ClippingMask.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ClippingMask.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorKey.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorKey.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorTint.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ColorTint.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ContrastAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ContrastAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Crop.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Crop.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Curves.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Curves.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/DistortCorners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/DistortCorners.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/DropShadow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/DropShadow.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Emboss.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Emboss.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Feather.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Feather.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/GaussianBlur.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/GaussianBlur.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Grayscale.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Grayscale.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Inversion.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Inversion.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/OpacityAdjustment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/OpacityAdjustment.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/OuterGlow.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/OuterGlow.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Resize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Resize.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Rotation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Rotation.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/RoundCorners.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/RoundCorners.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Sepia.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Sepia.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/ShinyFloor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/ShinyFloor.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Solarize.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Solarize.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/UnsharpMask.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/UnsharpMask.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/Vignette.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/Vignette.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Filters/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Filters/_Nav.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/Caching.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/Caching.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/FluentApi.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/FluentApi.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/Installation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/Installation.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/ObjectModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/ObjectModel.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/GettingStarted/_Nav.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/Image.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/Image.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/Index.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/JuliaFractal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/JuliaFractal.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/MandelbrotFractal.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/MandelbrotFractal.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/PolygonShape.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/PolygonShape.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/RectangleShape.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/RectangleShape.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/Text.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/Text.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Layers/_Nav.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Layers/_Nav.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Shared/_LayoutBase.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Shared/_LayoutBase.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/Web.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.Debug.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.Release.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/Web.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/bin/D3DCompiler_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/bin/D3DCompiler_43.dll -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/bin/d3dx11_43.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/bin/d3dx11_43.dll -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.Website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.Website/packages.config -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.sln -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage.sln.DotSettings -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/AnchorStyles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/AnchorStyles.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/BlendMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/BlendMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/Dependency.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DiskCacheProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DiskCacheProviderBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheManager.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/DynamicImageCachingMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/DynamicImageCachingMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/ImageUrlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/ImageUrlGenerator.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/InProcDynamicImageCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/InProcDynamicImageCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/TransientCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/TransientCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Caching/XmlCacheProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Caching/XmlCacheProvider.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Color.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ColorHsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ColorHsv.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Colors.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Composition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Composition.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/BrowserCachingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/BrowserCachingSettings.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/CachingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/CachingSettings.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DependentSiteCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DependentSiteCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DependentSiteElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DependentSiteElement.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Configuration/DynamicImageSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Configuration/DynamicImageSection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DashStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DashStyle.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DirtyTrackingCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DirtyTrackingCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DirtyTrackingObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DirtyTrackingObject.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageException.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageFormat.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/DynamicImageModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/DynamicImageModule.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fill.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fill.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/FillType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/FillType.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/BorderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/BorderFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/BrightnessAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/BrightnessAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ClippingMaskFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ClippingMaskFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ColorKeyFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ColorKeyFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ColorTintFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ColorTintFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ContrastAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ContrastAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CropFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CropFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/Curve.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/Curve.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurveCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurveCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvePoint.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvePointCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvePointCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/CurvesAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/CurvesAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/DistortCornersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/DistortCornersFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/DropShadowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/DropShadowFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/EdgeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/EdgeAction.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/EmbossFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/EmbossFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/FeatherFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/FeatherFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/Filter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/Filter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/FilterCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/FilterCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/GaussianBlurFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/GaussianBlurFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/GrayscaleFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/GrayscaleFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ImageMath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ImageMath.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ImageReplacementFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ImageReplacementFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/InterpolationMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/InterpolationMode.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/InversionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/InversionFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/OpacityAdjustmentFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/OpacityAdjustmentFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/OuterGlowFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/OuterGlowFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ResizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ResizeFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/RotationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/RotationFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/RoundCornersFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/RoundCornersFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/SepiaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/SepiaFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShaderEffectFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShaderEffectFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShadowFilterBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShadowFilterBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/ShinyFloorFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/ShinyFloorFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/SolarizeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/SolarizeFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/TransferFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/TransferFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/TransformFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/TransformFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/UnsharpMaskFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/UnsharpMaskFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Filters/VignetteFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Filters/VignetteFilter.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BaseFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BaseFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BaseLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BaseLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BorderFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BorderFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/BrightnessAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/BrightnessAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ClippingMaskFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ClippingMaskFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ClosedShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ClosedShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ColorKeyFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ColorKeyFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ColorTintFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ColorTintFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CompositionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CompositionBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ContrastAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ContrastAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CropFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CropFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/CurvesAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/CurvesAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/DistortCornersFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/DistortCornersFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/DropShadowFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/DropShadowFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/EmbossFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/EmbossFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FeatherFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FeatherFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/FractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/FractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/GaussianBlurFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/GaussianBlurFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/GrayscaleFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/GrayscaleFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ImageLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ImageLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/InversionFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/InversionFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/JuliaFractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/JuliaFractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/LayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/LayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/MandelbrotFractalLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/MandelbrotFractalLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/OpacityAdjustmentFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/OpacityAdjustmentFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/OuterGlowFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/OuterGlowFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/PolygonShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/PolygonShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RectangleShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RectangleShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ResizeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ResizeFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RotationFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RotationFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/RoundCornersFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/RoundCornersFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/SepiaFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/SepiaFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShadowFilterBuilderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShadowFilterBuilderBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShapeLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShapeLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/ShinyFloorFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/ShinyFloorFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/SolarizeFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/SolarizeFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/TextLayerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/TextLayerBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/UnsharpMaskFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/UnsharpMaskFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Fluent/VignetteFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Fluent/VignetteFilterBuilder.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Font.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Font.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/FontDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/FontDescription.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/GeneratedImage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/GeneratedImage.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ImageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ImageProperties.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/LayerBlender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/LayerBlender.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/LayerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/LayerCollection.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ClosedShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ClosedShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/FractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/FractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ImageLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ImageLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/JuliaFractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/JuliaFractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/MandelbrotFractalLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/MandelbrotFractalLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/PolygonShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/PolygonShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/RectangleShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/RectangleShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/ShapeLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/ShapeLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Layers/TextLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Layers/TextLayer.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Padding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Padding.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessAdjustmentEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/BrightnessEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ClippingMaskEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorKeyEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ColorTintEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ContrastAdjustmentEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/Copy of ColorKeyEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/Copy of ColorKeyEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/CurvesEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/EmbossEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/FeatherEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/GrayscaleEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/InversionEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlenderEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlenderEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorBurn.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectColorDodge.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarken.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDarkerColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDifference.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectDissolve.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectExclusion.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHardLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHue.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectHue.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighten.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLighterColor.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearBurn.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearDodge.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLinearLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectLuminosity.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectMultiply.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectNormal.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectOverlay.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectPinLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSaturation.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSaturation.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectScreen.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlenderEffectSoftLight.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlending.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/LayerBlending/LayerBlending.fxh -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/RgbHsvConversion.fxh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/RgbHsvConversion.fxh -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/SepiaEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ShaderEffectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ShaderEffectBase.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/ShinyFloorEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/ShinyFloorEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/TransferEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.fx -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/UnsharpMaskEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/ShaderEffects/VignetteEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/ShaderEffects/VignetteEffect.ps -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.csproj -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/SoundInTheory.DynamicImage.nuspec -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/SoundInTheory.OpenSource.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/SoundInTheory.OpenSource.snk -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/BytesImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/BytesImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/FileImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/FileImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/ImageImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/ImageImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/ImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/ImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/RemoteImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/RemoteImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Sources/SqlDatabaseImageSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Sources/SqlDatabaseImageSource.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/TextAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/TextAlignment.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Unit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Unit.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/UnitType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/UnitType.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/CanonicalSplineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/CanonicalSplineUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ColorExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ColorExtensionMethods.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/CubicSplineUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/CubicSplineUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/DispatcherTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/DispatcherTaskScheduler.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/FastBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/FastBitmap.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/FileSourceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/FileSourceHelper.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ImageGenerationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ImageGenerationContext.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Int32RectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Int32RectUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Int32Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Int32Size.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/MathUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/MathUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/PhotoshopCurvesReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/PhotoshopCurvesReader.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/RenderTargetBitmapUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/RenderTargetBitmapUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/ShaderEffectUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/ShaderEffectUtility.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/Util/Util.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/Util/Util.cs -------------------------------------------------------------------------------- /src/SoundInTheory.DynamicImage/VerticalAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/SoundInTheory.DynamicImage/VerticalAlignment.cs -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/DotWarp.1.2.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/DotWarp.1.2.1.nupkg -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/DotWarp.1.2.1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/DotWarp.1.2.1.nuspec -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/LICENSE.txt -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/lib/NET40/DotWarp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/lib/NET40/DotWarp.dll -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.D3DCompiler.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.D3DCompiler.dll -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.DXGI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.DXGI.dll -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.Direct3D11.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.Direct3D11.dll -------------------------------------------------------------------------------- /src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/DotWarp.1.2.1/lib/NET40/SharpDX.dll -------------------------------------------------------------------------------- /src/packages/LowercaseRoutesMVC.1.0.3/LowercaseRoutesMVC.1.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/LowercaseRoutesMVC.1.0.3/LowercaseRoutesMVC.1.0.3.nupkg -------------------------------------------------------------------------------- /src/packages/LowercaseRoutesMVC.1.0.3/LowercaseRoutesMVC.1.0.3.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/LowercaseRoutesMVC.1.0.3/LowercaseRoutesMVC.1.0.3.nuspec -------------------------------------------------------------------------------- /src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.XML -------------------------------------------------------------------------------- /src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.dll -------------------------------------------------------------------------------- /src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/LowercaseRoutesMVC.1.0.3/lib/LowercaseRoutesMVC.pdb -------------------------------------------------------------------------------- /src/packages/Meshellator.1.0.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Meshellator.1.0.0.0/LICENSE.txt -------------------------------------------------------------------------------- /src/packages/Meshellator.1.0.0.0/Meshellator.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Meshellator.1.0.0.0/Meshellator.1.0.0.0.nupkg -------------------------------------------------------------------------------- /src/packages/Meshellator.1.0.0.0/Meshellator.1.0.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Meshellator.1.0.0.0/Meshellator.1.0.0.0.nuspec -------------------------------------------------------------------------------- /src/packages/Meshellator.1.0.0.0/lib/NET40/Meshellator.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Meshellator.1.0.0.0/lib/NET40/Meshellator.dll -------------------------------------------------------------------------------- /src/packages/Meshellator.1.0.0.0/lib/SL4/Meshellator.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Meshellator.1.0.0.0/lib/SL4/Meshellator.Silverlight.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/Microsoft.AspNet.Mvc.3.0.20105.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/Microsoft.AspNet.Mvc.3.0.20105.1.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/Microsoft.AspNet.Mvc.3.0.20105.1.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/Microsoft.AspNet.Mvc.3.0.20105.1.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.3.0.20105.1/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/Microsoft.AspNet.Mvc.4.0.20710.0.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Mvc.4.0.20710.0/lib/net40/System.Web.Mvc.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.1.0.20105.408/Microsoft.AspNet.Razor.1.0.20105.408.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.1.0.20105.408/Microsoft.AspNet.Razor.1.0.20105.408.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.1.0.20105.408/Microsoft.AspNet.Razor.1.0.20105.408.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.1.0.20105.408/Microsoft.AspNet.Razor.1.0.20105.408.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.1.0.20105.408/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.1.0.20105.408/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.2.0.20715.0/Microsoft.AspNet.Razor.2.0.20715.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.2.0.20715.0/Microsoft.AspNet.Razor.2.0.20715.0.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.2.0.20715.0/Microsoft.AspNet.Razor.2.0.20715.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.2.0.20715.0/Microsoft.AspNet.Razor.2.0.20715.0.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.2.0.20715.0/lib/net40/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.2.0.20715.0/lib/net40/System.Web.Razor.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.Razor.2.0.20715.0/lib/net40/System.Web.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.Razor.2.0.20715.0/lib/net40/System.Web.Razor.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/Microsoft.AspNet.WebPages.1.0.20105.408.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/Microsoft.AspNet.WebPages.1.0.20105.408.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/Microsoft.AspNet.WebPages.1.0.20105.408.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/Microsoft.AspNet.WebPages.1.0.20105.408.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.1.0.20105.408/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/Microsoft.AspNet.WebPages.2.0.20710.0.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.Helpers.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Deployment.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.Razor.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.dll -------------------------------------------------------------------------------- /src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.AspNet.WebPages.2.0.20710.0/lib/net40/System.Web.WebPages.xml -------------------------------------------------------------------------------- /src/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /src/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nuspec -------------------------------------------------------------------------------- /src/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NUnit.2.6.2/NUnit.2.6.2.nupkg -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/NUnit.2.6.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NUnit.2.6.2/NUnit.2.6.2.nuspec -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NUnit.2.6.2/lib/nunit.framework.dll -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NUnit.2.6.2/lib/nunit.framework.xml -------------------------------------------------------------------------------- /src/packages/NUnit.2.6.2/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NUnit.2.6.2/license.txt -------------------------------------------------------------------------------- /src/packages/Nexus.1.0.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.1.0.0.0/LICENSE.txt -------------------------------------------------------------------------------- /src/packages/Nexus.1.0.0.0/Nexus.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.1.0.0.0/Nexus.1.0.0.0.nupkg -------------------------------------------------------------------------------- /src/packages/Nexus.1.0.0.0/Nexus.1.0.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.1.0.0.0/Nexus.1.0.0.0.nuspec -------------------------------------------------------------------------------- /src/packages/Nexus.1.0.0.0/lib/NET40/Nexus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.1.0.0.0/lib/NET40/Nexus.dll -------------------------------------------------------------------------------- /src/packages/Nexus.1.0.0.0/lib/SL4/Nexus.Silverlight.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.1.0.0.0/lib/SL4/Nexus.Silverlight.dll -------------------------------------------------------------------------------- /src/packages/Nexus.Wpf.1.0.0.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.Wpf.1.0.0.0/LICENSE.txt -------------------------------------------------------------------------------- /src/packages/Nexus.Wpf.1.0.0.0/Nexus.Wpf.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.Wpf.1.0.0.0/Nexus.Wpf.1.0.0.0.nupkg -------------------------------------------------------------------------------- /src/packages/Nexus.Wpf.1.0.0.0/Nexus.Wpf.1.0.0.0.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.Wpf.1.0.0.0/Nexus.Wpf.1.0.0.0.nuspec -------------------------------------------------------------------------------- /src/packages/Nexus.Wpf.1.0.0.0/lib/NET40/Nexus.Wpf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Nexus.Wpf.1.0.0.0/lib/NET40/Nexus.Wpf.dll -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.6.0/NuGet.CommandLine.1.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NuGet.CommandLine.1.6.0/NuGet.CommandLine.1.6.0.nupkg -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.6.0/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/NuGet.CommandLine.1.6.0/tools/NuGet.exe -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nupkg -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/Prettify.3.3.04.2013.nuspec -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/desert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/desert.css -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/doxy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/doxy.css -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sons-of-obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sons-of-obsidian.css -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Content/Prettify/Themes/sunburst.css -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Content/Prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Content/Prettify/prettify.css -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-apollo.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-basic.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-clj.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-css.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-dart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-dart.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-erlang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-erlang.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-go.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-hs.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lisp.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-llvm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-llvm.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-lua.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-matlab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-matlab.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-ml.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-mumps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-mumps.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-n.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-pascal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-pascal.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-proto.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-r.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-rd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-rd.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-scala.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-sql.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tcl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tcl.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-tex.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vb.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-vhdl.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-wiki.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-xq.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/lang-yaml.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/prettify.js -------------------------------------------------------------------------------- /src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/run_prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/Prettify.3.3.04.2013/content/Scripts/Prettify/run_prettify.js -------------------------------------------------------------------------------- /src/packages/WebActivatorEx.2.0.2/WebActivatorEx.2.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/WebActivatorEx.2.0.2/WebActivatorEx.2.0.2.nupkg -------------------------------------------------------------------------------- /src/packages/WebActivatorEx.2.0.2/WebActivatorEx.2.0.2.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/WebActivatorEx.2.0.2/WebActivatorEx.2.0.2.nuspec -------------------------------------------------------------------------------- /src/packages/WebActivatorEx.2.0.2/lib/net40/WebActivatorEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/WebActivatorEx.2.0.2/lib/net40/WebActivatorEx.dll -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/psake.4.0.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/psake.4.0.1.0.nupkg -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/README.markdown -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/chocolateyInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/chocolateyInstall.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/en-US/psake.psm1-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/en-US/psake.psm1-help.xml -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/checkvariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/checkvariables.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/continueonerror.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/continueonerror.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/default.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/formattaskname_scriptblock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/formattaskname_scriptblock.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/formattaskname_string.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/formattaskname_string.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested/nested1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested/nested1.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/nested/nested2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/nested/nested2.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/parameters.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/passingParametersString/build.Release.Version.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/passingParametersString/build.Release.Version.bat -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/passingParametersString/parameters.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/passingParametersString/parameters.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/preandpostaction.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/preandpostaction.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/examples/properties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/examples/properties.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/SakeBottle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/SakeBottle.jpg -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/SakeBottleLicense.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/SakeBottleLicense.txt -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/psake.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/psake.pdn -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/images/psake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/images/psake.png -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/init.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-buildTester.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-buildTester.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-config.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake-help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake-help.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.cmd -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/psake.psm1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/bad_PreAndPostActions_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/bad_PreAndPostActions_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/calling_invoke-task_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/calling_invoke-task_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/circular_dependency_in_tasks_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/circular_dependency_in_tasks_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/default_task_with_action_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/default_task_with_action_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/dotNet4_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/dotNet4_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/duplicate_tasks_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/duplicate_tasks_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/explicitly_specified_32bit_build_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/explicitly_specified_32bit_build_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/failing_postcondition_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/failing_postcondition_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/missing_task_should_fail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/missing_task_should_fail.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/multiline_blocks_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/multiline_blocks_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested/nested1.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested/nested1.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested/nested2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested/nested2.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/nested_builds_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/nested_builds_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/running_aspnet_compiler_under_dotNet35_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/running_aspnet_compiler_under_dotNet35_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/simple_properties_and_tasks_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/simple_properties_and_tasks_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/tasksetup_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/tasksetup_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_PreAndPostActions_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_PreAndPostActions_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_msbuild_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_msbuild_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_parameters_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_parameters_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_postcondition_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_postcondition_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_precondition_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_precondition_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/using_properties_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/using_properties_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/specs/writing_psake_variables_should_pass.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/specs/writing_psake_variables_should_pass.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/tabexpansion/PsakeTabExpansion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/tabexpansion/PsakeTabExpansion.ps1 -------------------------------------------------------------------------------- /src/packages/psake.4.0.1.0/tools/tabexpansion/Readme.PsakeTab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/psake.4.0.1.0/tools/tabexpansion/Readme.PsakeTab.txt -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgjones/dynamic-image/HEAD/src/packages/repositories.config --------------------------------------------------------------------------------