Prexonite, a .NET hosted scripting language with a focus on meta-programming and embedded DSLs
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge r1.2.3 into master

Christian Klauser (Jul 10, 2012, 1:39 PM +0200) 3e82083c b7a56a53

+86 -5
+86 -5
.gitignore
··· 1 - # Build Folders (you can keep bin if you'd like, to store dlls and pdbs) 2 - bin 3 - obj 1 + ################# 2 + ## Visual Studio 3 + ################# 4 + 5 + ## Ignore Visual Studio temporary files, build results, and 6 + ## files generated by popular Visual Studio add-ons. 7 + 8 + # User-specific files 9 + *.suo 10 + *.user 11 + *.sln.docstates 12 + 13 + # Build results 14 + [Dd]ebug/ 15 + [Rr]elease/ 16 + *_i.c 17 + *_p.c 18 + *.ilk 19 + *.meta 20 + *.obj 21 + *.pch 22 + *.pdb 23 + *.pgc 24 + *.pgd 25 + *.rsp 26 + *.sbr 27 + *.tlb 28 + *.tli 29 + *.tlh 30 + *.tmp 31 + *.vspscc 32 + .builds 33 + *.dotCover 34 + 35 + # Visual Studio profiler 36 + *.psess 37 + *.vsp 38 + 39 + # ReSharper is a .NET coding add-in 40 + _ReSharper* 41 + 42 + # Installshield output folder 43 + [Ee]xpress 44 + 45 + # DocProject is a documentation generator add-in 46 + DocProject/buildhelp/ 47 + DocProject/Help/*.HxT 48 + DocProject/Help/*.HxC 49 + DocProject/Help/*.hhc 50 + DocProject/Help/*.hhk 51 + DocProject/Help/*.hhp 52 + DocProject/Help/Html2 53 + DocProject/Help/html 54 + 55 + # Click-Once directory 56 + publish 57 + 58 + # Others 59 + [Bb]in 60 + [Oo]bj 61 + sql 62 + TestResults 63 + *.Cache 64 + ClientBin 65 + stylecop.* 66 + ~$* 67 + *.dbmdl 68 + Generated_Code #added for RIA/Silverlight projects 69 + 70 + # Backup & report files from converting an old project file to a newer 71 + # Visual Studio version. Backup files are not needed, because we have git ;-) 72 + _UpgradeReport_Files/ 73 + Backup*/ 74 + UpgradeLog*.XML 4 75 5 - # mstest test results 6 - TestResults 76 + ############ 77 + ## Windows 78 + ############ 79 + 80 + # Windows image file caches 81 + Thumbs.db 82 + 83 + # Folder config file 84 + Desktop.ini 85 + 86 + # Ignore merge by-products 87 + *.orig