File tree Expand file tree Collapse file tree 6 files changed +12
-9
lines changed
Expand file tree Collapse file tree 6 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 55 <TargetFramework >netcoreapp2.1</TargetFramework >
66 <IsPackable >false</IsPackable >
77 <CopyLocalLockFileAssemblies >true</CopyLocalLockFileAssemblies >
8+ <RootAllApplicationAssemblies >false</RootAllApplicationAssemblies >
9+ <IlcGenerateCompleteTypeMetadata >false</IlcGenerateCompleteTypeMetadata >
810 </PropertyGroup >
911
1012 <ItemGroup >
Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ let private extractRoot (archive : IArchive) (pattern : string) =
1919 match candidates with
2020 | head::[] -> head
2121 | [] ->
22- raise <| new Exception( " No directories matched the root" )
22+ raise <| Exception ( " No directories matched the root" )
2323 | xs ->
24- raise <| new Exception( " Multiple directories match the root: " + ( string xs))
24+ raise <| Exception ( " Multiple directories match the root: " + ( string xs))
2525
2626let extractTo ( pathToArchive : string ) ( pathToExtraction : string ) ( stripPrefix : string option ) = async {
2727 use archive = Archives.Zip.ZipArchive.Open( pathToArchive) :> IArchive
2828
29- let extractionOptions = new ExtractionOptions()
29+ let extractionOptions = ExtractionOptions ()
3030 extractionOptions.ExtractFullPath <- false
3131 extractionOptions.Overwrite <- true
3232
Original file line number Diff line number Diff line change 11module Buckaroo.Constants
22
33[<Literal>]
4- let Version = " 2.1.0 "
4+ let Version = " 2.1.1 "
55
66[<Literal>]
77let PackagesDirectory = " buckaroo"
Original file line number Diff line number Diff line change 6060 <ItemGroup >
6161 <PackageReference Include =" FParsec" Version =" 1.0.3" />
6262 <PackageReference Include =" FSharp.Control.AsyncSeq" Version =" 2.0.21" />
63- <PackageReference Include =" FSharp.Control.Reactive" Version =" 4.1.0" />
6463 <PackageReference Include =" FSharp.Data" Version =" 3.0.0" />
6564 <PackageReference Include =" FSharpx.Async" Version =" 1.13.2" />
6665 <PackageReference Include =" FSharpx.Collections" Version =" 1.17.0" />
Original file line number Diff line number Diff line change 22
33export CppCompilerAndLinker=clang
44
5- wget -O warp-packer https://github.com/dgiagio/warp/releases/download/v0.3.0/linux-x64.warp-packer
5+ wget -c - O warp-packer https://github.com/dgiagio/warp/releases/download/v0.3.0/linux-x64.warp-packer
66
77chmod +x ./warp-packer
88./warp-packer --version
99
10- dotnet publish ./buckaroo-cli/ -c Release -r linux-x64
10+ dotnet publish ./buckaroo-cli/ -c Release -r linux-x64
1111
1212mkdir -p warp
13+ rm -rf ./warp/buckaroo-linux
1314
1415./warp-packer --arch linux-x64 --exec buckaroo-cli --input_dir ./buckaroo-cli/bin/Release/netcoreapp2.1/linux-x64 --output warp/buckaroo-linux
1516./warp/buckaroo-linux
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- wget -O warp-packer https://github.com/dgiagio/warp/releases/download/v0.3.0/macos-x64.warp-packer
3+ wget -O warp-packer https://github.com/dgiagio/warp/releases/download/v0.3.0/macos-x64.warp-packer
44
55chmod +x ./warp-packer
66./warp-packer --version
77
8- dotnet publish ./buckaroo-cli/ -c Release -r osx-x64
8+ dotnet publish ./buckaroo-cli/ -c Release -r osx-x64
99
1010mkdir -p warp
11+ rm -rf ./warp/buckaroo-macos
1112
1213./warp-packer --arch macos-x64 --exec buckaroo-cli --input_dir ./buckaroo-cli/bin/Release/netcoreapp2.1/osx-x64 --output warp/buckaroo-macos
1314./warp/buckaroo-macos
You can’t perform that action at this time.
0 commit comments