forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReactiveUI.Tests_Mono.csproj
104 lines (104 loc) · 4.6 KB
/
ReactiveUI.Tests_Mono.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>10.0.0</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7CA675EF-FF6D-4A41-8271-C7D72AA57705}</ProjectGuid>
<OutputType>Library</OutputType>
<RootNamespace>ReactiveUI.Tests_Mono</RootNamespace>
<AssemblyName>ReactiveUI.Tests_Mono</AssemblyName>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>False</Optimize>
<OutputPath>bin\Debug</OutputPath>
<DefineConstants>DEBUG; MONO</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>none</DebugType>
<Optimize>True</Optimize>
<OutputPath>bin\Release</OutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<ConsolePause>False</ConsolePause>
<DefineConstants>MONO</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="WindowsBase" />
<Reference Include="System.Xaml" />
<Reference Include="xunit">
<HintPath>..\ext\xunit\xunit.dll</HintPath>
</Reference>
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Xml" />
<Reference Include="System.Reactive.Core">
<HintPath>..\ext\mono\System.Reactive.Core.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.Experimental">
<HintPath>..\ext\mono\System.Reactive.Experimental.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.Interfaces">
<HintPath>..\ext\mono\System.Reactive.Interfaces.dll</HintPath>
</Reference>
<Reference Include="<Module>">
<HintPath>..\ext\mono\System.Reactive.Linq.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.PlatformServices">
<HintPath>..\ext\mono\System.Reactive.PlatformServices.dll</HintPath>
</Reference>
<Reference Include="System.Reactive.Windows.Threading">
<HintPath>..\ext\mono\System.Reactive.Windows.Threading.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>
<Compile Include="ErrorsTest.cs" />
<Compile Include="MakeObjectReactiveHelperTest.cs" />
<Compile Include="MessageBusTest.cs" />
<Compile Include="ObservableAsPropertyHelperTest.cs" />
<Compile Include="ObservableAsyncMRUCacheTest.cs" />
<Compile Include="ObservedChangedMixinTest.cs" />
<Compile Include="ReactiveCollectionTest.cs" />
<Compile Include="ReactiveCommandTest.cs" />
<Compile Include="ReactiveNotifyPropertyChangedMixinTest.cs" />
<Compile Include="ReactiveObjectTest.cs" />
<Compile Include="ReactiveValidatedObjectTest.cs" />
<Compile Include="RxAppTest.cs" />
<Compile Include="Utility.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ReactiveUI.Cocoa\ReactiveUI.Cocoa.csproj">
<Project>{0913BF79-061F-4667-ADF9-8E6CDA6D1213}</Project>
<Name>ReactiveUI.Cocoa</Name>
</ProjectReference>
<ProjectReference Include="..\ReactiveUI.Gtk\ReactiveUI.Gtk_Mono.csproj">
<Project>{482DE1CC-A08C-49F7-AB36-445DC9724482}</Project>
<Name>ReactiveUI.Gtk_Mono</Name>
</ProjectReference>
<ProjectReference Include="..\ReactiveUI.NLog\ReactiveUI.NLog_Mono.csproj">
<Project>{67038157-092E-4D72-BAF4-949EB1532264}</Project>
<Name>ReactiveUI.NLog_Mono</Name>
</ProjectReference>
<ProjectReference Include="..\ReactiveUI.Routing\ReactiveUI.Routing_Mono.csproj">
<Project>{67038157-092E-4D72-BAF4-049EB1532264}</Project>
<Name>ReactiveUI.Routing_Mono</Name>
</ProjectReference>
<ProjectReference Include="..\ReactiveUI.Xaml\ReactiveUI.Xaml_Mono.csproj">
<Project>{761AC9BA-4A9C-440C-9B6C-2569978F0610}</Project>
<Name>ReactiveUI.Xaml_Mono</Name>
</ProjectReference>
<ProjectReference Include="..\ReactiveUI\ReactiveUI_Mono.csproj">
<Project>{292A477B-BB94-43C1-984E-E177EF9FEDB7}</Project>
<Name>ReactiveUI_Mono</Name>
</ProjectReference>
</ItemGroup>
</Project>