One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| {"lastUpload":"2021-01-27T18:07:27.555Z","extensionVersion":"v3.4.3"} |
| # http://docs.gitlab.com/ce/ci/docker/using_docker_build.html#using-the-gitlab-container-registry | |
| # The docker tag is the first 6 letters of the Git commit id | |
| job_build_dotnet: | |
| stage: build | |
| image: microsoft/dotnet:latest | |
| script: | |
| - dotnet restore | |
| - dotnet publish src/MyProject.Web -c Release | |
| artifacts: |
| ########## | |
| # Win10 Initial Setup Script | |
| # Author: Disassembler <[email protected]> | |
| # Version: 1.7, 2016-08-15 | |
| # dasm's script: https://github.com/Disassembler0/Win10-Initial-Setup-Script/ | |
| # THIS IS A PERSONALIZED VERSION | |
| # This script leaves more MS defaults on, including MS security features. | |
| # Tweaked based on personal preferences for @alirobe 2016-11-16 - v1.7.1 |
REM The space after start= is a must
sc diagtrack start= disabled
using mocha/chai/sinon for node.js unit-tests? check out my utility: mocha-stirrer to easily reuse test components and mock require dependencies
| # Download this file using PowerShell v3 under Windows with the following comand: | |
| # Invoke-WebRequest https://gist.github.com/kmorcinek/2710267/raw/ -OutFile .gitignore | |
| # or wget: | |
| # wget --no-check-certificate http://gist.github.com/kmorcinek/2710267/raw/.gitignore | |
| # User-specific files | |
| *.suo | |
| *.user | |
| *.sln.docstates |
| using Dapper; | |
| using Oracle.ManagedDataAccess.Client; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Data; | |
| using System.Linq; | |
| public class OracleDynamicParameters : Dapper.SqlMapper.IDynamicParameters { | |
| private static Dictionary<SqlMapper.Identity, Action<IDbCommand, object>> paramReaderCache = new Dictionary<SqlMapper.Identity, Action<IDbCommand, object>>( ); |