├── .gitattributes ├── .gitignore ├── README.md ├── Solution └── hebiangu │ └── WPF-ImagePlayer.sln └── Source ├── Application ├── HeBianGu.App.Demo.ImageCore │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── HeBianGu.App.Demo.ImageCore.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── HeBianGu.App.Demo.ImagePlayer │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── HeBianGu.App.Demo.ImagePlayer.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── packages.config ├── General └── HeBianGu.General.ImageCore │ ├── HeBianGu.General.ImageCore.csproj │ ├── HeBianGu.General.ImageCore.nuspec │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Provider │ ├── Behavior │ │ ├── ImageBaseMouseBubbleBehavior.cs │ │ ├── ImageBaseMouseDragBehavior.cs │ │ ├── ImageBaseMouseWheelBehavior.cs │ │ └── MouseRect │ │ │ ├── ImageBaseMouseDrawRectBehaviorBase.cs │ │ │ ├── ImageBaseMouseEnlargeBehavior.cs │ │ │ └── ImageBaseMouseSignBehavior.cs │ ├── Mark │ │ ├── IndicatorObject.cs │ │ ├── LoactionArgs.cs │ │ └── MaskCanvas.cs │ ├── OperateType.cs │ └── Rectangle │ │ ├── IRectangleStroke.cs │ │ ├── RectangleLayer.cs │ │ └── RectangleShape.cs │ ├── Themes │ ├── Default.xaml │ └── Generic.xaml │ ├── View │ ├── ImageCore.xaml │ └── ImageCore.xaml.cs │ ├── nuget-package.bat │ └── nuget-push.bat └── UserControl └── HeBianGu.Control.ImagePlayer ├── HeBianGu.Control.ImagePlayer.csproj ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Themes ├── Default.xaml └── Generic.xaml ├── View ├── ImagePlayer.xaml └── ImagePlayer.xaml.cs └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WPF-ImagePlayer 2 | -------------------------------------------------------------------------------- /Solution/hebiangu/WPF-ImagePlayer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Solution/hebiangu/WPF-ImagePlayer.sln -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/App.config -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/App.xaml -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/App.xaml.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/HeBianGu.App.Demo.ImageCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/HeBianGu.App.Demo.ImageCore.csproj -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/MainWindow.xaml -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImageCore/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/App.config -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/App.xaml -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/App.xaml.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/HeBianGu.App.Demo.ImagePlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/HeBianGu.App.Demo.ImagePlayer.csproj -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/MainWindow.xaml -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/Application/HeBianGu.App.Demo.ImagePlayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/Application/HeBianGu.App.Demo.ImagePlayer/packages.config -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/HeBianGu.General.ImageCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/HeBianGu.General.ImageCore.csproj -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/HeBianGu.General.ImageCore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/HeBianGu.General.ImageCore.nuspec -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseBubbleBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseBubbleBehavior.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseDragBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseDragBehavior.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseWheelBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/ImageBaseMouseWheelBehavior.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseDrawRectBehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseDrawRectBehaviorBase.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseEnlargeBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseEnlargeBehavior.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseSignBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Behavior/MouseRect/ImageBaseMouseSignBehavior.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Mark/IndicatorObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Mark/IndicatorObject.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Mark/LoactionArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Mark/LoactionArgs.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Mark/MaskCanvas.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Mark/MaskCanvas.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/OperateType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/OperateType.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/IRectangleStroke.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/IRectangleStroke.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/RectangleLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/RectangleLayer.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/RectangleShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Provider/Rectangle/RectangleShape.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Themes/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Themes/Default.xaml -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/Themes/Generic.xaml -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/View/ImageCore.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/View/ImageCore.xaml -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/View/ImageCore.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/View/ImageCore.xaml.cs -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/nuget-package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/nuget-package.bat -------------------------------------------------------------------------------- /Source/General/HeBianGu.General.ImageCore/nuget-push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/General/HeBianGu.General.ImageCore/nuget-push.bat -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/HeBianGu.Control.ImagePlayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/HeBianGu.Control.ImagePlayer.csproj -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Resources.resx -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Properties/Settings.settings -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Themes/Default.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Themes/Default.xaml -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/Themes/Generic.xaml -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/View/ImagePlayer.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/View/ImagePlayer.xaml -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/View/ImagePlayer.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/View/ImagePlayer.xaml.cs -------------------------------------------------------------------------------- /Source/UserControl/HeBianGu.Control.ImagePlayer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeBianGu/WPF-ImagePlayer/HEAD/Source/UserControl/HeBianGu.Control.ImagePlayer/packages.config --------------------------------------------------------------------------------