This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <#@ template debug="false" hostspecific="true" language="C#" #> | |
| <#@ output extension=".cs" encoding="UTF8" #> | |
| <#@ assembly name="System.Core" #> | |
| <#@ assembly name="System.Xml" #> | |
| <#@ assembly name="System.Xml.Linq" #> | |
| <#@ import namespace="System.IO" #> | |
| <#@ import namespace="System.Xml" #> | |
| <#@ import namespace="System.Xml.Linq" #> | |
| <# | |
| // |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * script to export data of the named sheet as an individual csv files | |
| * sheet downloaded to Google Drive and then downloaded as a CSV file | |
| * file named according to the name of the sheet | |
| * original author: Michael Derazon (https://gist.github.com/mderazon/9655893) | |
| */ | |
| function onOpen() { | |
| var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
| var csvMenuEntries = [{name: "Download Primary Time File", functionName: "saveAsCSV"}]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| namespace CSharpVitamins | |
| { | |
| /// <summary> | |
| /// Represents a globally unique identifier (GUID) with a | |
| /// shorter string value. Sguid | |
| /// </summary> | |
| public struct ShortGuid | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.LightSwitch.Client; | |
| using Microsoft.LightSwitch.Details.Client; | |
| using Microsoft.LightSwitch.Framework.Client; | |
| using Microsoft.LightSwitch.Presentation; | |
| using Microsoft.LightSwitch.Presentation.Extensions; | |
| using Microsoft.LightSwitch.Presentation.Internal; | |
| using Microsoft.LightSwitch.Sdk.Proxy; | |
| using Microsoft.VisualStudio.ExtensibilityHosting; | |
| using System; | |
| using System.Collections.Generic; |
OlderNewer