Skip to content

Commit

Permalink
reactiveui#781 opimise dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
thompson-tomo committed Apr 30, 2024
1 parent 2d747b8 commit 70df937
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Sextant.Plugins.Popup/Sextant.Plugins.Popup.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<AssemblyName>Sextant.Plugins.Popup</AssemblyName>
Expand Down
2 changes: 2 additions & 0 deletions src/Sextant.XamForms/Sextant.XamForms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ReactiveUI.XamForms" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard2.0')) ">
<PackageReference Include="System.Collections.Immutable" />
</ItemGroup>
<ItemGroup>
Expand Down
5 changes: 4 additions & 1 deletion src/Sextant/Sextant.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
<ItemGroup>
<Compile Remove="Platforms\**\*.cs" />
<None Include="Platforms\**\*.cs" />
<PackageReference Include="System.Collections.Immutable" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap'))">
<PackageReference Include="ReactiveUI" />
Expand Down Expand Up @@ -63,6 +62,7 @@
<Compile Include="Platforms\mac\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
<PackageReference Include="System.Collections.Immutable" />
<Compile Include="Platforms\android\**\*.cs" />
<Compile Include="Platforms\xamarin-common\**\*.cs" />
<Reference Include="System.Runtime.Serialization" />
Expand All @@ -71,13 +71,16 @@
<Compile Include="Platforms\android\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
<PackageReference Include="System.Collections.Immutable" />
<Compile Include="Platforms\net4\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap')) ">
<PackageReference Include="System.Collections.Immutable" />
<Compile Include="Platforms\uap\**\*.cs" />
<Page Include="Platforms\uap\**\*.xaml" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard2.0')) ">
<PackageReference Include="System.Collections.Immutable" />
<Compile Include="Platforms\netstandard2.0\**\*.cs" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net6.0' or '$(TargetFramework)' == 'net7.0' or '$(TargetFramework)' == 'net8.0' or $(TargetFramework.EndsWith('-windows10.0.17763.0')) or $(TargetFramework.EndsWith('-windows10.0.19041.0')) ">
Expand Down

0 comments on commit 70df937

Please sign in to comment.