agentmesh_platform 3.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. agentmesh_platform-3.1.0/.gitignore +456 -0
  2. agentmesh_platform-3.1.0/LICENSE +21 -0
  3. agentmesh_platform-3.1.0/PKG-INFO +778 -0
  4. agentmesh_platform-3.1.0/README.md +693 -0
  5. agentmesh_platform-3.1.0/docs/CLOUDEVENTS_SCHEMA.md +281 -0
  6. agentmesh_platform-3.1.0/docs/GTM-PLAN.md +166 -0
  7. agentmesh_platform-3.1.0/docs/IMPLEMENTATION-SUMMARY.md +339 -0
  8. agentmesh_platform-3.1.0/docs/PRD-IMPLEMENTATION.md +407 -0
  9. agentmesh_platform-3.1.0/docs/PROXY-IMPLEMENTATION.md +435 -0
  10. agentmesh_platform-3.1.0/docs/RFC_AGENT_SBOM.md +581 -0
  11. agentmesh_platform-3.1.0/docs/api-reference.md +435 -0
  12. agentmesh_platform-3.1.0/docs/blog/hackernews-submission.md +52 -0
  13. agentmesh_platform-3.1.0/docs/blog/launch-announcement.md +144 -0
  14. agentmesh_platform-3.1.0/docs/blog/moltbook-lessons-learned.md +170 -0
  15. agentmesh_platform-3.1.0/docs/deployment/aws.md +347 -0
  16. agentmesh_platform-3.1.0/docs/deployment/azure.md +383 -0
  17. agentmesh_platform-3.1.0/docs/deployment/gcp.md +363 -0
  18. agentmesh_platform-3.1.0/docs/deployment/kubernetes.md +711 -0
  19. agentmesh_platform-3.1.0/docs/identity.md +529 -0
  20. agentmesh_platform-3.1.0/docs/integrations/claude-desktop.md +186 -0
  21. agentmesh_platform-3.1.0/docs/integrations/proxy-examples.md +194 -0
  22. agentmesh_platform-3.1.0/docs/observability/grafana.md +91 -0
  23. agentmesh_platform-3.1.0/docs/sequences.md +202 -0
  24. agentmesh_platform-3.1.0/docs/service-mesh-comparison.md +312 -0
  25. agentmesh_platform-3.1.0/docs/troubleshooting.md +487 -0
  26. agentmesh_platform-3.1.0/docs/trust-model-guide.md +756 -0
  27. agentmesh_platform-3.1.0/docs/trust-scoring-api.md +625 -0
  28. agentmesh_platform-3.1.0/docs/zero-trust.md +228 -0
  29. agentmesh_platform-3.1.0/pyproject.toml +169 -0
  30. agentmesh_platform-3.1.0/src/agentmesh/__init__.py +158 -0
  31. agentmesh_platform-3.1.0/src/agentmesh/cli/__init__.py +12 -0
  32. agentmesh_platform-3.1.0/src/agentmesh/cli/main.py +670 -0
  33. agentmesh_platform-3.1.0/src/agentmesh/cli/marketplace_commands.py +153 -0
  34. agentmesh_platform-3.1.0/src/agentmesh/cli/proxy.py +485 -0
  35. agentmesh_platform-3.1.0/src/agentmesh/cli/trust_cli.py +637 -0
  36. agentmesh_platform-3.1.0/src/agentmesh/client.py +181 -0
  37. agentmesh_platform-3.1.0/src/agentmesh/constants.py +48 -0
  38. agentmesh_platform-3.1.0/src/agentmesh/core/__init__.py +9 -0
  39. agentmesh_platform-3.1.0/src/agentmesh/core/identity/__init__.py +21 -0
  40. agentmesh_platform-3.1.0/src/agentmesh/core/identity/ca.py +492 -0
  41. agentmesh_platform-3.1.0/src/agentmesh/dashboard/__init__.py +23 -0
  42. agentmesh_platform-3.1.0/src/agentmesh/dashboard/api.py +297 -0
  43. agentmesh_platform-3.1.0/src/agentmesh/dashboard/models.py +89 -0
  44. agentmesh_platform-3.1.0/src/agentmesh/events/__init__.py +44 -0
  45. agentmesh_platform-3.1.0/src/agentmesh/events/analytics.py +117 -0
  46. agentmesh_platform-3.1.0/src/agentmesh/events/bus.py +166 -0
  47. agentmesh_platform-3.1.0/src/agentmesh/exceptions.py +73 -0
  48. agentmesh_platform-3.1.0/src/agentmesh/gateway/__init__.py +0 -0
  49. agentmesh_platform-3.1.0/src/agentmesh/gateway/policy_provider.py +123 -0
  50. agentmesh_platform-3.1.0/src/agentmesh/governance/__init__.py +147 -0
  51. agentmesh_platform-3.1.0/src/agentmesh/governance/_conflict_resolution_impl.py +202 -0
  52. agentmesh_platform-3.1.0/src/agentmesh/governance/_shadow_impl.py +550 -0
  53. agentmesh_platform-3.1.0/src/agentmesh/governance/annex_iv.py +514 -0
  54. agentmesh_platform-3.1.0/src/agentmesh/governance/async_policy_evaluator.py +272 -0
  55. agentmesh_platform-3.1.0/src/agentmesh/governance/audit.py +512 -0
  56. agentmesh_platform-3.1.0/src/agentmesh/governance/audit_backends.py +401 -0
  57. agentmesh_platform-3.1.0/src/agentmesh/governance/authority.py +184 -0
  58. agentmesh_platform-3.1.0/src/agentmesh/governance/budget.py +161 -0
  59. agentmesh_platform-3.1.0/src/agentmesh/governance/cedar.py +378 -0
  60. agentmesh_platform-3.1.0/src/agentmesh/governance/compliance.py +561 -0
  61. agentmesh_platform-3.1.0/src/agentmesh/governance/conflict_resolution.py +42 -0
  62. agentmesh_platform-3.1.0/src/agentmesh/governance/eu_ai_act.py +253 -0
  63. agentmesh_platform-3.1.0/src/agentmesh/governance/eu_ai_act_defaults.yaml +75 -0
  64. agentmesh_platform-3.1.0/src/agentmesh/governance/federation.py +1072 -0
  65. agentmesh_platform-3.1.0/src/agentmesh/governance/opa.py +392 -0
  66. agentmesh_platform-3.1.0/src/agentmesh/governance/policy.py +953 -0
  67. agentmesh_platform-3.1.0/src/agentmesh/governance/policy_evaluator.py +143 -0
  68. agentmesh_platform-3.1.0/src/agentmesh/governance/shadow.py +20 -0
  69. agentmesh_platform-3.1.0/src/agentmesh/governance/trust_policy.py +197 -0
  70. agentmesh_platform-3.1.0/src/agentmesh/identity/__init__.py +72 -0
  71. agentmesh_platform-3.1.0/src/agentmesh/identity/agent_id.py +594 -0
  72. agentmesh_platform-3.1.0/src/agentmesh/identity/credentials.py +449 -0
  73. agentmesh_platform-3.1.0/src/agentmesh/identity/delegation.py +372 -0
  74. agentmesh_platform-3.1.0/src/agentmesh/identity/entra.py +300 -0
  75. agentmesh_platform-3.1.0/src/agentmesh/identity/entra_agent_id.py +205 -0
  76. agentmesh_platform-3.1.0/src/agentmesh/identity/jwk.py +177 -0
  77. agentmesh_platform-3.1.0/src/agentmesh/identity/keystore.py +387 -0
  78. agentmesh_platform-3.1.0/src/agentmesh/identity/managed_identity.py +326 -0
  79. agentmesh_platform-3.1.0/src/agentmesh/identity/mtls.py +251 -0
  80. agentmesh_platform-3.1.0/src/agentmesh/identity/namespace.py +62 -0
  81. agentmesh_platform-3.1.0/src/agentmesh/identity/namespace_manager.py +202 -0
  82. agentmesh_platform-3.1.0/src/agentmesh/identity/revocation.py +164 -0
  83. agentmesh_platform-3.1.0/src/agentmesh/identity/risk.py +361 -0
  84. agentmesh_platform-3.1.0/src/agentmesh/identity/rotation.py +197 -0
  85. agentmesh_platform-3.1.0/src/agentmesh/identity/spiffe.py +315 -0
  86. agentmesh_platform-3.1.0/src/agentmesh/identity/sponsor.py +260 -0
  87. agentmesh_platform-3.1.0/src/agentmesh/integrations/__init__.py +65 -0
  88. agentmesh_platform-3.1.0/src/agentmesh/integrations/a2a/__init__.py +322 -0
  89. agentmesh_platform-3.1.0/src/agentmesh/integrations/ai_card/__init__.py +51 -0
  90. agentmesh_platform-3.1.0/src/agentmesh/integrations/ai_card/discovery.py +140 -0
  91. agentmesh_platform-3.1.0/src/agentmesh/integrations/ai_card/schema.py +424 -0
  92. agentmesh_platform-3.1.0/src/agentmesh/integrations/crewai/__init__.py +25 -0
  93. agentmesh_platform-3.1.0/src/agentmesh/integrations/crewai/agent.py +240 -0
  94. agentmesh_platform-3.1.0/src/agentmesh/integrations/crewai/crew.py +128 -0
  95. agentmesh_platform-3.1.0/src/agentmesh/integrations/django_middleware/__init__.py +26 -0
  96. agentmesh_platform-3.1.0/src/agentmesh/integrations/django_middleware/decorators.py +68 -0
  97. agentmesh_platform-3.1.0/src/agentmesh/integrations/django_middleware/middleware.py +207 -0
  98. agentmesh_platform-3.1.0/src/agentmesh/integrations/flowise/__init__.py +384 -0
  99. agentmesh_platform-3.1.0/src/agentmesh/integrations/haystack/__init__.py +384 -0
  100. agentmesh_platform-3.1.0/src/agentmesh/integrations/http_middleware.py +175 -0
  101. agentmesh_platform-3.1.0/src/agentmesh/integrations/langchain/__init__.py +40 -0
  102. agentmesh_platform-3.1.0/src/agentmesh/integrations/langchain/callback.py +232 -0
  103. agentmesh_platform-3.1.0/src/agentmesh/integrations/langchain/tools.py +179 -0
  104. agentmesh_platform-3.1.0/src/agentmesh/integrations/langflow/__init__.py +302 -0
  105. agentmesh_platform-3.1.0/src/agentmesh/integrations/langgraph/__init__.py +360 -0
  106. agentmesh_platform-3.1.0/src/agentmesh/integrations/mcp/__init__.py +487 -0
  107. agentmesh_platform-3.1.0/src/agentmesh/integrations/swarm/__init__.py +279 -0
  108. agentmesh_platform-3.1.0/src/agentmesh/lifecycle/__init__.py +35 -0
  109. agentmesh_platform-3.1.0/src/agentmesh/lifecycle/credentials.py +102 -0
  110. agentmesh_platform-3.1.0/src/agentmesh/lifecycle/manager.py +362 -0
  111. agentmesh_platform-3.1.0/src/agentmesh/lifecycle/models.py +170 -0
  112. agentmesh_platform-3.1.0/src/agentmesh/lifecycle/orphan_detector.py +127 -0
  113. agentmesh_platform-3.1.0/src/agentmesh/marketplace/__init__.py +60 -0
  114. agentmesh_platform-3.1.0/src/agentmesh/marketplace/_marketplace_impl.py +328 -0
  115. agentmesh_platform-3.1.0/src/agentmesh/marketplace/installer.py +234 -0
  116. agentmesh_platform-3.1.0/src/agentmesh/marketplace/manifest.py +145 -0
  117. agentmesh_platform-3.1.0/src/agentmesh/marketplace/registry.py +181 -0
  118. agentmesh_platform-3.1.0/src/agentmesh/marketplace/sandbox.py +250 -0
  119. agentmesh_platform-3.1.0/src/agentmesh/marketplace/signing.py +84 -0
  120. agentmesh_platform-3.1.0/src/agentmesh/observability/__init__.py +40 -0
  121. agentmesh_platform-3.1.0/src/agentmesh/observability/dashboards/grafana_governance.json +254 -0
  122. agentmesh_platform-3.1.0/src/agentmesh/observability/metrics.py +357 -0
  123. agentmesh_platform-3.1.0/src/agentmesh/observability/otel_governance.py +201 -0
  124. agentmesh_platform-3.1.0/src/agentmesh/observability/otel_sdk.py +110 -0
  125. agentmesh_platform-3.1.0/src/agentmesh/observability/prometheus_exporter.py +163 -0
  126. agentmesh_platform-3.1.0/src/agentmesh/observability/prometheus_governance.py +225 -0
  127. agentmesh_platform-3.1.0/src/agentmesh/observability/tracing.py +489 -0
  128. agentmesh_platform-3.1.0/src/agentmesh/providers.py +152 -0
  129. agentmesh_platform-3.1.0/src/agentmesh/py.typed +0 -0
  130. agentmesh_platform-3.1.0/src/agentmesh/reward/__init__.py +43 -0
  131. agentmesh_platform-3.1.0/src/agentmesh/reward/distribution.py +208 -0
  132. agentmesh_platform-3.1.0/src/agentmesh/reward/distributor.py +83 -0
  133. agentmesh_platform-3.1.0/src/agentmesh/reward/engine.py +461 -0
  134. agentmesh_platform-3.1.0/src/agentmesh/reward/scoring.py +227 -0
  135. agentmesh_platform-3.1.0/src/agentmesh/reward/trust_decay.py +343 -0
  136. agentmesh_platform-3.1.0/src/agentmesh/services/__init__.py +25 -0
  137. agentmesh_platform-3.1.0/src/agentmesh/services/audit/__init__.py +144 -0
  138. agentmesh_platform-3.1.0/src/agentmesh/services/behavior_monitor.py +180 -0
  139. agentmesh_platform-3.1.0/src/agentmesh/services/rate_limit_middleware.py +126 -0
  140. agentmesh_platform-3.1.0/src/agentmesh/services/rate_limiter.py +209 -0
  141. agentmesh_platform-3.1.0/src/agentmesh/services/registry/__init__.py +14 -0
  142. agentmesh_platform-3.1.0/src/agentmesh/services/registry/agent_registry.py +253 -0
  143. agentmesh_platform-3.1.0/src/agentmesh/services/reward_engine/__init__.py +115 -0
  144. agentmesh_platform-3.1.0/src/agentmesh/storage/__init__.py +24 -0
  145. agentmesh_platform-3.1.0/src/agentmesh/storage/file_trust_store.py +157 -0
  146. agentmesh_platform-3.1.0/src/agentmesh/storage/memory_provider.py +233 -0
  147. agentmesh_platform-3.1.0/src/agentmesh/storage/postgres_provider.py +467 -0
  148. agentmesh_platform-3.1.0/src/agentmesh/storage/provider.py +233 -0
  149. agentmesh_platform-3.1.0/src/agentmesh/storage/redis_backend.py +197 -0
  150. agentmesh_platform-3.1.0/src/agentmesh/storage/redis_provider.py +227 -0
  151. agentmesh_platform-3.1.0/src/agentmesh/transport/__init__.py +43 -0
  152. agentmesh_platform-3.1.0/src/agentmesh/transport/base.py +154 -0
  153. agentmesh_platform-3.1.0/src/agentmesh/transport/grpc_transport.py +356 -0
  154. agentmesh_platform-3.1.0/src/agentmesh/transport/websocket.py +250 -0
  155. agentmesh_platform-3.1.0/src/agentmesh/trust/__init__.py +25 -0
  156. agentmesh_platform-3.1.0/src/agentmesh/trust/bridge.py +418 -0
  157. agentmesh_platform-3.1.0/src/agentmesh/trust/capability.py +399 -0
  158. agentmesh_platform-3.1.0/src/agentmesh/trust/cards.py +308 -0
  159. agentmesh_platform-3.1.0/src/agentmesh/trust/handshake.py +511 -0
  160. agentmesh_platform-3.1.0/src/agentmesh/trust_types.py +115 -0
  161. agentmesh_platform-3.1.0/tests/__init__.py +1 -0
  162. agentmesh_platform-3.1.0/tests/governance/__init__.py +0 -0
  163. agentmesh_platform-3.1.0/tests/governance/test_annex_iv.py +432 -0
  164. agentmesh_platform-3.1.0/tests/governance/test_audit_backends.py +342 -0
  165. agentmesh_platform-3.1.0/tests/governance/test_eu_ai_act.py +234 -0
  166. agentmesh_platform-3.1.0/tests/snapshots/agent_identity.json +26 -0
  167. agentmesh_platform-3.1.0/tests/snapshots/delegation_token.json +21 -0
  168. agentmesh_platform-3.1.0/tests/snapshots/handshake_challenge.json +6 -0
  169. agentmesh_platform-3.1.0/tests/snapshots/handshake_response.json +14 -0
  170. agentmesh_platform-3.1.0/tests/snapshots/jwk_export.json +7 -0
  171. agentmesh_platform-3.1.0/tests/snapshots/trust_score_report.json +33 -0
  172. agentmesh_platform-3.1.0/tests/test_ai_card.py +433 -0
  173. agentmesh_platform-3.1.0/tests/test_anomaly.py +175 -0
  174. agentmesh_platform-3.1.0/tests/test_authority.py +298 -0
  175. agentmesh_platform-3.1.0/tests/test_benchmarks.py +149 -0
  176. agentmesh_platform-3.1.0/tests/test_budget.py +205 -0
  177. agentmesh_platform-3.1.0/tests/test_ca_security.py +483 -0
  178. agentmesh_platform-3.1.0/tests/test_cedar.py +229 -0
  179. agentmesh_platform-3.1.0/tests/test_cli.py +257 -0
  180. agentmesh_platform-3.1.0/tests/test_client.py +156 -0
  181. agentmesh_platform-3.1.0/tests/test_conflict_resolution.py +304 -0
  182. agentmesh_platform-3.1.0/tests/test_coverage_boost.py +1990 -0
  183. agentmesh_platform-3.1.0/tests/test_credential_lifecycle.py +547 -0
  184. agentmesh_platform-3.1.0/tests/test_crewai_integration.py +215 -0
  185. agentmesh_platform-3.1.0/tests/test_dashboard.py +315 -0
  186. agentmesh_platform-3.1.0/tests/test_delegation_chain.py +208 -0
  187. agentmesh_platform-3.1.0/tests/test_delegation_depth.py +159 -0
  188. agentmesh_platform-3.1.0/tests/test_django_middleware.py +321 -0
  189. agentmesh_platform-3.1.0/tests/test_entra_agent_id.py +540 -0
  190. agentmesh_platform-3.1.0/tests/test_event_bus.py +255 -0
  191. agentmesh_platform-3.1.0/tests/test_exceptions.py +140 -0
  192. agentmesh_platform-3.1.0/tests/test_expired_certs.py +252 -0
  193. agentmesh_platform-3.1.0/tests/test_federation.py +888 -0
  194. agentmesh_platform-3.1.0/tests/test_file_trust_store.py +107 -0
  195. agentmesh_platform-3.1.0/tests/test_fuzzing.py +465 -0
  196. agentmesh_platform-3.1.0/tests/test_governance.py +342 -0
  197. agentmesh_platform-3.1.0/tests/test_grpc_transport.py +235 -0
  198. agentmesh_platform-3.1.0/tests/test_handshake_e2e.py +259 -0
  199. agentmesh_platform-3.1.0/tests/test_handshake_security.py +493 -0
  200. agentmesh_platform-3.1.0/tests/test_handshake_timeout.py +111 -0
  201. agentmesh_platform-3.1.0/tests/test_http_middleware.py +326 -0
  202. agentmesh_platform-3.1.0/tests/test_identity.py +443 -0
  203. agentmesh_platform-3.1.0/tests/test_integrations.py +383 -0
  204. agentmesh_platform-3.1.0/tests/test_jwk.py +172 -0
  205. agentmesh_platform-3.1.0/tests/test_key_rotation.py +162 -0
  206. agentmesh_platform-3.1.0/tests/test_keystore.py +318 -0
  207. agentmesh_platform-3.1.0/tests/test_langchain_integration.py +227 -0
  208. agentmesh_platform-3.1.0/tests/test_lifecycle.py +256 -0
  209. agentmesh_platform-3.1.0/tests/test_load.py +153 -0
  210. agentmesh_platform-3.1.0/tests/test_managed_identity.py +429 -0
  211. agentmesh_platform-3.1.0/tests/test_marketplace.py +371 -0
  212. agentmesh_platform-3.1.0/tests/test_mcp_integration.py +1082 -0
  213. agentmesh_platform-3.1.0/tests/test_mtls.py +192 -0
  214. agentmesh_platform-3.1.0/tests/test_namespaces.py +213 -0
  215. agentmesh_platform-3.1.0/tests/test_negative_security.py +930 -0
  216. agentmesh_platform-3.1.0/tests/test_opa.py +295 -0
  217. agentmesh_platform-3.1.0/tests/test_otel_governance.py +370 -0
  218. agentmesh_platform-3.1.0/tests/test_otel_sdk.py +207 -0
  219. agentmesh_platform-3.1.0/tests/test_otel_tracing.py +359 -0
  220. agentmesh_platform-3.1.0/tests/test_persistent_audit.py +212 -0
  221. agentmesh_platform-3.1.0/tests/test_policy_provider.py +281 -0
  222. agentmesh_platform-3.1.0/tests/test_policy_schema.py +187 -0
  223. agentmesh_platform-3.1.0/tests/test_prometheus_exporter.py +192 -0
  224. agentmesh_platform-3.1.0/tests/test_prometheus_metrics.py +176 -0
  225. agentmesh_platform-3.1.0/tests/test_protocol_snapshots.py +234 -0
  226. agentmesh_platform-3.1.0/tests/test_proxy.py +246 -0
  227. agentmesh_platform-3.1.0/tests/test_rate_limiter.py +259 -0
  228. agentmesh_platform-3.1.0/tests/test_redis_backend.py +226 -0
  229. agentmesh_platform-3.1.0/tests/test_revocation.py +142 -0
  230. agentmesh_platform-3.1.0/tests/test_revocation_rotation.py +148 -0
  231. agentmesh_platform-3.1.0/tests/test_reward.py +182 -0
  232. agentmesh_platform-3.1.0/tests/test_reward_distribution.py +255 -0
  233. agentmesh_platform-3.1.0/tests/test_sandbox.py +316 -0
  234. agentmesh_platform-3.1.0/tests/test_services.py +371 -0
  235. agentmesh_platform-3.1.0/tests/test_storage.py +231 -0
  236. agentmesh_platform-3.1.0/tests/test_trust.py +271 -0
  237. agentmesh_platform-3.1.0/tests/test_trust_cli.py +394 -0
  238. agentmesh_platform-3.1.0/tests/test_trust_decay.py +665 -0
  239. agentmesh_platform-3.1.0/tests/test_trust_policy.py +302 -0
  240. agentmesh_platform-3.1.0/tests/test_trust_properties.py +242 -0
  241. agentmesh_platform-3.1.0/tests/test_trust_types.py +176 -0
  242. agentmesh_platform-3.1.0/tests/test_validation.py +285 -0
  243. agentmesh_platform-3.1.0/tests/test_websocket_transport.py +218 -0
@@ -0,0 +1,456 @@
1
+ # Generated artifacts
2
+ sbom/
3
+
4
+ # Python
5
+ __pycache__/
6
+ *.py[cod]
7
+ *$py.class
8
+ *.egg-info/
9
+ dist/
10
+ build/
11
+ *.egg
12
+ .eggs/
13
+ .venv/
14
+ venv/
15
+ .pytest_cache/
16
+ .mypy_cache/
17
+ .ruff_cache/
18
+ .hypothesis/
19
+ .tox/
20
+ htmlcov/
21
+ .coverage
22
+ *.cover
23
+
24
+ # Node
25
+ node_modules/
26
+
27
+ # IDE
28
+ .vscode/
29
+ .idea/
30
+ *.swp
31
+ *.swo
32
+ .claude/
33
+
34
+ ## Ignore Visual Studio temporary files, build results, and
35
+ ## files generated by popular Visual Studio add-ons.
36
+ ##
37
+ ## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
38
+
39
+ # User-specific files
40
+ *.rsuser
41
+ *.suo
42
+ *.user
43
+ *.userosscache
44
+ *.sln.docstates
45
+ *.env
46
+
47
+ # User-specific files (MonoDevelop/Xamarin Studio)
48
+ *.userprefs
49
+
50
+ # Mono auto generated files
51
+ mono_crash.*
52
+
53
+ # Build results
54
+ [Dd]ebug/
55
+ [Dd]ebugPublic/
56
+ [Rr]elease/
57
+ [Rr]eleases/
58
+ x64/
59
+ x86/
60
+ [Ww][Ii][Nn]32/
61
+ [Aa][Rr][Mm]/
62
+ [Aa][Rr][Mm]64/
63
+ [Aa][Rr][Mm]64[Ee][Cc]/
64
+ bld/
65
+ [Oo]bj/
66
+ [Oo]ut/
67
+ [Ll]og/
68
+ [Ll]ogs/
69
+
70
+ # Build results on 'Bin' directories
71
+ **/[Bb]in/*
72
+ # Uncomment if you have tasks that rely on *.refresh files to move binaries
73
+ # (https://github.com/github/gitignore/pull/3736)
74
+ #!**/[Bb]in/*.refresh
75
+
76
+ # Visual Studio 2015/2017 cache/options directory
77
+ .vs/
78
+ # Uncomment if you have tasks that create the project's static files in wwwroot
79
+ #wwwroot/
80
+
81
+ # Visual Studio 2017 auto generated files
82
+ Generated\ Files/
83
+
84
+ # MSTest test Results
85
+ [Tt]est[Rr]esult*/
86
+ [Bb]uild[Ll]og.*
87
+ *.trx
88
+
89
+ # NUnit
90
+ *.VisualState.xml
91
+ TestResult.xml
92
+ nunit-*.xml
93
+
94
+ # Approval Tests result files
95
+ *.received.*
96
+
97
+ # Build Results of an ATL Project
98
+ [Dd]ebugPS/
99
+ [Rr]eleasePS/
100
+ dlldata.c
101
+
102
+ # Benchmark Results
103
+ BenchmarkDotNet.Artifacts/
104
+
105
+ # .NET Core
106
+ project.lock.json
107
+ project.fragment.lock.json
108
+ artifacts/
109
+
110
+ # ASP.NET Scaffolding
111
+ ScaffoldingReadMe.txt
112
+
113
+ # StyleCop
114
+ StyleCopReport.xml
115
+
116
+ # Files built by Visual Studio
117
+ *_i.c
118
+ *_p.c
119
+ *_h.h
120
+ *.ilk
121
+ *.meta
122
+ *.obj
123
+ *.idb
124
+ *.iobj
125
+ *.pch
126
+ *.pdb
127
+ *.ipdb
128
+ *.pgc
129
+ *.pgd
130
+ *.rsp
131
+ # but not Directory.Build.rsp, as it configures directory-level build defaults
132
+ !Directory.Build.rsp
133
+ *.sbr
134
+ *.tlb
135
+ *.tli
136
+ *.tlh
137
+ *.tmp
138
+ *.tmp_proj
139
+ *_wpftmp.csproj
140
+ *.log
141
+ *.tlog
142
+ *.vspscc
143
+ *.vssscc
144
+ .builds
145
+ *.pidb
146
+ *.svclog
147
+ *.scc
148
+
149
+ # Chutzpah Test files
150
+ _Chutzpah*
151
+
152
+ # Visual C++ cache files
153
+ ipch/
154
+ *.aps
155
+ *.ncb
156
+ *.opendb
157
+ *.opensdf
158
+ *.sdf
159
+ *.cachefile
160
+ *.VC.db
161
+ *.VC.VC.opendb
162
+
163
+ # Visual Studio profiler
164
+ *.psess
165
+ *.vsp
166
+ *.vspx
167
+ *.sap
168
+
169
+ # Visual Studio Trace Files
170
+ *.e2e
171
+
172
+ # TFS 2012 Local Workspace
173
+ $tf/
174
+
175
+ # Guidance Automation Toolkit
176
+ *.gpState
177
+
178
+ # ReSharper is a .NET coding add-in
179
+ _ReSharper*/
180
+ *.[Rr]e[Ss]harper
181
+ *.DotSettings.user
182
+
183
+ # TeamCity is a build add-in
184
+ _TeamCity*
185
+
186
+ # DotCover is a Code Coverage Tool
187
+ *.dotCover
188
+
189
+ # AxoCover is a Code Coverage Tool
190
+ .axoCover/*
191
+ !.axoCover/settings.json
192
+
193
+ # Coverlet is a free, cross platform Code Coverage Tool
194
+ coverage*.json
195
+ coverage*.xml
196
+ coverage*.info
197
+
198
+ # Visual Studio code coverage results
199
+ *.coverage
200
+ *.coveragexml
201
+
202
+ # NCrunch
203
+ _NCrunch_*
204
+ .NCrunch_*
205
+ .*crunch*.local.xml
206
+ nCrunchTemp_*
207
+
208
+ # MightyMoose
209
+ *.mm.*
210
+ AutoTest.Net/
211
+
212
+ # Web workbench (sass)
213
+ .sass-cache/
214
+
215
+ # Installshield output folder
216
+ [Ee]xpress/
217
+
218
+ # DocProject is a documentation generator add-in
219
+ DocProject/buildhelp/
220
+ DocProject/Help/*.HxT
221
+ DocProject/Help/*.HxC
222
+ DocProject/Help/*.hhc
223
+ DocProject/Help/*.hhk
224
+ DocProject/Help/*.hhp
225
+ DocProject/Help/Html2
226
+ DocProject/Help/html
227
+
228
+ # Click-Once directory
229
+ publish/
230
+
231
+ # Publish Web Output
232
+ *.[Pp]ublish.xml
233
+ *.azurePubxml
234
+ # Note: Comment the next line if you want to checkin your web deploy settings,
235
+ # but database connection strings (with potential passwords) will be unencrypted
236
+ *.pubxml
237
+ *.publishproj
238
+
239
+ # Microsoft Azure Web App publish settings. Comment the next line if you want to
240
+ # checkin your Azure Web App publish settings, but sensitive information contained
241
+ # in these scripts will be unencrypted
242
+ PublishScripts/
243
+
244
+ # NuGet Packages
245
+ *.nupkg
246
+ # NuGet Symbol Packages
247
+ *.snupkg
248
+ # The packages folder can be ignored because of Package Restore
249
+ # DISABLED: mono-repo uses /packages/ for source code
250
+ # **/[Pp]ackages/*
251
+ # !**/[Pp]ackages/build/
252
+ # #!**/[Pp]ackages/repositories.config
253
+ # NuGet v3's project.json files produces more ignorable files
254
+ *.nuget.props
255
+ *.nuget.targets
256
+
257
+ # Microsoft Azure Build Output
258
+ csx/
259
+ *.build.csdef
260
+
261
+ # Microsoft Azure Emulator
262
+ ecf/
263
+ rcf/
264
+
265
+ # Windows Store app package directories and files
266
+ AppPackages/
267
+ BundleArtifacts/
268
+ Package.StoreAssociation.xml
269
+ _pkginfo.txt
270
+ *.appx
271
+ *.appxbundle
272
+ *.appxupload
273
+
274
+ # Visual Studio cache files
275
+ # files ending in .cache can be ignored
276
+ *.[Cc]ache
277
+ # but keep track of directories ending in .cache
278
+ !?*.[Cc]ache/
279
+
280
+ # Others
281
+ ClientBin/
282
+ ~$*
283
+ *~
284
+ *.dbmdl
285
+ *.dbproj.schemaview
286
+ *.jfm
287
+ *.pfx
288
+ *.publishsettings
289
+ orleans.codegen.cs
290
+
291
+ # Including strong name files can present a security risk
292
+ # (https://github.com/github/gitignore/pull/2483#issue-259490424)
293
+ #*.snk
294
+
295
+ # Since there are multiple workflows, uncomment next line to ignore bower_components
296
+ # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
297
+ #bower_components/
298
+
299
+ # RIA/Silverlight projects
300
+ Generated_Code/
301
+
302
+ # Backup & report files from converting an old project file
303
+ # to a newer Visual Studio version. Backup files are not needed,
304
+ # because we have git ;-)
305
+ _UpgradeReport_Files/
306
+ Backup*/
307
+ UpgradeLog*.XML
308
+ UpgradeLog*.htm
309
+ ServiceFabricBackup/
310
+ *.rptproj.bak
311
+
312
+ # SQL Server files
313
+ *.mdf
314
+ *.ldf
315
+ *.ndf
316
+
317
+ # Business Intelligence projects
318
+ *.rdl.data
319
+ *.bim.layout
320
+ *.bim_*.settings
321
+ *.rptproj.rsuser
322
+ *- [Bb]ackup.rdl
323
+ *- [Bb]ackup ([0-9]).rdl
324
+ *- [Bb]ackup ([0-9][0-9]).rdl
325
+
326
+ # Microsoft Fakes
327
+ FakesAssemblies/
328
+
329
+ # GhostDoc plugin setting file
330
+ *.GhostDoc.xml
331
+
332
+ # Node.js Tools for Visual Studio
333
+ .ntvs_analysis.dat
334
+ node_modules/
335
+
336
+ # Visual Studio 6 build log
337
+ *.plg
338
+
339
+ # Visual Studio 6 workspace options file
340
+ *.opt
341
+
342
+ # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
343
+ *.vbw
344
+
345
+ # Visual Studio 6 auto-generated project file (contains which files were open etc.)
346
+ *.vbp
347
+
348
+ # Visual Studio 6 workspace and project file (working project files containing files to include in project)
349
+ *.dsw
350
+ *.dsp
351
+
352
+ # Visual Studio 6 technical files
353
+ *.ncb
354
+ *.aps
355
+
356
+ # Visual Studio LightSwitch build output
357
+ **/*.HTMLClient/GeneratedArtifacts
358
+ **/*.DesktopClient/GeneratedArtifacts
359
+ **/*.DesktopClient/ModelManifest.xml
360
+ **/*.Server/GeneratedArtifacts
361
+ **/*.Server/ModelManifest.xml
362
+ _Pvt_Extensions
363
+
364
+ # Paket dependency manager
365
+ **/.paket/paket.exe
366
+ paket-files/
367
+
368
+ # FAKE - F# Make
369
+ **/.fake/
370
+
371
+ # CodeRush personal settings
372
+ **/.cr/personal
373
+
374
+ # Python Tools for Visual Studio (PTVS)
375
+ **/__pycache__/
376
+ *.pyc
377
+
378
+ # Cake - Uncomment if you are using it
379
+ #tools/**
380
+ #!tools/packages.config
381
+
382
+ # Tabs Studio
383
+ *.tss
384
+
385
+ # Telerik's JustMock configuration file
386
+ *.jmconfig
387
+
388
+ # BizTalk build output
389
+ *.btp.cs
390
+ *.btm.cs
391
+ *.odx.cs
392
+ *.xsd.cs
393
+
394
+ # OpenCover UI analysis results
395
+ OpenCover/
396
+
397
+ # Azure Stream Analytics local run output
398
+ ASALocalRun/
399
+
400
+ # MSBuild Binary and Structured Log
401
+ *.binlog
402
+ MSBuild_Logs/
403
+
404
+ # AWS SAM Build and Temporary Artifacts folder
405
+ .aws-sam
406
+
407
+ # NVidia Nsight GPU debugger configuration file
408
+ *.nvuser
409
+
410
+ # MFractors (Xamarin productivity tool) working folder
411
+ **/.mfractor/
412
+
413
+ # Local History for Visual Studio
414
+ **/.localhistory/
415
+
416
+ # Visual Studio History (VSHistory) files
417
+ .vshistory/
418
+
419
+ # BeatPulse healthcheck temp database
420
+ healthchecksdb
421
+
422
+ # Backup folder for Package Reference Convert tool in Visual Studio 2017
423
+ MigrationBackup/
424
+
425
+ # Ionide (cross platform F# VS Code tools) working folder
426
+ **/.ionide/
427
+
428
+ # Fody - auto-generated XML schema
429
+ FodyWeavers.xsd
430
+
431
+ # VS Code files for those working on multiple tools
432
+ .vscode/*
433
+ !.vscode/settings.json
434
+ !.vscode/tasks.json
435
+ !.vscode/launch.json
436
+ !.vscode/extensions.json
437
+ !.vscode/*.code-snippets
438
+
439
+ # Local History for Visual Studio Code
440
+ .history/
441
+
442
+ # Built Visual Studio Code Extensions
443
+ *.vsix
444
+
445
+ # Windows Installer files from build outputs
446
+ *.cab
447
+ *.msi
448
+ *.msix
449
+ *.msm
450
+ *.msp
451
+
452
+ # Token/secret files
453
+ .mcpregistry_*
454
+ *.token
455
+ .env
456
+ .env.*
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.