├── LICENSE ├── README.markdown ├── demo-jquery.htm ├── dropfile.js ├── dropfile.xap ├── index.html └── source ├── DragDropDemo.suo ├── dropfile.sln ├── dropfile.suo ├── dropfile.web ├── ClientBin │ ├── dropfile.js │ └── dropfile.xap ├── DragDropDemo.Web.Publish.xml ├── DropFile.Web.Publish.xml ├── DropFile.Web.csproj ├── DropFile.Web.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── bin │ ├── DragDropDemo.Web.dll │ └── DragDropDemo.Web.pdb ├── index.html └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── DragDropDemo.Web.csproj.FileListAbsolute.txt │ ├── DragDropDemo.Web.dll │ ├── DragDropDemo.Web.pdb │ ├── DropFile.Web.csproj.FileListAbsolute.txt │ ├── Package │ └── PackageTmp │ │ ├── ClientBin │ │ ├── slDropFile.js │ │ └── slDropFile.xap │ │ ├── Web.config │ │ ├── bin │ │ ├── DragDropDemo.Web.dll │ │ └── DragDropDemo.Web.pdb │ │ └── index.html │ └── TransformWebConfig │ ├── original │ └── Web.config │ └── transformed │ └── Web.config └── dropfile ├── App.xaml ├── App.xaml.cs ├── Bin └── Debug │ ├── AppManifest.xaml │ ├── DragDropDemo.dll │ ├── DragDropDemo.pdb │ ├── DragDropDemo.xap │ ├── DropFile.dll │ ├── DropFile.pdb │ ├── TestPage.html │ └── dropfile.xap ├── DropFile.csproj ├── DropFile.csproj.user ├── MainPage.xaml ├── MainPage.xaml.cs ├── Properties ├── AppManifest.xml ├── AssemblyInfo.cs └── OutOfBrowserSettings.xml └── obj └── Debug ├── App.g.cs ├── App.g.i.cs ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── DragDropDemo.csproj.FileListAbsolute.txt ├── DragDropDemo.dll ├── DragDropDemo.g.resources ├── DragDropDemo.pdb ├── DropFile.csproj.FileListAbsolute.txt ├── DropFile.dll ├── DropFile.g.resources ├── DropFile.pdb ├── MainPage.g.cs ├── MainPage.g.i.cs ├── XapCacheFile.xml └── slDropFile.csproj.FileListAbsolute.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/README.markdown -------------------------------------------------------------------------------- /demo-jquery.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/demo-jquery.htm -------------------------------------------------------------------------------- /dropfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/dropfile.js -------------------------------------------------------------------------------- /dropfile.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/dropfile.xap -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/index.html -------------------------------------------------------------------------------- /source/DragDropDemo.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/DragDropDemo.suo -------------------------------------------------------------------------------- /source/dropfile.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.sln -------------------------------------------------------------------------------- /source/dropfile.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.suo -------------------------------------------------------------------------------- /source/dropfile.web/ClientBin/dropfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/ClientBin/dropfile.js -------------------------------------------------------------------------------- /source/dropfile.web/ClientBin/dropfile.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/ClientBin/dropfile.xap -------------------------------------------------------------------------------- /source/dropfile.web/DragDropDemo.Web.Publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/DragDropDemo.Web.Publish.xml -------------------------------------------------------------------------------- /source/dropfile.web/DropFile.Web.Publish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/DropFile.Web.Publish.xml -------------------------------------------------------------------------------- /source/dropfile.web/DropFile.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/DropFile.Web.csproj -------------------------------------------------------------------------------- /source/dropfile.web/DropFile.Web.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/DropFile.Web.csproj.user -------------------------------------------------------------------------------- /source/dropfile.web/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/dropfile.web/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/Web.Debug.config -------------------------------------------------------------------------------- /source/dropfile.web/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/Web.Release.config -------------------------------------------------------------------------------- /source/dropfile.web/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/Web.config -------------------------------------------------------------------------------- /source/dropfile.web/bin/DragDropDemo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/bin/DragDropDemo.Web.dll -------------------------------------------------------------------------------- /source/dropfile.web/bin/DragDropDemo.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/bin/DragDropDemo.Web.pdb -------------------------------------------------------------------------------- /source/dropfile.web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/index.html -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/DragDropDemo.Web.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/DragDropDemo.Web.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/DragDropDemo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/DragDropDemo.Web.dll -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/DragDropDemo.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/DragDropDemo.Web.pdb -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/DropFile.Web.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/DropFile.Web.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/ClientBin/slDropFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/ClientBin/slDropFile.js -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/ClientBin/slDropFile.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/ClientBin/slDropFile.xap -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/Web.config -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/bin/DragDropDemo.Web.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/bin/DragDropDemo.Web.dll -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/bin/DragDropDemo.Web.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/bin/DragDropDemo.Web.pdb -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/Package/PackageTmp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/Package/PackageTmp/index.html -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/TransformWebConfig/original/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/TransformWebConfig/original/Web.config -------------------------------------------------------------------------------- /source/dropfile.web/obj/Debug/TransformWebConfig/transformed/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile.web/obj/Debug/TransformWebConfig/transformed/Web.config -------------------------------------------------------------------------------- /source/dropfile/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/App.xaml -------------------------------------------------------------------------------- /source/dropfile/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/App.xaml.cs -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/AppManifest.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/AppManifest.xaml -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/DragDropDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/DragDropDemo.dll -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/DragDropDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/DragDropDemo.pdb -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/DragDropDemo.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/DragDropDemo.xap -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/DropFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/DropFile.dll -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/DropFile.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/DropFile.pdb -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/TestPage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/TestPage.html -------------------------------------------------------------------------------- /source/dropfile/Bin/Debug/dropfile.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Bin/Debug/dropfile.xap -------------------------------------------------------------------------------- /source/dropfile/DropFile.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/DropFile.csproj -------------------------------------------------------------------------------- /source/dropfile/DropFile.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/DropFile.csproj.user -------------------------------------------------------------------------------- /source/dropfile/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/MainPage.xaml -------------------------------------------------------------------------------- /source/dropfile/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/MainPage.xaml.cs -------------------------------------------------------------------------------- /source/dropfile/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Properties/AppManifest.xml -------------------------------------------------------------------------------- /source/dropfile/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/dropfile/Properties/OutOfBrowserSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/Properties/OutOfBrowserSettings.xml -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/App.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/App.g.cs -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/App.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/App.g.i.cs -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DragDropDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DragDropDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DragDropDemo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DragDropDemo.dll -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DragDropDemo.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DragDropDemo.g.resources -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DragDropDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DragDropDemo.pdb -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DropFile.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DropFile.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DropFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DropFile.dll -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DropFile.g.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DropFile.g.resources -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/DropFile.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/DropFile.pdb -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/MainPage.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/MainPage.g.cs -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/MainPage.g.i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/MainPage.g.i.cs -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/XapCacheFile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/XapCacheFile.xml -------------------------------------------------------------------------------- /source/dropfile/obj/Debug/slDropFile.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrSwitch/dropfile/HEAD/source/dropfile/obj/Debug/slDropFile.csproj.FileListAbsolute.txt --------------------------------------------------------------------------------