Skip to content

Commit

Permalink
Normalize testing sdk dep to 16.7.0 to fix possible build glitch
Browse files Browse the repository at this point in the history
@canndrew was getting this build issue momentarily (and this patch fixes
it):

/home/shum/src/work/DotNetLightning/tests/DotNetLightning.Infrastructure.Tests/DotNetLightning.Infrastructure.Tests.fsproj : error NU1103: Unable to find a stable package Microsoft.TestPlatform.TestHost with version (>= 16.7.1) [/home/shum/src/work/DotNetLightning/DotNetLightning.sln]
/home/shum/src/work/DotNetLightning/tests/DotNetLightning.Infrastructure.Tests/DotNetLightning.Infrastructure.Tests.fsproj : error NU1103:   - Found 96 version(s) in nuget.org [ Nearest version: 16.8.0-preview-20200806-02 ] [/home/shum/src/work/DotNetLightning/DotNetLightning.sln]
  • Loading branch information
knocte committed Aug 20, 2020
1 parent 7918f43 commit 84f5058
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Expecto" Version="8.*" />
<PackageReference Update="FSharp.Core" Version="4.7.0" />
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<PackageReference Include="Expecto.FsCheck" Version="8.10.1" />
<PackageReference Update="FSharp.Core" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="2.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\DotNetLightning.Core\DotNetLightning.Core.fsproj" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<PackageReference Update="FSharp.Core" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="3.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="4.7.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="3.1.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="coverlet.collector" Version="1.0.1" />
Expand Down
2 changes: 1 addition & 1 deletion tests/Macaroons.Tests/Macaroons.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="coverlet.collector" Version="1.2.0" />
Expand Down
2 changes: 1 addition & 1 deletion tests/SampleTest/SampleTest.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
<PackageReference Include="Expecto" Version="8.*" />
<PackageReference Include="FSharp.Core" Version="4.*" />
<PackageReference Include="YoloDev.Expecto.TestSdk" Version="0.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.*" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.0" />
</ItemGroup>
</Project>

0 comments on commit 84f5058

Please sign in to comment.