├── .gitignore ├── Code Editor project ├── App.css ├── App.js ├── HelpPop.html ├── Home.css ├── Home.html ├── Home.js ├── Images │ ├── Close.png │ ├── ExcelExport1.PNG │ ├── ExcelExport2.PNG │ ├── newWorksheet.PNG │ └── roster.PNG ├── Office.css ├── README.md ├── Scripts │ ├── Jquery.Dropdown.js │ ├── Office │ │ ├── 1.0 │ │ │ ├── ar-sa │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── bg-bg │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── cs-cz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── da-dk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── de-de │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── el-gr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── en-us │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── es-es │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── et-ee │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── excel-15.debug.js │ │ │ ├── excel-15.js │ │ │ ├── excelwebapp-15.debug.js │ │ │ ├── excelwebapp-15.js │ │ │ ├── fi-fi │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── fr-fr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── he-il │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hi-in │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hr-hr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── hu-hu │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── id-id │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── it-it │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ja-jp │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── kk-kz │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ko-kr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lt-lt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── lv-lv │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ms-my │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nb-no │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── nl-nl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── office-vsdoc.js │ │ │ ├── office.debug.js │ │ │ ├── office.js │ │ │ ├── outlook-15.debug-vsdoc.js │ │ │ ├── outlook-15.debug.js │ │ │ ├── outlook-15.js │ │ │ ├── outlookwebapp-15.debug.js │ │ │ ├── outlookwebapp-15.js │ │ │ ├── pl-pl │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── powerpoint-15.debug.js │ │ │ ├── powerpoint-15.js │ │ │ ├── project-15.debug.js │ │ │ ├── project-15.js │ │ │ ├── pt-br │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── pt-pt │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ro-ro │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── ru-ru │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sk-sk │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sl-si │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sr-latn-cs │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── sv-se │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── th-th │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── tr-tr │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── uk-ua │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── vi-vn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ ├── word-15.debug.js │ │ │ ├── word-15.js │ │ │ ├── zh-cn │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ │ └── zh-tw │ │ │ │ ├── office_strings.debug.js │ │ │ │ ├── office_strings.js │ │ │ │ ├── outlook_strings.debug.js │ │ │ │ └── outlook_strings.js │ │ └── MicrosoftAjax.js │ ├── _officeintellisense.js │ ├── _references.js │ ├── jquery-1.9.1.intellisense.js │ ├── jquery-1.9.1.js │ ├── jquery-1.9.1.min.js │ └── jquery-1.9.1.min.map └── TeacherCSVGenerator.xml ├── Excel-Add-in-Generate-CSV.yml ├── Images ├── Close.png ├── ExcelExport1.PNG ├── ExcelExport2.PNG ├── ScreenCap1.PNG ├── ScreenCap2.PNG ├── ScreenCap3.PNG ├── ScreenCap4.PNG ├── newWorksheet.PNG └── roster.PNG ├── LICENSE ├── 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 └── Visual Studio project ├── TeacherCSVGenerator.sln ├── TeacherCSVGenerator ├── TeacherCSVGenerator.csproj └── TeacherCSVGeneratorManifest │ ├── SharePointProjectItem.spdata │ └── TeacherCSVGenerator.xml └── TeacherCSVGeneratorWeb ├── .bin └── node.cmd ├── App ├── App.css ├── App.js ├── Home │ ├── HelpPop.html │ ├── Home.css │ ├── Home.html │ └── Home.js └── package.json ├── Content ├── Office.css └── OfficeThemes.css ├── Images ├── Close.png ├── ExcelExport1.PNG ├── ExcelExport2.PNG ├── ScreenCap1.PNG ├── ScreenCap2.PNG ├── ScreenCap3.PNG ├── ScreenCap4.PNG ├── ScreenCap5.PNG ├── newWorksheet.PNG └── roster.PNG ├── Properties └── AssemblyInfo.cs ├── Scripts ├── Jquery.Dropdown.js ├── Office │ ├── 1 │ │ ├── access-web-16.00.debug.js │ │ ├── access-web-16.00.js │ │ ├── ar-sa │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── bg-bg │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── cs-cz │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── da-dk │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── de-de │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── el-gr │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── en-us │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── es-es │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── et-ee │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── excel-15.01.debug.js │ │ ├── excel-15.01.js │ │ ├── excel-15.debug.js │ │ ├── excel-15.js │ │ ├── excel-ios-16.00.debug.js │ │ ├── excel-ios-16.00.js │ │ ├── excel-web-16.00.debug.js │ │ ├── excel-web-16.00.js │ │ ├── excel-win32-16.00.debug.js │ │ ├── excel-win32-16.00.js │ │ ├── excelios-15.debug.js │ │ ├── excelios-15.js │ │ ├── excelwebapp-15.01.debug.js │ │ ├── excelwebapp-15.01.js │ │ ├── excelwebapp-15.debug.js │ │ ├── excelwebapp-15.js │ │ ├── fi-fi │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── fr-fr │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── he-il │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── hi-in │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── hr-hr │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── hu-hu │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── id-id │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── it-it │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── ja-jp │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── kk-kz │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── ko-kr │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── lt-lt │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── lv-lv │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── ms-my │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── nb-no │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── nl-nl │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── o15apptofilemappingtable.debug.js │ │ ├── o15apptofilemappingtable.js │ │ ├── office-vsdoc.js │ │ ├── office.debug.js │ │ ├── office.js │ │ ├── outlook-15.01.debug.js │ │ ├── outlook-15.01.js │ │ ├── outlook-15.02.debug.js │ │ ├── outlook-15.02.js │ │ ├── outlook-15.debug.js │ │ ├── outlook-15.js │ │ ├── outlook-web-16.00.debug.js │ │ ├── outlook-web-16.00.js │ │ ├── outlook-win32-16.00.debug.js │ │ ├── outlook-win32-16.00.js │ │ ├── outlook-win32.debug-vsdoc.js │ │ ├── outlookwebapp-15.01.debug.js │ │ ├── outlookwebapp-15.01.js │ │ ├── outlookwebapp-15.debug.js │ │ ├── outlookwebapp-15.js │ │ ├── pl-pl │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── powerpoint-15.01.debug.js │ │ ├── powerpoint-15.01.js │ │ ├── powerpoint-15.debug.js │ │ ├── powerpoint-15.js │ │ ├── powerpoint-ios-16.00.debug.js │ │ ├── powerpoint-ios-16.00.js │ │ ├── powerpoint-web-16.00.debug.js │ │ ├── powerpoint-web-16.00.js │ │ ├── powerpoint-win32-16.00.debug.js │ │ ├── powerpoint-win32-16.00.js │ │ ├── powerpointios-15.debug.js │ │ ├── powerpointios-15.js │ │ ├── project-15.01.debug.js │ │ ├── project-15.01.js │ │ ├── project-15.debug.js │ │ ├── project-15.js │ │ ├── project-win32-16.00.debug.js │ │ ├── project-win32-16.00.js │ │ ├── pt-br │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── pt-pt │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── ro-ro │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── ru-ru │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── sk-sk │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── sl-si │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── sr-latn-cs │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── sv-se │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── th-th │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── tr-tr │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── uk-ua │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── vi-vn │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ ├── word-15.01.debug.js │ │ ├── word-15.01.js │ │ ├── word-15.debug.js │ │ ├── word-15.js │ │ ├── word-ios-16.00.debug.js │ │ ├── word-ios-16.00.js │ │ ├── word-web-16.00.debug.js │ │ ├── word-web-16.00.js │ │ ├── word-win32-16.00.debug.js │ │ ├── word-win32-16.00.js │ │ ├── wordios-15.debug.js │ │ ├── wordios-15.js │ │ ├── zh-cn │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ │ └── zh-tw │ │ │ ├── office_strings.debug.js │ │ │ ├── office_strings.js │ │ │ ├── outlook_strings.debug.js │ │ │ └── outlook_strings.js │ ├── MicrosoftAjax.js │ └── metadata │ │ ├── endpoints.xml │ │ └── features.xml ├── _officeintellisense.js ├── _references.js ├── jquery-1.9.1.intellisense.js ├── jquery-2.1.4.intellisense.js ├── jquery-2.1.4.js ├── jquery-2.1.4.min.js └── jquery-2.1.4.min.map ├── TeacherCSVGeneratorWeb.csproj ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── fonts ├── office365icons.eot ├── office365icons.svg ├── office365icons.ttf └── office365icons.woff └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/.gitignore -------------------------------------------------------------------------------- /Code Editor project/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/App.css -------------------------------------------------------------------------------- /Code Editor project/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/App.js -------------------------------------------------------------------------------- /Code Editor project/HelpPop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/HelpPop.html -------------------------------------------------------------------------------- /Code Editor project/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Home.css -------------------------------------------------------------------------------- /Code Editor project/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Home.html -------------------------------------------------------------------------------- /Code Editor project/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Home.js -------------------------------------------------------------------------------- /Code Editor project/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Images/Close.png -------------------------------------------------------------------------------- /Code Editor project/Images/ExcelExport1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Images/ExcelExport1.PNG -------------------------------------------------------------------------------- /Code Editor project/Images/ExcelExport2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Images/ExcelExport2.PNG -------------------------------------------------------------------------------- /Code Editor project/Images/newWorksheet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Images/newWorksheet.PNG -------------------------------------------------------------------------------- /Code Editor project/Images/roster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Images/roster.PNG -------------------------------------------------------------------------------- /Code Editor project/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Office.css -------------------------------------------------------------------------------- /Code Editor project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/README.md -------------------------------------------------------------------------------- /Code Editor project/Scripts/Jquery.Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Jquery.Dropdown.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ar-sa/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ar-sa/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ar-sa/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ar-sa/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ar-sa/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ar-sa/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ar-sa/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ar-sa/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/bg-bg/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/bg-bg/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/bg-bg/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/bg-bg/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/bg-bg/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/bg-bg/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/bg-bg/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/bg-bg/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/cs-cz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/cs-cz/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/cs-cz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/cs-cz/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/cs-cz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/cs-cz/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/cs-cz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/cs-cz/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/da-dk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/da-dk/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/da-dk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/da-dk/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/da-dk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/da-dk/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/da-dk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/da-dk/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/de-de/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/de-de/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/de-de/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/de-de/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/de-de/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/de-de/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/de-de/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/de-de/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/el-gr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/el-gr/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/el-gr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/el-gr/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/el-gr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/el-gr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/el-gr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/el-gr/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/en-us/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/en-us/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/en-us/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/en-us/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/en-us/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/en-us/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/en-us/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/en-us/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/es-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/es-es/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/es-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/es-es/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/es-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/es-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/es-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/es-es/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/et-ee/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/et-ee/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/et-ee/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/et-ee/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/et-ee/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/et-ee/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/et-ee/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/et-ee/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/excel-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/excel-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/excel-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/excel-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/excelwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/excelwebapp-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/excelwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/excelwebapp-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fi-fi/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fi-fi/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fi-fi/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fi-fi/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fi-fi/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fi-fi/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fi-fi/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fi-fi/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fr-fr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fr-fr/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fr-fr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fr-fr/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fr-fr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fr-fr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/fr-fr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/fr-fr/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/he-il/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/he-il/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/he-il/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/he-il/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/he-il/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/he-il/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/he-il/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/he-il/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hi-in/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hi-in/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hi-in/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hi-in/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hi-in/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hi-in/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hi-in/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hi-in/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hr-hr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hr-hr/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hr-hr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hr-hr/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hr-hr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hr-hr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hr-hr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hr-hr/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hu-hu/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hu-hu/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hu-hu/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hu-hu/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hu-hu/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hu-hu/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/hu-hu/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/hu-hu/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/id-id/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/id-id/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/id-id/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/id-id/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/id-id/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/id-id/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/id-id/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/id-id/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/it-it/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/it-it/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/it-it/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/it-it/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/it-it/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/it-it/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/it-it/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/it-it/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ja-jp/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ja-jp/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ja-jp/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ja-jp/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ja-jp/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ja-jp/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ja-jp/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ja-jp/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/kk-kz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/kk-kz/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/kk-kz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/kk-kz/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/kk-kz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/kk-kz/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/kk-kz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/kk-kz/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ko-kr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ko-kr/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ko-kr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ko-kr/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ko-kr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ko-kr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ko-kr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ko-kr/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lt-lt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lt-lt/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lt-lt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lt-lt/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lt-lt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lt-lt/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lt-lt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lt-lt/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lv-lv/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lv-lv/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lv-lv/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lv-lv/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lv-lv/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lv-lv/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/lv-lv/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/lv-lv/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ms-my/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ms-my/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ms-my/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ms-my/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ms-my/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ms-my/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ms-my/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ms-my/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nb-no/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nb-no/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nb-no/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nb-no/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nb-no/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nb-no/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nb-no/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nb-no/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nl-nl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nl-nl/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nl-nl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nl-nl/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nl-nl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nl-nl/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/nl-nl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/nl-nl/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/office-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/office-vsdoc.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/office.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/office.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/office.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/office.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/outlook-15.debug-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/outlook-15.debug-vsdoc.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/outlook-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/outlook-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/outlook-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/outlook-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/outlookwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/outlookwebapp-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/outlookwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/outlookwebapp-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pl-pl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pl-pl/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pl-pl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pl-pl/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pl-pl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pl-pl/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pl-pl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pl-pl/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/powerpoint-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/powerpoint-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/powerpoint-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/powerpoint-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/project-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/project-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/project-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/project-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-br/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-br/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-br/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-br/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-br/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-br/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-br/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-br/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-pt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-pt/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-pt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-pt/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-pt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-pt/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/pt-pt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/pt-pt/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ro-ro/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ro-ro/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ro-ro/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ro-ro/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ro-ro/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ro-ro/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ro-ro/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ro-ro/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ru-ru/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ru-ru/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ru-ru/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ru-ru/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ru-ru/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ru-ru/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/ru-ru/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/ru-ru/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sk-sk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sk-sk/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sk-sk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sk-sk/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sk-sk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sk-sk/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sk-sk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sk-sk/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sl-si/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sl-si/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sl-si/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sl-si/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sl-si/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sl-si/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sl-si/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sl-si/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sr-latn-cs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sr-latn-cs/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sr-latn-cs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sr-latn-cs/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sr-latn-cs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sr-latn-cs/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sr-latn-cs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sr-latn-cs/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sv-se/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sv-se/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sv-se/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sv-se/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sv-se/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sv-se/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/sv-se/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/sv-se/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/th-th/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/th-th/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/th-th/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/th-th/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/th-th/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/th-th/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/th-th/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/th-th/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/tr-tr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/tr-tr/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/tr-tr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/tr-tr/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/tr-tr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/tr-tr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/tr-tr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/tr-tr/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/uk-ua/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/uk-ua/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/uk-ua/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/uk-ua/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/uk-ua/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/uk-ua/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/uk-ua/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/uk-ua/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/vi-vn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/vi-vn/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/vi-vn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/vi-vn/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/vi-vn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/vi-vn/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/vi-vn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/vi-vn/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/word-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/word-15.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/word-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/word-15.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-cn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-cn/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-cn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-cn/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-cn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-cn/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-cn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-cn/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-tw/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-tw/office_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-tw/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-tw/office_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-tw/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-tw/outlook_strings.debug.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/1.0/zh-tw/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/1.0/zh-tw/outlook_strings.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/Office/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/Office/MicrosoftAjax.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/_officeintellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/_officeintellisense.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/_references.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/jquery-1.9.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/jquery-1.9.1.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /Code Editor project/Scripts/jquery-1.9.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/Scripts/jquery-1.9.1.min.map -------------------------------------------------------------------------------- /Code Editor project/TeacherCSVGenerator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Code Editor project/TeacherCSVGenerator.xml -------------------------------------------------------------------------------- /Excel-Add-in-Generate-CSV.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Excel-Add-in-Generate-CSV.yml -------------------------------------------------------------------------------- /Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/Close.png -------------------------------------------------------------------------------- /Images/ExcelExport1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ExcelExport1.PNG -------------------------------------------------------------------------------- /Images/ExcelExport2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ExcelExport2.PNG -------------------------------------------------------------------------------- /Images/ScreenCap1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ScreenCap1.PNG -------------------------------------------------------------------------------- /Images/ScreenCap2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ScreenCap2.PNG -------------------------------------------------------------------------------- /Images/ScreenCap3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ScreenCap3.PNG -------------------------------------------------------------------------------- /Images/ScreenCap4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/ScreenCap4.PNG -------------------------------------------------------------------------------- /Images/newWorksheet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/newWorksheet.PNG -------------------------------------------------------------------------------- /Images/roster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Images/roster.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Localized/README-de-de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-de-de.md -------------------------------------------------------------------------------- /README-Localized/README-es-es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-es-es.md -------------------------------------------------------------------------------- /README-Localized/README-fr-fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-fr-fr.md -------------------------------------------------------------------------------- /README-Localized/README-ja-jp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-ja-jp.md -------------------------------------------------------------------------------- /README-Localized/README-pt-br.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-pt-br.md -------------------------------------------------------------------------------- /README-Localized/README-ru-ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-ru-ru.md -------------------------------------------------------------------------------- /README-Localized/README-zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-zh-cn.md -------------------------------------------------------------------------------- /README-Localized/README-zh-tw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README-Localized/README-zh-tw.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/README.md -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGenerator.sln -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGenerator/TeacherCSVGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGenerator/TeacherCSVGenerator.csproj -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGenerator/TeacherCSVGeneratorManifest/SharePointProjectItem.spdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGenerator/TeacherCSVGeneratorManifest/SharePointProjectItem.spdata -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGenerator/TeacherCSVGeneratorManifest/TeacherCSVGenerator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGenerator/TeacherCSVGeneratorManifest/TeacherCSVGenerator.xml -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/.bin/node.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/.bin/node.cmd -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/App.css -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/App.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/Home/HelpPop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/Home/HelpPop.html -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.css -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.html -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/Home/Home.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/App/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/App/package.json -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Content/Office.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Content/Office.css -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Content/OfficeThemes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Content/OfficeThemes.css -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/Close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/Close.png -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ExcelExport1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ExcelExport1.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ExcelExport2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ExcelExport2.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap1.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap2.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap3.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap4.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/ScreenCap5.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/newWorksheet.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/newWorksheet.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Images/roster.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Images/roster.PNG -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Jquery.Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Jquery.Dropdown.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/access-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/access-web-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/access-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/access-web-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ar-sa/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/bg-bg/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/cs-cz/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/da-dk/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/de-de/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/el-gr/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/en-us/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/es-es/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/et-ee/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-ios-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-ios-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-web-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-web-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-win32-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excel-win32-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelios-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelios-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/excelwebapp-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fi-fi/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/fr-fr/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/he-il/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hi-in/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hr-hr/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/hu-hu/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/id-id/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/it-it/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ja-jp/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/kk-kz/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ko-kr/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lt-lt/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/lv-lv/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ms-my/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nb-no/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/nl-nl/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/o15apptofilemappingtable.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/o15apptofilemappingtable.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/o15apptofilemappingtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/o15apptofilemappingtable.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office-vsdoc.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/office.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.02.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.02.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.02.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.02.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-web-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-web-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32.debug-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlook-win32.debug-vsdoc.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/outlookwebapp-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pl-pl/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-ios-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-ios-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-web-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-web-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-win32-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpoint-win32-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpointios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpointios-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpointios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/powerpointios-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-win32-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/project-win32-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-br/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/pt-pt/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ro-ro/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/ru-ru/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sk-sk/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sl-si/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sr-latn-cs/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/sv-se/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/th-th/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/tr-tr/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/uk-ua/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/vi-vn/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.01.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.01.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.01.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.01.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-ios-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-ios-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-ios-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-ios-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-web-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-web-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-web-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-web-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-win32-16.00.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-win32-16.00.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-win32-16.00.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/word-win32-16.00.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/wordios-15.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/wordios-15.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/wordios-15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/wordios-15.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-cn/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/office_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/office_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/office_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/office_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/outlook_strings.debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/outlook_strings.debug.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/outlook_strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/1/zh-tw/outlook_strings.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/MicrosoftAjax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/MicrosoftAjax.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/metadata/endpoints.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/metadata/endpoints.xml -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/metadata/features.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/Office/metadata/features.xml -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/_officeintellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/_officeintellisense.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/_references.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-1.9.1.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-1.9.1.intellisense.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.intellisense.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.min.js -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Scripts/jquery-2.1.4.min.map -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/TeacherCSVGeneratorWeb.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/TeacherCSVGeneratorWeb.csproj -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Web.Debug.config -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Web.Release.config -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/Web.config -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.eot -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.svg -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.ttf -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/fonts/office365icons.woff -------------------------------------------------------------------------------- /Visual Studio project/TeacherCSVGeneratorWeb/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OfficeDev/Excel-Add-in-Generate-CSV/HEAD/Visual Studio project/TeacherCSVGeneratorWeb/packages.config --------------------------------------------------------------------------------