github.com/asynkron/protoactor-go@v0.0.0-20240308120642-ef91a6abee75/.gitignore (about) 1 # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 *.o 3 *.a 4 *.so 5 *.orig 6 7 8 # Folders 9 _obj 10 _test 11 12 # Architecture specific extensions/prefixes 13 *.[568vq] 14 [568vq].out 15 16 *.cgo1.go 17 *.cgo2.c 18 _cgo_defun.c 19 _cgo_gotypes.go 20 _cgo_export.* 21 22 _testmain.go 23 24 *.exe 25 *.test 26 *.prof 27 .idea/* 28 29 ## Ignore Visual Studio temporary files, build results, and 30 ## files generated by popular Visual Studio add-ons. 31 32 # User-specific files 33 *.suo 34 *.user 35 *.userosscache 36 *.sln.docstates 37 38 # User-specific files (MonoDevelop/Xamarin Studio) 39 *.userprefs 40 41 # Build results 42 [Dd]ebug/ 43 [Dd]ebugPublic/ 44 [Rr]elease/ 45 [Rr]eleases/ 46 x64/ 47 x86/ 48 build/ 49 bld/ 50 [Bb]in/ 51 [Oo]bj/ 52 .fake/ 53 TestResults/ 54 PerfResults/ 55 56 # Visual Studo 2015 cache/options directory 57 .vs/ 58 59 # MSTest test Results 60 [Tt]est[Rr]esult*/ 61 [Bb]uild[Ll]og.* 62 63 # NUNIT 64 *.VisualState.xml 65 TestResult.xml 66 67 # Build Results of an ATL Project 68 [Dd]ebugPS/ 69 [Rr]eleasePS/ 70 dlldata.c 71 72 *_i.c 73 *_p.c 74 *_i.h 75 *.ilk 76 *.meta 77 *.obj 78 *.pch 79 *.pdb 80 *.pgc 81 *.pgd 82 *.rsp 83 *.sbr 84 *.tlb 85 *.tli 86 *.tlh 87 *.tmp 88 *.tmp_proj 89 *.log 90 *.vspscc 91 *.vssscc 92 .builds 93 *.pidb 94 *.svclog 95 *.scc 96 97 # Chutzpah Test files 98 _Chutzpah* 99 100 # Visual C++ cache files 101 ipch/ 102 *.aps 103 *.ncb 104 *.opensdf 105 *.sdf 106 *.cachefile 107 108 # Visual Studio profiler 109 *.psess 110 *.vsp 111 *.vspx 112 113 # TFS 2012 Local Workspace 114 $tf/ 115 116 # Guidance Automation Toolkit 117 *.gpState 118 119 # ReSharper is a .NET coding add-in 120 _ReSharper*/ 121 *.[Rr]e[Ss]harper 122 *.DotSettings.user 123 124 # JustCode is a .NET coding addin-in 125 .JustCode 126 127 # TeamCity is a build add-in 128 _TeamCity* 129 130 # DotCover is a Code Coverage Tool 131 *.dotCover 132 133 # NCrunch 134 _NCrunch_* 135 .*crunch*.local.xml 136 137 # MightyMoose 138 *.mm.* 139 AutoTest.Net/ 140 141 # Web workbench (sass) 142 .sass-cache/ 143 144 # Installshield output folder 145 [Ee]xpress/ 146 147 # DocProject is a documentation generator add-in 148 DocProject/buildhelp/ 149 DocProject/Help/*.HxT 150 DocProject/Help/*.HxC 151 DocProject/Help/*.hhc 152 DocProject/Help/*.hhk 153 DocProject/Help/*.hhp 154 DocProject/Help/Html2 155 DocProject/Help/html 156 157 # Click-Once directory 158 publish/ 159 160 # Publish Web Output 161 *.[Pp]ublish.xml 162 *.azurePubxml 163 # TODO: Comment the next line if you want to checkin your web deploy settings 164 # but database connection strings (with potential passwords) will be unencrypted 165 *.pubxml 166 *.publishproj 167 168 # NuGet Packages 169 *.nupkg 170 # The packages folder can be ignored because of Package Restore 171 **/packages/* 172 # except build/, which is used as an MSBuild target. 173 !**/packages/build/ 174 # Uncomment if necessary however generally it will be regenerated when needed 175 #!**/packages/repositories.config 176 177 # Windows Azure Build Output 178 csx/ 179 *.build.csdef 180 181 # Windows Store app package directory 182 AppPackages/ 183 184 # Others 185 *.[Cc]ache 186 ClientBin/ 187 [Ss]tyle[Cc]op.* 188 ~$* 189 *~ 190 *.dbmdl 191 *.dbproj.schemaview 192 *.pfx 193 *.publishsettings 194 node_modules/ 195 bower_components/ 196 197 # RIA/Silverlight projects 198 Generated_Code/ 199 200 # Backup & report files from converting an old project file 201 # to a newer Visual Studio version. Backup files are not needed, 202 # because we have git ;-) 203 _UpgradeReport_Files/ 204 Backup*/ 205 UpgradeLog*.XML 206 UpgradeLog*.htm 207 208 # SQL Server files 209 *.mdf 210 *.ldf 211 212 # Business Intelligence projects 213 *.rdl.data 214 *.bim.layout 215 *.bim_*.settings 216 217 # Microsoft Fakes 218 FakesAssemblies/ 219 220 # Node.js Tools for Visual Studio 221 .ntvs_analysis.dat 222 223 # Visual Studio 6 build log 224 *.plg 225 226 # Visual Studio 6 workspace options file 227 *.opt 228 229 # MacOS 230 .DS_Store 231 232 # go.work 233 /go.work 234 /go.work.sum 235 236 .vscode/ 237 238 /test_report.html 239 vendor