From 17621209bed0d8e659e979f8e4b338093b71e4ba Mon Sep 17 00:00:00 2001
From: git-hub-user <git-hub-user@onzepost.nl>
Date: Thu, 4 Apr 2019 11:13:46 +0200
Subject: [PATCH] Update
 Checking-NuGet-package-vulnerabilities-with-OWASP-SafeNuGet.markdown

When I installed the package today, I received version 1.0.10. In this version, the setting DontBreakBuild is set to "false", by default. Also, the xmlns-attribute has protocol http, rather than https. http is the correct namespace, see https://docs.microsoft.com/en-gb/visualstudio/xml-tools/schema-cache?view=vs-2015. Why propose to replace the complete file contents, when only one setting has to be modified?
---
 ...age-vulnerabilities-with-OWASP-SafeNuGet.markdown | 12 ++----------
 1 file changed, 2 insertions(+), 10 deletions(-)

diff --git a/Docs.Site/Docs/How-To/Checking-NuGet-package-vulnerabilities-with-OWASP-SafeNuGet.markdown b/Docs.Site/Docs/How-To/Checking-NuGet-package-vulnerabilities-with-OWASP-SafeNuGet.markdown
index 09d8c801..65cdd3ba 100644
--- a/Docs.Site/Docs/How-To/Checking-NuGet-package-vulnerabilities-with-OWASP-SafeNuGet.markdown
+++ b/Docs.Site/Docs/How-To/Checking-NuGet-package-vulnerabilities-with-OWASP-SafeNuGet.markdown
@@ -26,14 +26,6 @@ When a library referencing a potential unsafe package is built using MyGet Build
 
 ![MyGet Build Services using OWASP SafeNuGet](Images/build-services-owasp.png)
 
-## Can my build fail when such packages are consumed?
+## Does my build fail when such packages are consumed?
 
-It would be great if the build would fail entirely when such package is found. This can be done with simple configuration parameter for the SafeNuGet package. Find the *SafeNuGet.targets* file and update its contents to:
-
-	<Project ToolsVersion="4.0" xmlns="https://schemas.microsoft.com/developer/msbuild/2003">
-	  <UsingTask AssemblyFile="SafeNuGet.dll" TaskName="SafeNuGet.AreNuGetPackagesSafe"  />
-	  <Target Name="AfterBuild">
-	    <AreNuGetPackagesSafe ProjectPath="$(MSBuildProjectDirectory)"
-	         CacheTimeInMinutes="10" DontBreakBuild="false" />
-	  </Target>
-	</Project>
+By default, the build will fail when such a package is found. If you only want warnings, find the *SafeNuGet.targets* file and change the setting `DontBreakBuild` to `true`.