forked from viddler/Viddler-.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
24 lines (19 loc) · 1.51 KB
/
README
File metadata and controls
24 lines (19 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Debug - binaries compiled using debug mode
- ViddlerV2.dll - compiled .NET wrapper library.
- ViddlerV2.pdb - debugging and project state information to help developers debug their applications, which reference the wrapper library.
- ViddlerV2.xml - XML documentation file - when used in Visual Studio - provides detailed description of classes and class members available in the wrapper library. It is also known as IntelliSense.
Demo
- ViddlerDemo.exe - simple demonstrator application, which uses .NET wrapper library.
- ViddlerV2.dll - compiled .NET wrapper library.
Doc
- ViddlerV2.chm - documentation, developer's help - describes all classes and class members available in the wrapper library; includes simple "how to start code sample"; describes how to configure the service.
Release - binaries compiled using release mode (optimized for high performance)
- ViddlerV2.dll - compiled .NET wrapper library.
- ViddlerV2.xml - XML documentation file - when used in Visual Studio - provides detailed description of classes and class members available in the wrapper library. It is also known as IntelliSense.
Source - source code of both, the wrapper library and demonstator application.
Updates:
v1.1 - Updated project to Visual Studio 2010
- Changed Viddler.Videos.GetByUser to provide parameter for Tags
- Added optional parameter "tags" to preserve backwards compatiblity without adding overload
- "tags" parameter must be comma separated list if more than one tag is desired
v1.0 - Initial Release