Skip to content

Commit

Permalink
More of it builds
Browse files Browse the repository at this point in the history
  • Loading branch information
wallymathieu committed Mar 23, 2018
1 parent d0b9e56 commit 8e5d612
Show file tree
Hide file tree
Showing 18 changed files with 88 additions and 15,041 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ matrix:
sudo: required
dist: trusty
mono: none
dotnet: 1.0.0-preview2-003121
dotnet: 2.1.4
exclude:
- env: CONFIGS=Release

Expand Down
1,035 changes: 6 additions & 1,029 deletions Benchmarks/AsyncOverhead/AsyncOverhead.fsproj

Large diffs are not rendered by default.

1,045 changes: 6 additions & 1,039 deletions Benchmarks/Cell/Cell.fsproj

Large diffs are not rendered by default.

1,035 changes: 6 additions & 1,029 deletions Benchmarks/Chameneos/Chameneos.fsproj

Large diffs are not rendered by default.

1,043 changes: 6 additions & 1,037 deletions Benchmarks/CmlLCH/CmlLCH.fsproj

Large diffs are not rendered by default.

1,033 changes: 6 additions & 1,027 deletions Benchmarks/CounterActor/CounterActor.fsproj

Large diffs are not rendered by default.

1,039 changes: 6 additions & 1,033 deletions Benchmarks/Fibonacci/Fibonacci.fsproj

Large diffs are not rendered by default.

1,035 changes: 6 additions & 1,029 deletions Benchmarks/PingPong/PingPong.fsproj

Large diffs are not rendered by default.

1,046 changes: 6 additions & 1,040 deletions Benchmarks/PostMailbox/PostMailbox.fsproj

Large diffs are not rendered by default.

1,036 changes: 5 additions & 1,031 deletions Benchmarks/PrimesStream/PrimesStream.fsproj

Large diffs are not rendered by default.

1,032 changes: 6 additions & 1,026 deletions Benchmarks/ReaderWriter/ReaderWriter.fsproj

Large diffs are not rendered by default.

1,044 changes: 6 additions & 1,038 deletions Benchmarks/Skynet/Skynet.fsproj

Large diffs are not rendered by default.

1,045 changes: 6 additions & 1,039 deletions Benchmarks/StartRing/StartRing.fsproj

Large diffs are not rendered by default.

1,609 changes: 6 additions & 1,603 deletions Benchmarks/Streams/Streams.fsproj

Large diffs are not rendered by default.

1,029 changes: 5 additions & 1,024 deletions Benchmarks/ThreadRing/ThreadRing.fsproj

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions Examples/Misc/Misc.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<AssemblyName>Examples</AssemblyName>
<TargetFramework>net45</TargetFramework>
<Name>Misc</Name>
<StartWorkingDirectory>$(MSBuildProjectDirectory)\</StartWorkingDirectory>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<DebugSymbols>true</DebugSymbols>
<Tailcalls>true</Tailcalls>
Expand Down
3 changes: 3 additions & 0 deletions Libs/Hopac.Platform/Hopac.Platform.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
<DefineConstants>TRACE</DefineConstants>
<OtherFlags>--warnon:1182</OtherFlags>
</PropertyGroup>
<PropertyGroup Condition=" '$(Targetframework)' == 'Netstandard1.6' ">
<DefineConstants>CORECLR</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Init.fs" />
Expand Down
17 changes: 1 addition & 16 deletions run
Original file line number Diff line number Diff line change
Expand Up @@ -211,22 +211,7 @@ restore() {
echo "Restoring dependencies"

if [ "$USE" = netcore ] ; then
local NEW_CHECKSUM
if has md5 ; then
SUM=md5
elif has md5sum ; then
SUM=md5sum
else
echo "Couldn't find command to compute MD5."
return 1
fi
NEW_CHECKSUM="$(find . -name 'project.json' -print0 | xargs -0 cat | $SUM)"
local OLD_CHECKSUM=""
if [ -f .dotnet ] ; then OLD_CHECKSUM="$(cat .dotnet)" ; fi
if [ "$NEW_CHECKSUM" != "$OLD_CHECKSUM" ] ; then
echo -n "$NEW_CHECKSUM" > .dotnet
dotnet restore --verbosity Warning
fi
dotnet restore Hopac.sln
else
paket --silent restore
fi
Expand Down

0 comments on commit 8e5d612

Please sign in to comment.