1- __scriptpath= $( cd " $( dirname " $0 " ) " ; pwd -P )
1+ #! /bin/sh -e
22
3+ __scriptpath=$( cd" $( dirname" $0 " ) " ; pwd -P)
34
4- # build tools ç
5+ # build tools
56dotnet restore$__scriptpath /buildtools/fssrgen/fssrgen.fsproj
67dotnet publish$__scriptpath /buildtools/fssrgen/fssrgen.fsproj -o$__scriptpath /../Tools/fssrgen
78dotnet restore$__scriptpath /buildtools/fslex/fslex.fsproj
89dotnet publish$__scriptpath /buildtools/fslex/fslex.fsproj -o$__scriptpath /../Tools/fslex
910dotnet restore$__scriptpath /buildtools/fsyacc/fsyacc.fsproj
1011dotnet publish$__scriptpath /buildtools/fsyacc/fsyacc.fsproj -o$__scriptpath /../Tools/fsyacc
1112
12- rem build tools
13+ # build tools
1314dotnet restore$__scriptpath /fsharp/FSharp.Build/FSharp.Build.BuildFromSource.fsproj
1415dotnet publish$__scriptpath /fsharp/FSharp.Build/FSharp.Build.BuildFromSource.fsproj
1516
@@ -18,7 +19,7 @@ dotnet publish fsharp/fsi/Fsi.BuildFromSource.fsproj
1819
1920dotnet restore$__scriptpath /fsharp/Fsc/Fsc.BuildFromSource.fsproj
2021dotnet publish$__scriptpath /fsharp/Fsc/Fsc.BuildFromSource.fsproj
22+
2123# build and pack tools
2224dotnet restore$__scriptpath /fsharp/FSharp.Compiler.nuget/FSharp.Compiler.nuget.BuildFromSource.fsproj
2325dotnet pack$__scriptpath /fsharp/FSharp.Compiler.nuget/FSharp.Compiler.nuget.BuildFromSource.fsproj -c release
24-