Skip to content

Commit f174ba8

Browse files
committed
feat(ci): do not build to the same folder but only pack
Building to the same directory causes all DLL from different .NET version to overlap
1 parent 607a578 commit f174ba8

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

build.fsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ Target.create "BuildRelease" (fun _ ->
167167
DotNet.build (fun p ->
168168
{ p with
169169
Configuration = DotNet.BuildConfiguration.Release
170-
OutputPath = Some buildDir
171170
MSBuildParams = { p.MSBuildParams with Properties = properties }
172171
}
173172
) solutionFileName

docs/loaders/apirefloader.fsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ let loader (projectRoot: string) (siteContet: SiteContents) =
3737
let projectArtifactName = "FSharpLint.Core.dll"
3838
// Try multiple possible locations for the assembly
3939
let possiblePaths = [
40-
// CI build output
41-
Path.Combine("..", "build", projectArtifactName)
4240
// Release build
4341
Path.Combine(projectDir, "bin", "Release", dotNetMoniker, projectArtifactName)
4442
// Debug build

0 commit comments

Comments
 (0)