removes unused line, updates gitignore

This commit is contained in:
Shannon
2019-05-10 13:07:06 +10:00
parent 3d80d511a4
commit 8fce680430
2 changed files with 28 additions and 29 deletions
+1
View File
@@ -161,3 +161,4 @@ build/temp/
# eof # eof
/src/Umbraco.Web.UI.Client/TESTS-*.xml /src/Umbraco.Web.UI.Client/TESTS-*.xml
/src/ApiDocs/api/*
+1 -3
View File
@@ -440,12 +440,9 @@
$DocFxJson = Join-Path -Path $src "\ApiDocs\docfx.json" $DocFxJson = Join-Path -Path $src "\ApiDocs\docfx.json"
$DocFxSiteOutput = Join-Path -Path $tmp "\_site\*.*" $DocFxSiteOutput = Join-Path -Path $tmp "\_site\*.*"
# Build the solution in debug mode
$SolutionPath = Join-Path -Path $src -ChildPath "umbraco.sln"
#restore nuget packages #restore nuget packages
$this.RestoreNuGet() $this.RestoreNuGet()
# run DocFx # run DocFx
$DocFx = $this.BuildEnv.DocFx $DocFx = $this.BuildEnv.DocFx
@@ -511,6 +508,7 @@
if ($this.OnError()) { return } if ($this.OnError()) { return }
$this.PostPackageHook() $this.PostPackageHook()
if ($this.OnError()) { return } if ($this.OnError()) { return }
Write-Host "Done" Write-Host "Done"
}) })