├── .gitignore ├── CONTRIBUTING.md ├── FileDownloadSample.sln ├── FileDownloadSample ├── FileDownloadSample.csproj └── FileDownloadSampleManifest │ ├── FileDownloadSample.xml │ └── SharePointProjectItem.spdata ├── FileDownloadSampleWeb ├── FileDownloadSampleWeb.csproj ├── Home.css ├── Home.html ├── Home.js ├── Images │ ├── Button16x16.png │ ├── Button32x32.png │ ├── Button80x80.png │ ├── Close.png │ └── logo-filled.png ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ └── _references.js ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── testdata.pdf ├── LICENSE ├── Office-Add-in-JavaScript-FileDownload.yml ├── README-Localized ├── README-de-de.md ├── README-es-es.md ├── README-fr-fr.md ├── README-ja-jp.md ├── README-pt-br.md ├── README-ru-ru.md ├── README-zh-cn.md └── README-zh-tw.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FileDownloadSample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSample.sln -------------------------------------------------------------------------------- /FileDownloadSample/FileDownloadSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSample/FileDownloadSample.csproj -------------------------------------------------------------------------------- /FileDownloadSample/FileDownloadSampleManifest/FileDownloadSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSample/FileDownloadSampleManifest/FileDownloadSample.xml -------------------------------------------------------------------------------- /FileDownloadSample/FileDownloadSampleManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSample/FileDownloadSampleManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /FileDownloadSampleWeb/FileDownloadSampleWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/FileDownloadSampleWeb.csproj -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Home.css -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Home.html -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Home.js -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Images/Button16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Images/Button16x16.png -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Images/Button32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Images/Button32x32.png -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Images/Button80x80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Images/Button80x80.png -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Images/Close.png -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Images/logo-filled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Images/logo-filled.png -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Scripts/_references.js -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Web.Debug.config -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Web.Release.config -------------------------------------------------------------------------------- /FileDownloadSampleWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/Web.config -------------------------------------------------------------------------------- /FileDownloadSampleWeb/testdata.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/FileDownloadSampleWeb/testdata.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/LICENSE -------------------------------------------------------------------------------- /Office-Add-in-JavaScript-FileDownload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/Office-Add-in-JavaScript-FileDownload.yml -------------------------------------------------------------------------------- /README-Localized/README-de-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-de-de.md -------------------------------------------------------------------------------- /README-Localized/README-es-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-es-es.md -------------------------------------------------------------------------------- /README-Localized/README-fr-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-fr-fr.md -------------------------------------------------------------------------------- /README-Localized/README-ja-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-ja-jp.md -------------------------------------------------------------------------------- /README-Localized/README-pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-pt-br.md -------------------------------------------------------------------------------- /README-Localized/README-ru-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-ru-ru.md -------------------------------------------------------------------------------- /README-Localized/README-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-zh-cn.md -------------------------------------------------------------------------------- /README-Localized/README-zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README-Localized/README-zh-tw.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Office-Add-in-JavaScript-FileDownload/HEAD/README.md --------------------------------------------------------------------------------