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 f0bb9b4
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 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

0 comments on commit f0bb9b4

Please sign in to comment.