Skip to content

Commit d7f6183

Browse files
committed
Merge pull request #67 from npmurphy/fix_ancient_build
Fix ancient build
2 parents d789c93 + f896993 commit d7f6183

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

build.fsx

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -88,12 +88,11 @@ Target "CleanDocs" (fun _ ->
8888
// Build library & test project
8989

9090
Target "Build" (fun _ ->
91-
{ BaseDirectory = __SOURCE_DIRECTORY__
92-
Includes = [ solutionFile + ".sln"
93-
solutionFile + ".Tests.sln" ]
94-
Excludes = [] }
95-
|> MSBuildRelease "" "Rebuild"
96-
|> ignore
91+
[ "src/IfSharpConsole/IfSharpConsole.csproj"
92+
//; "src/IfSharp.Kernel/IfSharp.Kernel.fsproj"
93+
]
94+
|> MSBuildRelease "bin" "Rebuild"
95+
|> ignore
9796
)
9897

9998
// --------------------------------------------------------------------------------------
@@ -178,7 +177,7 @@ Target "All" DoNothing
178177
==> "RestorePackages"
179178
==> "AssemblyInfo"
180179
==> "Build"
181-
==> "RunTests"
180+
// ==> "RunTests"
182181
==> "All"
183182

184183
"All"

src/IfSharpConsole/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
1313
<dependentAssembly>
1414
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
15-
<bindingRedirect oldVersion="0.0.0.0-4.3.1.0" newVersion="4.3.1.0" />
15+
<bindingRedirect oldVersion="0.0.0.0-999.999.999.999" newVersion="4.3.1.0" />
1616
</dependentAssembly>
1717
</assemblyBinding>
1818
</runtime>

0 commit comments

Comments
 (0)