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
| const fs = require("fs"); | |
| const path = require("path"); | |
| const getOrder = (paths, resultsFile, firstModulesFile) => { | |
| const groups = {}; | |
| for (const filePath of paths) { | |
| const orderFile = path.join(filePath, "order.info"); | |
| const fileExists = fs.existsSync(orderFile); | |
| if (!fileExists) { | |
| if (!groups["0"]) groups["0"] = []; |
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
| public class QueryStringRequiredAttribute : Attribute, IActionConstraint | |
| { | |
| public int Order => 0; | |
| public string Name { get; set; } | |
| public QueryStringRequiredAttribute(string queryStringName) | |
| { | |
| Name = queryStringName; | |
| } |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>XUnitFact</Title> | |
| <Author>SerenityInAllThings</Author> | |
| <Description>Basic XUnit Fact with 3 'A's template</Description> | |
| <Shortcut>xunit</Shortcut> | |
| </Header> | |
| <Imports> |
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
| function replaceAll(str, valueToBeReplaced, valueToReplace) { | |
| return str.split(valueToBeReplaced).join(valueToReplace); | |
| } |
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
| -- -------------------------------------------------- | |
| -- Entity Designer DDL Script for SQL Server 2005, 2008, 2012 and Azure | |
| -- -------------------------------------------------- | |
| -- Date Created: 04/07/2018 18:30:19 | |
| -- Generated from EDMX file: C:\Users\Peterson\Desktop\oficina\Oficina\Models\oficina.edmx | |
| -- -------------------------------------------------- | |
| SET QUOTED_IDENTIFIER OFF; | |
| GO |