File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" MSBuild.Sdk.Extras" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >netstandard20;MonoAndroid11.0;Xamarin.iOS10;Xamarin.Mac20;net6.0-android;net6.0-ios;net6.0-macos</TargetFrameworks >
3
+ <TargetFrameworks >netstandard20;MonoAndroid11.0;Xamarin.iOS10;Xamarin.Mac20;net6.0-android;net6.0-ios;net6.0-macos;net6.0-windows10.0.17763.0 </TargetFrameworks >
4
4
<PackageId >ReactiveUI.Uno.WinUI</PackageId >
5
5
<PackageDescription >Contains the ReactiveUI platform specific extensions for Uno WinUI</PackageDescription >
6
6
<DefineConstants >$(DefineConstants);HAS_UNO;HAS_WINUI</DefineConstants >
11
11
<PropertyGroup Condition =" $(TargetFramework.StartsWith('netstandard')) " >
12
12
<DefineConstants >$(DefineConstants);WASM</DefineConstants >
13
13
</PropertyGroup >
14
+ <PropertyGroup Condition =" $(TargetFramework.StartsWith('net6.0-windows10'))" >
15
+ <DefineConstants >$(DefineConstants);HAS_UNO_WINUI</DefineConstants >
16
+ </PropertyGroup >
14
17
15
18
<ItemGroup Condition =" $(TargetFramework.StartsWith('MonoAndroid')) " >
16
19
<!-- Hack to get around invalid version of Java.Interop -->
26
29
<Compile Remove =" Resources\**" />
27
30
</ItemGroup >
28
31
29
- <ItemGroup >
32
+ <ItemGroup Condition = " !$(TargetFramework.StartsWith('net6.0-windows10')) " >
30
33
<PackageReference Include =" Uno.WinUI" Version =" 4.0.9" />
31
34
</ItemGroup >
32
-
35
+ <PropertyGroup Condition =" $(TargetFramework.StartsWith('net6.0-windows10'))" >
36
+ <DefineConstants >$(DefineConstants);HAS_UNO_WINUI</DefineConstants >
37
+ </PropertyGroup >
38
+ <ItemGroup Condition =" $(TargetFramework.StartsWith('net6.0-windows10')) " >
39
+ <PackageReference Include =" Microsoft.WindowsAppSDK" Version =" 1.0.0" />
40
+ </ItemGroup >
33
41
<ItemGroup Condition =" $(TargetFramework.StartsWith('netstandard')) " >
34
42
<PackageReference Include =" Reactive.Wasm" Version =" 1.*" />
35
43
</ItemGroup >
Original file line number Diff line number Diff line change 5
5
6
6
using System ;
7
7
using System . Linq ;
8
- using System . Reactive ;
9
8
using System . Reactive . Linq ;
10
9
using System . Reflection ;
11
10
Original file line number Diff line number Diff line change 16
16
<None Include =" ..\ReactiveUI.Uwp\Rx\**\*.cs" LinkBase =" Rx" />
17
17
</ItemGroup >
18
18
19
- <ItemGroup Condition =" $(TargetFramework.StartsWith('net4')) or $(TargetFramework) == 'net5.0-windows' or $(TargetFramework) == ' net6.0-windows' " >
19
+ <ItemGroup Condition =" $(TargetFramework.StartsWith('net4')) or $(TargetFramework) == 'net6.0-windows' " >
20
20
<Compile Include =" ..\ReactiveUI.Uwp\Rx\Concurrency\DispatcherScheduler.cs" LinkBase =" Rx" />
21
21
<Compile Include =" ..\ReactiveUI.Uwp\Rx\Internal\Constants.cs" LinkBase =" Rx" />
22
22
<Compile Include =" ..\ReactiveUI.Uwp\Rx\Linq\**\*.cs" LinkBase =" Rx" Exclude =" ..\ReactiveUI.Uwp\Rx\Linq\ControlObservable.cs" />
You can’t perform that action at this time.
0 commit comments