From 8cf68212e6212f9685b507be17cbd1afe4d97152 Mon Sep 17 00:00:00 2001 From: Howard Wolosky Date: Wed, 5 Jun 2019 11:44:57 -0700 Subject: [PATCH] Add diagnostic data dll names to .gitignore (#113) 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