Browse Source

PR feedback

pull/1086/head
Jeremy Koritzinsky 9 years ago
parent
commit
bb75421b3e
  1. 3
      build/Rx.props
  2. 5
      packages.cake

3
build/Rx.props

@ -5,7 +5,6 @@
<PackageReference Include="System.Reactive.Interfaces" Version="3.1.0" /> <PackageReference Include="System.Reactive.Interfaces" Version="3.1.0" />
<PackageReference Include="System.Reactive.Linq" Version="3.1.0" /> <PackageReference Include="System.Reactive.Linq" Version="3.1.0" />
<PackageReference Include="System.Reactive.PlatformServices" Version="3.1.0" /> <PackageReference Include="System.Reactive.PlatformServices" Version="3.1.0" />
<PackageReference Condition="'$(TargetFramework)' == 'net45'" Include="System.Reactive.Windows.Threading" Version="3.1.0" /> <PackageReference Condition="$(TargetFramework.StartsWith('net4'))" Include="System.Reactive.Windows.Threading" Version="3.1.0" />
<PackageReference Condition="'$(TargetFramework)' == 'net461'" Include="System.Reactive.Windows.Threading" Version="3.1.0" />
</ItemGroup> </ItemGroup>
</Project> </Project>

5
packages.cake

@ -281,11 +281,10 @@ public class Packages
new NuGetPackSettings() new NuGetPackSettings()
{ {
Id = "Avalonia.ReactiveUI", Id = "Avalonia.ReactiveUI",
Dependencies = new [] Dependencies = new DependencyBuilder(this)
{ {
new NuSpecDependency() { Id = "Avalonia", Version = parameters.Version }, new NuSpecDependency() { Id = "Avalonia", Version = parameters.Version },
new NuSpecDependency() { Id = "reactiveui", Version = ReactiveUIVersion } }.Deps(new string[] {null}, "reactiveui"),
},
Files = new [] Files = new []
{ {
new NuSpecContent { Source = "Avalonia.ReactiveUI.dll", Target = "lib/netstandard1.3" } new NuSpecContent { Source = "Avalonia.ReactiveUI.dll", Target = "lib/netstandard1.3" }

Loading…
Cancel
Save