├── .gitignore ├── Contributors.txt ├── Copyright.txt ├── Instructions.txt ├── License.txt ├── README.md ├── Release notes.txt └── Sources ├── .gitignore ├── Bindings.cs ├── Controls ├── BindableNotifyIcon.cs ├── BindableToolStripButton.cs ├── BindableToolStripDropDownButton.cs ├── BindableToolStripMenuItem.cs ├── BindableToolStripSplitButton.cs ├── BindableToolStripStatusLabel.cs ├── BindableToolStripTextBox.cs ├── ExplorerBrowserCustom.Designer.cs ├── ExplorerBrowserCustom.cs ├── ExplorerBrowserCustom.pt.resx ├── ExplorerBrowserCustom.resx └── HotKey.cs ├── Diagrams ├── Application.cd ├── Application.png ├── NativeInterop.cd └── NativeInterop.png ├── Extensions.cs ├── Externals └── WinAPI │ ├── Microsoft.WindowsAPICodePack.Shell.dll │ └── Microsoft.WindowsAPICodePack.dll ├── FodyWeavers.xml ├── GlobalSuppressions.cs ├── Native ├── Context │ ├── NativeKeyboardContext.cs │ └── NativeMouseContext.cs ├── CustomKeysConverter.cs ├── Handles │ ├── BitmapHandle.cs │ ├── DeviceHandle.cs │ ├── HookHandle.cs │ ├── IconHandle.cs │ ├── IconHandleInfo.cs │ └── WindowHandle.cs ├── Hooks │ ├── LowLevelKeyboard.cs │ └── LowLevelMouse.cs ├── NativeMethods.Dwmapi.cs ├── NativeMethods.Gdi32.cs ├── NativeMethods.Kernel32.cs ├── NativeMethods.User32.cs └── SafeNativeMethods.cs ├── Processors ├── CaptureClick.cs ├── CaptureCursor.cs └── CaptureKeyboard.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Dictionary.xml ├── GlobalSuppressions.cs ├── Resources.Designer.cs ├── Resources.pt.Designer.cs ├── Resources.pt.resx ├── Resources.resx ├── Settings.Designer.cs ├── Settings.cs └── Settings.settings ├── Resources ├── Copyright.txt ├── advancedsettings.png ├── agt_family-off.png ├── agt_family.png ├── aktion.png ├── aktion1.png ├── aktion16.png ├── camera.ico ├── camera.png ├── camera_unmount.png ├── desktop-enhancements.png ├── desktop.png ├── folder_video.png ├── home.png ├── icon │ ├── resources │ │ ├── Copyright.txt │ │ ├── License.txt │ │ ├── ball-128.png │ │ ├── ball-16.png │ │ ├── ball-32.png │ │ ├── ball-64.png │ │ ├── display-128.png │ │ ├── display-16.png │ │ ├── display-32.png │ │ ├── display-64.png │ │ ├── screencast-128.pdn │ │ ├── screencast-16.pdn │ │ ├── screencast-32.pdn │ │ ├── screencast-64.pdn │ │ └── screencast-all.pptx │ ├── screencast-128.png │ ├── screencast-16.png │ ├── screencast-32.png │ └── screencast-64.png ├── icon_pause.png ├── icon_pause_overlay.ico ├── icon_pause_overlay.png ├── icon_play.png ├── icon_play_overlay.ico ├── icon_play_overlay.png ├── icon_record_overlay.ico ├── icon_record_overlay.png ├── icon_stop_overlay.ico ├── icon_stop_overlay.png ├── inline_image.png ├── kmid.png ├── kmixdocked.png ├── kmixdocked_mute.png ├── kpersonalizer.png ├── ksnapshot.png ├── kview.png ├── masters │ ├── icon_pause_overlay.pdn │ ├── icon_play_overlay.pdn │ ├── icon_record_overlay.pdn │ └── icon_stop_overlay.pdn ├── mix_record.png ├── mix_video.png ├── player_eject.png ├── player_end.png ├── player_fwd.png ├── player_pause.png ├── player_play.png ├── player_rew.png ├── player_stop.png ├── screencast.ico ├── sharemanager.png ├── stop.png ├── thumbnail.png └── top.png ├── Screen Capture (accord).csproj ├── Screen Capture (sample).csproj ├── ScreenCapture.csproj ├── ScreenCapture.csproj.user ├── ScreenCapture.psess ├── ScreenCapture.ruleset ├── ScreenCapture.sln ├── ScreenCapture.sln.GhostDoc.xml ├── ScreenCapture.snk ├── Setup ├── setup.cmd └── setup.iss ├── ViewModels ├── AudioDeviceViewModel.cs ├── ConvertViewModel.cs ├── MainViewModel.cs ├── NotifyViewModel.cs ├── OptionViewModel.cs └── RecorderViewModel.cs ├── Views ├── CameraForm.Designer.cs ├── CameraForm.cs ├── CameraForm.pt.resx ├── CameraForm.resx ├── CaptureRegion.Designer.cs ├── CaptureRegion.cs ├── CaptureRegion.pt.resx ├── CaptureRegion.resx ├── CaptureWindow.Designer.cs ├── CaptureWindow.cs ├── CaptureWindow.pt.resx ├── CaptureWindow.resx ├── Dialog │ ├── CaptureDeviceDialog.Designer.cs │ ├── CaptureDeviceDialog.cs │ ├── CaptureDeviceDialog.pt.resx │ ├── CaptureDeviceDialog.resx │ ├── ConvertFormatDialog.Designer.cs │ ├── ConvertFormatDialog.cs │ ├── ConvertFormatDialog.pt.resx │ ├── ConvertFormatDialog.resx │ ├── KeyboardPreviewForm.Designer.cs │ ├── KeyboardPreviewForm.cs │ └── KeyboardPreviewForm.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.pt.resx ├── MainForm.resx ├── OptionForm.Designer.cs ├── OptionForm.cs ├── OptionForm.pt.resx └── OptionForm.resx ├── app.config ├── app.manifest ├── clean.cmd └── packages.config /.gitignore: -------------------------------------------------------------------------------- 1 | /Binaries/ 2 | -------------------------------------------------------------------------------- /Contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Contributors.txt -------------------------------------------------------------------------------- /Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Copyright.txt -------------------------------------------------------------------------------- /Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Instructions.txt -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/README.md -------------------------------------------------------------------------------- /Release notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Release notes.txt -------------------------------------------------------------------------------- /Sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/.gitignore -------------------------------------------------------------------------------- /Sources/Bindings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Bindings.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableNotifyIcon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableNotifyIcon.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripButton.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripDropDownButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripDropDownButton.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripMenuItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripMenuItem.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripSplitButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripSplitButton.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripStatusLabel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripStatusLabel.cs -------------------------------------------------------------------------------- /Sources/Controls/BindableToolStripTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/BindableToolStripTextBox.cs -------------------------------------------------------------------------------- /Sources/Controls/ExplorerBrowserCustom.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/ExplorerBrowserCustom.Designer.cs -------------------------------------------------------------------------------- /Sources/Controls/ExplorerBrowserCustom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/ExplorerBrowserCustom.cs -------------------------------------------------------------------------------- /Sources/Controls/ExplorerBrowserCustom.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/ExplorerBrowserCustom.pt.resx -------------------------------------------------------------------------------- /Sources/Controls/ExplorerBrowserCustom.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/ExplorerBrowserCustom.resx -------------------------------------------------------------------------------- /Sources/Controls/HotKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Controls/HotKey.cs -------------------------------------------------------------------------------- /Sources/Diagrams/Application.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Diagrams/Application.cd -------------------------------------------------------------------------------- /Sources/Diagrams/Application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Diagrams/Application.png -------------------------------------------------------------------------------- /Sources/Diagrams/NativeInterop.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Diagrams/NativeInterop.cd -------------------------------------------------------------------------------- /Sources/Diagrams/NativeInterop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Diagrams/NativeInterop.png -------------------------------------------------------------------------------- /Sources/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Extensions.cs -------------------------------------------------------------------------------- /Sources/Externals/WinAPI/Microsoft.WindowsAPICodePack.Shell.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Externals/WinAPI/Microsoft.WindowsAPICodePack.Shell.dll -------------------------------------------------------------------------------- /Sources/Externals/WinAPI/Microsoft.WindowsAPICodePack.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Externals/WinAPI/Microsoft.WindowsAPICodePack.dll -------------------------------------------------------------------------------- /Sources/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/FodyWeavers.xml -------------------------------------------------------------------------------- /Sources/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Sources/Native/Context/NativeKeyboardContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Context/NativeKeyboardContext.cs -------------------------------------------------------------------------------- /Sources/Native/Context/NativeMouseContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Context/NativeMouseContext.cs -------------------------------------------------------------------------------- /Sources/Native/CustomKeysConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/CustomKeysConverter.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/BitmapHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/BitmapHandle.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/DeviceHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/DeviceHandle.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/HookHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/HookHandle.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/IconHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/IconHandle.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/IconHandleInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/IconHandleInfo.cs -------------------------------------------------------------------------------- /Sources/Native/Handles/WindowHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Handles/WindowHandle.cs -------------------------------------------------------------------------------- /Sources/Native/Hooks/LowLevelKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Hooks/LowLevelKeyboard.cs -------------------------------------------------------------------------------- /Sources/Native/Hooks/LowLevelMouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/Hooks/LowLevelMouse.cs -------------------------------------------------------------------------------- /Sources/Native/NativeMethods.Dwmapi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/NativeMethods.Dwmapi.cs -------------------------------------------------------------------------------- /Sources/Native/NativeMethods.Gdi32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/NativeMethods.Gdi32.cs -------------------------------------------------------------------------------- /Sources/Native/NativeMethods.Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/NativeMethods.Kernel32.cs -------------------------------------------------------------------------------- /Sources/Native/NativeMethods.User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/NativeMethods.User32.cs -------------------------------------------------------------------------------- /Sources/Native/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Native/SafeNativeMethods.cs -------------------------------------------------------------------------------- /Sources/Processors/CaptureClick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Processors/CaptureClick.cs -------------------------------------------------------------------------------- /Sources/Processors/CaptureCursor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Processors/CaptureCursor.cs -------------------------------------------------------------------------------- /Sources/Processors/CaptureKeyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Processors/CaptureKeyboard.cs -------------------------------------------------------------------------------- /Sources/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Program.cs -------------------------------------------------------------------------------- /Sources/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sources/Properties/Dictionary.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Dictionary.xml -------------------------------------------------------------------------------- /Sources/Properties/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Sources/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sources/Properties/Resources.pt.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Properties/Resources.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Resources.pt.resx -------------------------------------------------------------------------------- /Sources/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Resources.resx -------------------------------------------------------------------------------- /Sources/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sources/Properties/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Settings.cs -------------------------------------------------------------------------------- /Sources/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Properties/Settings.settings -------------------------------------------------------------------------------- /Sources/Resources/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/Copyright.txt -------------------------------------------------------------------------------- /Sources/Resources/advancedsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/advancedsettings.png -------------------------------------------------------------------------------- /Sources/Resources/agt_family-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/agt_family-off.png -------------------------------------------------------------------------------- /Sources/Resources/agt_family.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/agt_family.png -------------------------------------------------------------------------------- /Sources/Resources/aktion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/aktion.png -------------------------------------------------------------------------------- /Sources/Resources/aktion1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/aktion1.png -------------------------------------------------------------------------------- /Sources/Resources/aktion16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/aktion16.png -------------------------------------------------------------------------------- /Sources/Resources/camera.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/camera.ico -------------------------------------------------------------------------------- /Sources/Resources/camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/camera.png -------------------------------------------------------------------------------- /Sources/Resources/camera_unmount.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/camera_unmount.png -------------------------------------------------------------------------------- /Sources/Resources/desktop-enhancements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/desktop-enhancements.png -------------------------------------------------------------------------------- /Sources/Resources/desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/desktop.png -------------------------------------------------------------------------------- /Sources/Resources/folder_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/folder_video.png -------------------------------------------------------------------------------- /Sources/Resources/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/home.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/Copyright.txt -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/License.txt -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/ball-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/ball-128.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/ball-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/ball-16.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/ball-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/ball-32.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/ball-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/ball-64.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/display-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/display-128.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/display-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/display-16.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/display-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/display-32.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/display-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/display-64.png -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/screencast-128.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/screencast-128.pdn -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/screencast-16.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/screencast-16.pdn -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/screencast-32.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/screencast-32.pdn -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/screencast-64.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/screencast-64.pdn -------------------------------------------------------------------------------- /Sources/Resources/icon/resources/screencast-all.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/resources/screencast-all.pptx -------------------------------------------------------------------------------- /Sources/Resources/icon/screencast-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/screencast-128.png -------------------------------------------------------------------------------- /Sources/Resources/icon/screencast-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/screencast-16.png -------------------------------------------------------------------------------- /Sources/Resources/icon/screencast-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/screencast-32.png -------------------------------------------------------------------------------- /Sources/Resources/icon/screencast-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon/screencast-64.png -------------------------------------------------------------------------------- /Sources/Resources/icon_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_pause.png -------------------------------------------------------------------------------- /Sources/Resources/icon_pause_overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_pause_overlay.ico -------------------------------------------------------------------------------- /Sources/Resources/icon_pause_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_pause_overlay.png -------------------------------------------------------------------------------- /Sources/Resources/icon_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_play.png -------------------------------------------------------------------------------- /Sources/Resources/icon_play_overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_play_overlay.ico -------------------------------------------------------------------------------- /Sources/Resources/icon_play_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_play_overlay.png -------------------------------------------------------------------------------- /Sources/Resources/icon_record_overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_record_overlay.ico -------------------------------------------------------------------------------- /Sources/Resources/icon_record_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_record_overlay.png -------------------------------------------------------------------------------- /Sources/Resources/icon_stop_overlay.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_stop_overlay.ico -------------------------------------------------------------------------------- /Sources/Resources/icon_stop_overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/icon_stop_overlay.png -------------------------------------------------------------------------------- /Sources/Resources/inline_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/inline_image.png -------------------------------------------------------------------------------- /Sources/Resources/kmid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/kmid.png -------------------------------------------------------------------------------- /Sources/Resources/kmixdocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/kmixdocked.png -------------------------------------------------------------------------------- /Sources/Resources/kmixdocked_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/kmixdocked_mute.png -------------------------------------------------------------------------------- /Sources/Resources/kpersonalizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/kpersonalizer.png -------------------------------------------------------------------------------- /Sources/Resources/ksnapshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/ksnapshot.png -------------------------------------------------------------------------------- /Sources/Resources/kview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/kview.png -------------------------------------------------------------------------------- /Sources/Resources/masters/icon_pause_overlay.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/masters/icon_pause_overlay.pdn -------------------------------------------------------------------------------- /Sources/Resources/masters/icon_play_overlay.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/masters/icon_play_overlay.pdn -------------------------------------------------------------------------------- /Sources/Resources/masters/icon_record_overlay.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/masters/icon_record_overlay.pdn -------------------------------------------------------------------------------- /Sources/Resources/masters/icon_stop_overlay.pdn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/masters/icon_stop_overlay.pdn -------------------------------------------------------------------------------- /Sources/Resources/mix_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/mix_record.png -------------------------------------------------------------------------------- /Sources/Resources/mix_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/mix_video.png -------------------------------------------------------------------------------- /Sources/Resources/player_eject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_eject.png -------------------------------------------------------------------------------- /Sources/Resources/player_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_end.png -------------------------------------------------------------------------------- /Sources/Resources/player_fwd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_fwd.png -------------------------------------------------------------------------------- /Sources/Resources/player_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_pause.png -------------------------------------------------------------------------------- /Sources/Resources/player_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_play.png -------------------------------------------------------------------------------- /Sources/Resources/player_rew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_rew.png -------------------------------------------------------------------------------- /Sources/Resources/player_stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/player_stop.png -------------------------------------------------------------------------------- /Sources/Resources/screencast.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/screencast.ico -------------------------------------------------------------------------------- /Sources/Resources/sharemanager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/sharemanager.png -------------------------------------------------------------------------------- /Sources/Resources/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/stop.png -------------------------------------------------------------------------------- /Sources/Resources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/thumbnail.png -------------------------------------------------------------------------------- /Sources/Resources/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Resources/top.png -------------------------------------------------------------------------------- /Sources/Screen Capture (accord).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Screen Capture (accord).csproj -------------------------------------------------------------------------------- /Sources/Screen Capture (sample).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Screen Capture (sample).csproj -------------------------------------------------------------------------------- /Sources/ScreenCapture.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.csproj -------------------------------------------------------------------------------- /Sources/ScreenCapture.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.csproj.user -------------------------------------------------------------------------------- /Sources/ScreenCapture.psess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.psess -------------------------------------------------------------------------------- /Sources/ScreenCapture.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.ruleset -------------------------------------------------------------------------------- /Sources/ScreenCapture.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.sln -------------------------------------------------------------------------------- /Sources/ScreenCapture.sln.GhostDoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.sln.GhostDoc.xml -------------------------------------------------------------------------------- /Sources/ScreenCapture.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ScreenCapture.snk -------------------------------------------------------------------------------- /Sources/Setup/setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Setup/setup.cmd -------------------------------------------------------------------------------- /Sources/Setup/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Setup/setup.iss -------------------------------------------------------------------------------- /Sources/ViewModels/AudioDeviceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/AudioDeviceViewModel.cs -------------------------------------------------------------------------------- /Sources/ViewModels/ConvertViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/ConvertViewModel.cs -------------------------------------------------------------------------------- /Sources/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /Sources/ViewModels/NotifyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/NotifyViewModel.cs -------------------------------------------------------------------------------- /Sources/ViewModels/OptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/OptionViewModel.cs -------------------------------------------------------------------------------- /Sources/ViewModels/RecorderViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/ViewModels/RecorderViewModel.cs -------------------------------------------------------------------------------- /Sources/Views/CameraForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CameraForm.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/CameraForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CameraForm.cs -------------------------------------------------------------------------------- /Sources/Views/CameraForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CameraForm.pt.resx -------------------------------------------------------------------------------- /Sources/Views/CameraForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CameraForm.resx -------------------------------------------------------------------------------- /Sources/Views/CaptureRegion.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureRegion.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/CaptureRegion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureRegion.cs -------------------------------------------------------------------------------- /Sources/Views/CaptureRegion.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureRegion.pt.resx -------------------------------------------------------------------------------- /Sources/Views/CaptureRegion.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureRegion.resx -------------------------------------------------------------------------------- /Sources/Views/CaptureWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureWindow.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/CaptureWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureWindow.cs -------------------------------------------------------------------------------- /Sources/Views/CaptureWindow.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureWindow.pt.resx -------------------------------------------------------------------------------- /Sources/Views/CaptureWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/CaptureWindow.resx -------------------------------------------------------------------------------- /Sources/Views/Dialog/CaptureDeviceDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/CaptureDeviceDialog.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/CaptureDeviceDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/CaptureDeviceDialog.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/CaptureDeviceDialog.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/CaptureDeviceDialog.pt.resx -------------------------------------------------------------------------------- /Sources/Views/Dialog/CaptureDeviceDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/CaptureDeviceDialog.resx -------------------------------------------------------------------------------- /Sources/Views/Dialog/ConvertFormatDialog.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/ConvertFormatDialog.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/ConvertFormatDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/ConvertFormatDialog.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/ConvertFormatDialog.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/ConvertFormatDialog.pt.resx -------------------------------------------------------------------------------- /Sources/Views/Dialog/ConvertFormatDialog.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/ConvertFormatDialog.resx -------------------------------------------------------------------------------- /Sources/Views/Dialog/KeyboardPreviewForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/KeyboardPreviewForm.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/KeyboardPreviewForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/KeyboardPreviewForm.cs -------------------------------------------------------------------------------- /Sources/Views/Dialog/KeyboardPreviewForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/Dialog/KeyboardPreviewForm.resx -------------------------------------------------------------------------------- /Sources/Views/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/MainForm.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/MainForm.cs -------------------------------------------------------------------------------- /Sources/Views/MainForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/MainForm.pt.resx -------------------------------------------------------------------------------- /Sources/Views/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/MainForm.resx -------------------------------------------------------------------------------- /Sources/Views/OptionForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/OptionForm.Designer.cs -------------------------------------------------------------------------------- /Sources/Views/OptionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/OptionForm.cs -------------------------------------------------------------------------------- /Sources/Views/OptionForm.pt.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/OptionForm.pt.resx -------------------------------------------------------------------------------- /Sources/Views/OptionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/Views/OptionForm.resx -------------------------------------------------------------------------------- /Sources/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/app.config -------------------------------------------------------------------------------- /Sources/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/app.manifest -------------------------------------------------------------------------------- /Sources/clean.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/clean.cmd -------------------------------------------------------------------------------- /Sources/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cesarsouza/screencast-capture/HEAD/Sources/packages.config --------------------------------------------------------------------------------