From 930084b46d3fe406528437a1ce5b63dd2c68e1db Mon Sep 17 00:00:00 2001 From: Howard Wolosky Date: Wed, 5 Jun 2019 11:43:26 -0700 Subject: [PATCH] Add diagnostic data dll names to .gitignore These dll's are used for reporting diagnostic data and users can optionally store them in the module's directory to avoid downloading them on demand (or they can use Set-GitHubConfiguration -AssemblyPath to specify an alternate location). For users that opt to put the dll's in the module directory and are using the module from a git enlistment, this will ignore those files. This should be temporary and should be able to be undone once #104 is resolved. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 8e0d3cf4..3f2d6014 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,4 @@ Tests/Config/Settings.ps1 +Microsoft.ApplicationInsights.dll +Microsoft.Diagnostics.Tracing.EventSource.dll +Microsoft.Threading.Tasks.dll