Skip to content

Commit 865cf74

Browse files
author
Gregor Sindl
committed
Resolve #91 by including net4.0 targetframework
1 parent 2c31831 commit 865cf74

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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,

0 commit comments

Comments
 (0)