Skip to content

Commit a45d441

Browse files
Update versions to allow integration tests to run on 17.14 (#796)
* Update versions to allow integration tests to run on 17.14 * Small updates Fixes build on CI, remove another warning related to XML comments * switch back to LTS
1 parent 6cff8d7 commit a45d441

4 files changed

Lines changed: 21 additions & 16 deletions

File tree

Directory.Packages.props

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<Project>
2-
2+
33
<PropertyGroup>
44
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
55
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
66
<!-- This is due to noise caused from the Minimatch package, tracked at https://github.com/SLaks/Minimatch/issues/12 -->
77
<NoWarn>$(NoWarn);NU1603</NoWarn>
88
<WebToolsPackageVersion>17.7.273</WebToolsPackageVersion>
99
</PropertyGroup>
10-
10+
1111
<ItemGroup>
12-
<PackageVersion Include="MessagePack" Version="2.5.187"/>
12+
<PackageVersion Include="MessagePack" Version="2.5.187" />
1313
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
14-
<PackageVersion Include="Microsoft.Build.Framework" Version="17.8.3" />
15-
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="17.8.3" />
16-
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.8.3" />
14+
<PackageVersion Include="Microsoft.Build.Framework" Version="17.8.29" />
15+
<PackageVersion Include="Microsoft.Build.Tasks.Core" Version="17.8.29" />
16+
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.8.29" />
1717
<PackageVersion Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.1" />
1818
<PackageVersion Include="Microsoft.IO.Redist" Version="6.0.1" />
1919
<PackageVersion Include="Microsoft.VisualStudio.Editor" Version="17.7.188" />
@@ -35,7 +35,7 @@
3535
<PackageVersion Include="NerdBank.GitVersioning" Version="3.6.133" />
3636
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
3737
<PackageVersion Include="Nuget.VisualStudio" Version="17.7.1" />
38-
38+
3939
<PackageVersion Include="System.Collections.Immutable" Version="7.0.0" />
4040
<PackageVersion Include="System.Formats.Asn1" Version="8.0.1" />
4141
<PackageVersion Include="System.Memory" Version="4.5.5" />
@@ -46,20 +46,20 @@
4646
<PackageVersion Include="System.Security.Cryptography.ProtectedData" Version="7.0.0" />
4747
<PackageVersion Include="System.Security.Permissions" Version="7.0.0" />
4848
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
49-
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.5.4"/>
49+
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
5050
<PackageVersion Include="System.ValueTuple" Version="4.5.0" />
51-
51+
5252
<!-- Test references -->
5353
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.7.0" />
54-
<PackageVersion Include="Microsoft.Test.Apex.VisualStudio" Version="17.10.34923.60" />
54+
<PackageVersion Include="Microsoft.Test.Apex.VisualStudio" Version="17.14.36217.32" />
5555
<PackageVersion Include="MSTest.TestAdapter" Version="3.0.3" />
5656
<PackageVersion Include="MSTest.TestFramework" Version="3.0.3" />
57-
57+
5858
<!-- CommandLine utils -->
5959
<!-- This version should be kept in sync with the value of RuntimeFrameworkVersion where this package is consumed -->
6060
<PackageVersion Include="Microsoft.Extensions.CommandLineUtils.Sources" Version="2.1.0" />
6161
<PackageVersion Include="Microsoft.NETCore.DotnetAppHost" Version="2.1.0" />
62-
62+
6363
</ItemGroup>
64-
64+
6565
</Project>

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.200",
4-
"rollForward": "latestFeature"
3+
"version": "8.0.411",
4+
"rollForward": "latestMajor"
55
}
66
}

src/LibraryManager/Providers/BaseProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ protected virtual string GetCachedFileLocalPath(ILibraryInstallationState state,
319319
/// <summary>
320320
/// Copies ILibraryInstallationState files to cache
321321
/// </summary>
322-
/// <param name="state">Desired install state to cache</param>
322+
/// <param name="goalState">Desired install state to cache</param>
323323
/// <param name="library">Library resolved from provider</param>
324324
/// <param name="cancellationToken"></param>
325325
/// <returns></returns>

src/LibraryManager/SemanticVersion.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ private SemanticVersion(string originalText)
5252
OriginalText = originalText;
5353
}
5454

55+
/// <summary>
56+
/// Parses a string into a SemanticVersion object. If the string is not a valid semantic version, the object will be created with the originalText value.
57+
/// </summary>
58+
/// <param name="value"></param>
59+
/// <returns></returns>
5560
public static SemanticVersion Parse(string value)
5661
{
5762
SemanticVersion ver = new SemanticVersion(value);

0 commit comments

Comments
 (0)