RobertBonham / ProofOfConcepts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This is just a testbed for me to try out various articles and blogs I come across, if it helps you great, but overall it's mostly meant for reference at this point.

ProofOfConcepts

Using GitHub with Visual Studio 2017

  • Clone or Create Repository from Team Explorer
  • ...Do Work
  • Team Explorer -> 'Changes'
  • 'Commit All' (Put in comment)
  • 'Sync' The locally committed source to the public source on GitHub
  • 'Push' Pushes the local changes to the GitHub repository

Using Typescript with Asp.net MVC 5

  • Make a folder for TS files and create a tsconfig.json file in it
    { "compilerOptions": { "noImplicitAny": false, "noEmitOnError": true, "removeComments": false, "sourceMap": true, "target": "es5",
    "outDir": "../appScriptsJS" }, "exclude": [ "node_modules", "wwwroot" ] }
  • Create a app.ts file
  • When project builds, js files will be created in 'appScriptsJS'

Typescript to perform CRUD with JQUERY
Typescript to perform CRUD without JQUERY
Typescript CRUD using Aurelia

About


Languages

Language:C# 56.9%Language:JavaScript 23.9%Language:TypeScript 16.3%Language:CSS 2.7%Language:ASP 0.2%