Skip to content

Commit

Permalink
Cleanup/version consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Jun 12, 2020
1 parent 842c22e commit 07070a2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 9 deletions.
6 changes: 3 additions & 3 deletions equinox-shipping/Domain.Tests/Domain.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />

<PackageReference Include="Equinox.MemoryStore" Version="2.1.0" />
<PackageReference Include="Unquote" Version="5.0.0" />
<PackageReference Include="FsCheck.Xunit" Version="2.14.2" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="unquote" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions equinox-shipping/Domain/Domain.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<WarningLevel>5</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />

<PackageReference Include="Equinox.MemoryStore" Version="2.1.0" />
<PackageReference Include="Unquote" Version="5.0.0" />
<PackageReference Include="FsCheck.Xunit" Version="2.14.2" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="unquote" Version="5.0.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion propulsion-sync/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ module Args =
match __.Tcp, __.Port with
| false, None -> Discovery.GossipDns __.Host
| false, Some p -> Discovery.GossipDnsCustomPort (__.Host, p)
| true, None -> Discovery.Uri (UriBuilder("tcp", __.Host).Uri)
| true, None -> Discovery.Uri (UriBuilder("tcp", __.Host, 1113).Uri)
| true, Some p -> Discovery.Uri (UriBuilder("tcp", __.Host, p).Uri)
member __.Tcp =
a.Contains EsSinkParameters.Tcp
Expand Down
3 changes: 2 additions & 1 deletion tests/Equinox.Templates.Tests/Equinox.Templates.Tests.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.9.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />

<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
<PrivateAssets>all</PrivateAssets>
Expand Down
2 changes: 1 addition & 1 deletion tests/Equinox.Templates.Tests/Infrastructure.fs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module Process =
direct p.OutputDataReceived (out.AppendLine >> ignore); direct p.ErrorDataReceived (err.AppendLine >> ignore)
let _wasFresh = p.Start()
p.BeginErrorReadLine(); p.BeginOutputReadLine()
if not (p.WaitForExit 30_000) then
if not (p.WaitForExit 60_000) then
failwithf "Running %s %s timed out" fileName args
if p.ExitCode <> 0 then
failwithf "Process <%s %s> Failed:\nstdout: <%O>\n stderr: <%O>" fileName args out err
Expand Down

0 comments on commit 07070a2

Please sign in to comment.