gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
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; | |
using System.Runtime.InteropServices; | |
namespace SalimsLekstuga | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
var lek = new SalimsLeksak(); |
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
Windows Registry Editor Version 5.00; | |
; Tell IE 7,8,9,10 to open JSON documents in the browser on Windows XP and later. | |
; 25336920-03F9-11cf-8FD0-00AA00686F13 is the CLSID for the "Browse in place" . | |
; | |
[HKEY_CLASSES_ROOT\MIME\Database\Content Type\application/json] | |
"CLSID"="{25336920-03F9-11cf-8FD0-00AA00686F13}" | |
"Encoding"=hex:08,00,00,00 |
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
Unload the project, edit the csproj file to add this. | |
<Target Name="BeforeBuild"> | |
<Exec Command=""$(PROGRAMFILES)\Microsoft SDKs\TypeScript\tsc.exe" @(TypeScriptCompile ->'"%(fullpath)"', ' ')" /> | |
</Target> |