Skip to content

Commit f5dbfe5

Browse files
author
Gregor Sindl
committed
Merge branch 'feature/net4support' into develop
2 parents 2c31831 + 4f2d93b commit f5dbfe5

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/GregsStack.InputSimulatorStandard/GregsStack.InputSimulatorStandard.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>net40;netstandard2.0</TargetFrameworks>
55
<Title>Input Simulator Standard</Title>
66
<Authors>Michael Noonan, Theodoros Chatzigiannakis, Gregor Sindl</Authors>
77
<Copyright>Copyright 2009-2019</Copyright>
@@ -27,7 +27,7 @@
2727
</ItemGroup>
2828

2929
<ItemGroup>
30-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01">
30+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
3131
<PrivateAssets>all</PrivateAssets>
3232
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3333
</PackageReference>

src/GregsStack.InputSimulatorStandard/InputBuilder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ internal class InputBuilder : IEnumerable<Input>
1818
/// </summary>
1919
private readonly List<Input> inputList;
2020

21-
private static readonly IReadOnlyList<VirtualKeyCode> ExtendedKeys = new List<VirtualKeyCode>
21+
private static readonly List<VirtualKeyCode> ExtendedKeys = new List<VirtualKeyCode>
2222
{
2323
VirtualKeyCode.NUMPAD_RETURN,
2424
VirtualKeyCode.MENU,

tests/GregsStack.InputSimulatorStandard.Tests/GregsStack.InputSimulatorStandard.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="altcover" Version="6.1.708" />
10-
<PackageReference Include="HtmlAgilityPack" Version="1.11.12" />
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
12-
<PackageReference Include="Moq" Version="4.13.0" />
9+
<PackageReference Include="altcover" Version="8.0.815" />
10+
<PackageReference Include="HtmlAgilityPack" Version="1.11.30" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
12+
<PackageReference Include="Moq" Version="4.16.0" />
1313
<PackageReference Include="xunit" Version="2.4.1" />
14-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.1">
14+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1717
</PackageReference>

tools/NuGet.Tools/NuGet.Tools.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Codecov" Version="1.7.2" />
9+
<PackageReference Include="Codecov" Version="1.13.0" />
1010
</ItemGroup>
1111

1212
</Project>

0 commit comments

Comments
 (0)