├── .gitattributes ├── .gitignore ├── .vs ├── WPD │ ├── v14 │ │ └── .suo │ └── v15 │ │ └── .suo └── config │ └── applicationhost.config ├── ConsoleClient ├── App.config ├── ConsoleClient.csproj ├── Program.cs └── Properties │ └── AssemblyInfo.cs ├── LICENSE ├── PortableDevices ├── PortableDevice.cs ├── PortableDeviceCollection.cs ├── PortableDeviceFile.cs ├── PortableDeviceFolder.cs ├── PortableDeviceObject.cs ├── PortableDevices.1.0.0.0.nupkg ├── PortableDevices.1.0.0.1.nupkg ├── PortableDevices.1.0.1.nupkg ├── PortableDevices.csproj ├── PortableDevices.csproj.user ├── PortableDevices.nuspec └── Properties │ └── AssemblyInfo.cs ├── README.md ├── WPD.sln └── WPD.v3.ncrunchsolution.user /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/WPD/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/.vs/WPD/v14/.suo -------------------------------------------------------------------------------- /.vs/WPD/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/.vs/WPD/v15/.suo -------------------------------------------------------------------------------- /.vs/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/.vs/config/applicationhost.config -------------------------------------------------------------------------------- /ConsoleClient/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/ConsoleClient/App.config -------------------------------------------------------------------------------- /ConsoleClient/ConsoleClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/ConsoleClient/ConsoleClient.csproj -------------------------------------------------------------------------------- /ConsoleClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/ConsoleClient/Program.cs -------------------------------------------------------------------------------- /ConsoleClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/ConsoleClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/LICENSE -------------------------------------------------------------------------------- /PortableDevices/PortableDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevice.cs -------------------------------------------------------------------------------- /PortableDevices/PortableDeviceCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDeviceCollection.cs -------------------------------------------------------------------------------- /PortableDevices/PortableDeviceFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDeviceFile.cs -------------------------------------------------------------------------------- /PortableDevices/PortableDeviceFolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDeviceFolder.cs -------------------------------------------------------------------------------- /PortableDevices/PortableDeviceObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDeviceObject.cs -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.1.0.0.0.nupkg -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.1.0.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.1.0.0.1.nupkg -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.1.0.1.nupkg -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.csproj -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.csproj.user -------------------------------------------------------------------------------- /PortableDevices/PortableDevices.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/PortableDevices.nuspec -------------------------------------------------------------------------------- /PortableDevices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/PortableDevices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # WPDApi 2 | https://www.nuget.org/packages/PortableDevices/1.0.1 3 | -------------------------------------------------------------------------------- /WPD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/WPD.sln -------------------------------------------------------------------------------- /WPD.v3.ncrunchsolution.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Duke-fleed/WPDApi/HEAD/WPD.v3.ncrunchsolution.user --------------------------------------------------------------------------------