Skip to content

Commit d2f9f93

Browse files
Remove System.ValueTuple package dependency from net472 target framework. (#2739)
Co-authored-by: Rivera, Mariano <[email protected]>
1 parent de9882f commit d2f9f93

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/ReactiveUI/ReactiveUI.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,15 @@
3737

3838
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
3939
<Compile Include="Platforms\net4\**\*.cs" />
40-
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
4140
<Reference Include="System.Windows" />
4241
<Reference Include="System.Windows.Forms" />
4342
<Reference Include="WindowsBase" />
4443
</ItemGroup>
4544

45+
<ItemGroup Condition=" $(TargetFramework.StartsWith('net46')) ">
46+
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
47+
</ItemGroup>
48+
4649
<ItemGroup Condition=" $(TargetFramework.StartsWith('net46')) or $(TargetFramework) == 'net5.0-windows' ">
4750
<Compile Include="Platforms\net4Desktop\**\*.cs" />
4851
</ItemGroup>

0 commit comments

Comments
 (0)