Skip to content

Commit d503748

Browse files
Updating profiles
1 parent fd75edd commit d503748

File tree

7 files changed

+162
-30
lines changed

7 files changed

+162
-30
lines changed

Ix.NET/Source/Common.targets

Lines changed: 77 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,31 @@
2323
<BuildTarget>PL</BuildTarget>
2424
</PropertyGroup>
2525

26-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug45|AnyCPU' ">
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugPLLITE|AnyCPU' ">
2727
<BuildConfig>Debug</BuildConfig>
28-
<BuildTarget>45</BuildTarget>
28+
<BuildTarget>PLLITE</BuildTarget>
2929
</PropertyGroup>
30-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release45|AnyCPU' ">
30+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleasePLLITE|AnyCPU' ">
3131
<BuildConfig>Release</BuildConfig>
32-
<BuildTarget>45</BuildTarget>
32+
<BuildTarget>PLLITE</BuildTarget>
33+
</PropertyGroup>
34+
35+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug8|AnyCPU' ">
36+
<BuildConfig>Debug</BuildConfig>
37+
<BuildTarget>8</BuildTarget>
38+
</PropertyGroup>
39+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release8|AnyCPU' ">
40+
<BuildConfig>Release</BuildConfig>
41+
<BuildTarget>8</BuildTarget>
42+
</PropertyGroup>
43+
44+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug81|AnyCPU' ">
45+
<BuildConfig>Debug</BuildConfig>
46+
<BuildTarget>81</BuildTarget>
47+
</PropertyGroup>
48+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release81|AnyCPU' ">
49+
<BuildConfig>Release</BuildConfig>
50+
<BuildTarget>81</BuildTarget>
3351
</PropertyGroup>
3452

3553
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug40|AnyCPU' ">
@@ -41,6 +59,24 @@
4159
<BuildTarget>40</BuildTarget>
4260
</PropertyGroup>
4361

62+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug45|AnyCPU' ">
63+
<BuildConfig>Debug</BuildConfig>
64+
<BuildTarget>45</BuildTarget>
65+
</PropertyGroup>
66+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release45|AnyCPU' ">
67+
<BuildConfig>Release</BuildConfig>
68+
<BuildTarget>45</BuildTarget>
69+
</PropertyGroup>
70+
71+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'DebugWP8|AnyCPU' ">
72+
<BuildConfig>Debug</BuildConfig>
73+
<BuildTarget>WP8</BuildTarget>
74+
</PropertyGroup>
75+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseWP8|AnyCPU' ">
76+
<BuildConfig>Release</BuildConfig>
77+
<BuildTarget>WP8</BuildTarget>
78+
</PropertyGroup>
79+
4480
<!--
4581
***********************
4682
* Legacy Platforms *
@@ -83,9 +119,46 @@
83119
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
84120
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
85121
<NoStdLib>true</NoStdLib>
122+
</PropertyGroup>
123+
124+
<PropertyGroup Condition=" '$(BuildTarget)' == 'PLITE' ">
125+
<DefineConstants>$(DefineConstants);HAS_AWAIT</DefineConstants>
126+
<TargetFrameworkIdentifier>.NETPortable</TargetFrameworkIdentifier>
127+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
128+
<TargetFrameworkProfile>Profile136</TargetFrameworkProfile>
129+
<NoStdLib>true</NoStdLib>
86130
<BuildFlavor>DESKTOPCLR45</BuildFlavor>
87131
</PropertyGroup>
88132

133+
<PropertyGroup Condition=" '$(BuildTarget)' == 'WP7' ">
134+
<DefineConstants>$(DefineConstants);WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP</DefineConstants>
135+
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
136+
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
137+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
138+
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
139+
<SilverlightApplication>false</SilverlightApplication>
140+
<BuildPlatform>SILVERLIGHT</BuildPlatform>
141+
<BuildFlavor>SILVERLIGHTM7</BuildFlavor>
142+
</PropertyGroup>
143+
144+
<PropertyGroup Condition=" '$(BuildTarget)' == 'WP8' ">
145+
<DefineConstants>$(DefineConstants);HAS_EDI;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;NO_EVENTARGS_CONSTRAINT;USE_SL_DISPATCHER;HAS_WINRT;NO_SERIALIZABLE;NO_REMOTING;NO_CDS_COLLECTIONS;USE_TIMER_SELF_ROOT</DefineConstants>
146+
<TargetFrameworkIdentifier>WindowsPhone</TargetFrameworkIdentifier>
147+
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
148+
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
149+
<SilverlightApplication>false</SilverlightApplication>
150+
<BuildPlatform>WINDOWS_PHONE</BuildPlatform>
151+
<BuildFlavor>WINDOWS_PHONE8</BuildFlavor>
152+
<NoStdLib>true</NoStdLib>
153+
</PropertyGroup>
154+
155+
<PropertyGroup Condition=" '$(BuildTarget)' == '40' ">
156+
<DefineConstants>$(DefineConstants);HAS_APTCA</DefineConstants>
157+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
158+
<BuildPlatform>DESKTOPCLR</BuildPlatform>
159+
<BuildFlavor>DESKTOPCLR40</BuildFlavor>
160+
</PropertyGroup>
161+
89162
<PropertyGroup Condition=" '$(BuildTarget)' == '45' ">
90163
<DefineConstants>$(DefineConstants);HAS_AWAIT;HAS_APTCA</DefineConstants>
91164
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
@@ -102,14 +175,6 @@
102175
<BuildFlavor>DESKTOPCLR45</BuildFlavor>
103176
</PropertyGroup>
104177

105-
106-
<PropertyGroup Condition=" '$(BuildTarget)' == '40' ">
107-
<DefineConstants>$(DefineConstants);HAS_APTCA</DefineConstants>
108-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
109-
<BuildPlatform>DESKTOPCLR</BuildPlatform>
110-
<BuildFlavor>DESKTOPCLR40</BuildFlavor>
111-
</PropertyGroup>
112-
113178
<PropertyGroup Condition=" '$(BuildTarget)' == '35' ">
114179
<DefineConstants>$(DefineConstants);NO_VARIANCE;NO_TPL;NO_LARGEARITY;NO_RXINTERFACES;NO_ZIP;HAS_APTCA</DefineConstants>
115180
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
@@ -127,20 +192,6 @@
127192
<BuildFlavor>SILVERLIGHT5</BuildFlavor>
128193
</PropertyGroup>
129194

130-
<PropertyGroup Condition=" '$(BuildTarget)' == 'WP7' ">
131-
<DefineConstants>$(DefineConstants);WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP</DefineConstants>
132-
<TargetFrameworkProfile>WindowsPhone71</TargetFrameworkProfile>
133-
<TargetFrameworkIdentifier>Silverlight</TargetFrameworkIdentifier>
134-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
135-
<SilverlightVersion>$(TargetFrameworkVersion)</SilverlightVersion>
136-
<SilverlightApplication>false</SilverlightApplication>
137-
<BuildPlatform>SILVERLIGHT</BuildPlatform>
138-
<BuildFlavor>SILVERLIGHTM7</BuildFlavor>
139-
</PropertyGroup>
140-
141-
142-
143-
144195
<!--
145196
********************
146197
* GENERAL SETTINGS *

Ix.NET/Source/Import.targets

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.$(TargetFrameworkProfile).Overrides.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
1414
<Import Project="$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\$(TargetFrameworkVersion)\Microsoft.Silverlight.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'SILVERLIGHTM7' " />
1515

16-
17-
<!-- <Import Project="$(MSBuildExtensionsPath)\Microsoft\XNA Game Studio\Microsoft.Xna.GameStudio.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildPlatform)' == 'XNA' "/>
18-
-->
19-
16+
<!-- Windows Phone 8 -->
17+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'WINDOWS_PHONE8' "/>
18+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' != '.NETPortable' And '$(BuildFlavor)' == 'WINDOWS_PHONE8' "/>
19+
2020
<!-- Portable Library Build -->
2121
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" Condition=" '$(TargetFrameworkIdentifier)' == '.NETPortable' " />
2222

@@ -29,4 +29,11 @@
2929
Lines="Auto-generated file, indicates the corresponding binary file needs to be signed." />
3030
</Target>
3131

32+
<!-- Skip validation of packages.config since we are manageing the packages manuallt -->
33+
<PropertyGroup>
34+
<SkipValidatePackageReferences>true</SkipValidatePackageReferences>
35+
</PropertyGroup>
36+
37+
<Import Project="packages\Microsoft.Bcl.Build.1.0.4\tools\Microsoft.Bcl.Build.targets" Condition=" '$(BuildTarget)' == 'PLLITE' Or '$(BuildTarget)' == '40' " />
38+
3239
</Project>

Ix.NET/Source/Interactive Extensions.sln

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,15 @@ Global
2727
DebugPL|Any CPU = DebugPL|Any CPU
2828
DebugSL5|Any CPU = DebugSL5|Any CPU
2929
DebugWP7|Any CPU = DebugWP7|Any CPU
30+
DebugWP8|Any CPU = DebugWP8|Any CPU
3031
Release|Any CPU = Release|Any CPU
3132
Release35|Any CPU = Release35|Any CPU
3233
Release40|Any CPU = Release40|Any CPU
3334
Release45|Any CPU = Release45|Any CPU
3435
ReleasePL|Any CPU = ReleasePL|Any CPU
3536
ReleaseSL5|Any CPU = ReleaseSL5|Any CPU
3637
ReleaseWP7|Any CPU = ReleaseWP7|Any CPU
38+
ReleaseWP8|Any CPU = ReleaseWP8|Any CPU
3739
EndGlobalSection
3840
GlobalSection(ProjectConfigurationPlatforms) = postSolution
3941
{8E4B04F0-915E-48F9-9796-76278C6094BD}.Debug|Any CPU.ActiveCfg = Debug45|Any CPU
@@ -50,6 +52,8 @@ Global
5052
{8E4B04F0-915E-48F9-9796-76278C6094BD}.DebugSL5|Any CPU.Build.0 = DebugSL5|Any CPU
5153
{8E4B04F0-915E-48F9-9796-76278C6094BD}.DebugWP7|Any CPU.ActiveCfg = DebugWP7|Any CPU
5254
{8E4B04F0-915E-48F9-9796-76278C6094BD}.DebugWP7|Any CPU.Build.0 = DebugWP7|Any CPU
55+
{8E4B04F0-915E-48F9-9796-76278C6094BD}.DebugWP8|Any CPU.ActiveCfg = DebugWP8|Any CPU
56+
{8E4B04F0-915E-48F9-9796-76278C6094BD}.DebugWP8|Any CPU.Build.0 = DebugWP8|Any CPU
5357
{8E4B04F0-915E-48F9-9796-76278C6094BD}.Release|Any CPU.ActiveCfg = Release45|Any CPU
5458
{8E4B04F0-915E-48F9-9796-76278C6094BD}.Release|Any CPU.Build.0 = Release45|Any CPU
5559
{8E4B04F0-915E-48F9-9796-76278C6094BD}.Release35|Any CPU.ActiveCfg = Release35|Any CPU
@@ -64,6 +68,8 @@ Global
6468
{8E4B04F0-915E-48F9-9796-76278C6094BD}.ReleaseSL5|Any CPU.Build.0 = ReleaseSL5|Any CPU
6569
{8E4B04F0-915E-48F9-9796-76278C6094BD}.ReleaseWP7|Any CPU.ActiveCfg = ReleaseWP7|Any CPU
6670
{8E4B04F0-915E-48F9-9796-76278C6094BD}.ReleaseWP7|Any CPU.Build.0 = ReleaseWP7|Any CPU
71+
{8E4B04F0-915E-48F9-9796-76278C6094BD}.ReleaseWP8|Any CPU.ActiveCfg = ReleaseWP8|Any CPU
72+
{8E4B04F0-915E-48F9-9796-76278C6094BD}.ReleaseWP8|Any CPU.Build.0 = ReleaseWP8|Any CPU
6773
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Debug|Any CPU.ActiveCfg = Debug45|Any CPU
6874
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Debug|Any CPU.Build.0 = Debug45|Any CPU
6975
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Debug35|Any CPU.ActiveCfg = Debug35|Any CPU
@@ -78,6 +84,8 @@ Global
7884
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.DebugSL5|Any CPU.Build.0 = DebugSL5|Any CPU
7985
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.DebugWP7|Any CPU.ActiveCfg = DebugWP7|Any CPU
8086
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.DebugWP7|Any CPU.Build.0 = DebugWP7|Any CPU
87+
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.DebugWP8|Any CPU.ActiveCfg = DebugWP8|Any CPU
88+
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.DebugWP8|Any CPU.Build.0 = DebugWP8|Any CPU
8189
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Release|Any CPU.ActiveCfg = Release45|Any CPU
8290
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Release|Any CPU.Build.0 = Release45|Any CPU
8391
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.Release35|Any CPU.ActiveCfg = Release35|Any CPU
@@ -92,6 +100,8 @@ Global
92100
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.ReleaseSL5|Any CPU.Build.0 = ReleaseSL5|Any CPU
93101
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.ReleaseWP7|Any CPU.ActiveCfg = ReleaseWP7|Any CPU
94102
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.ReleaseWP7|Any CPU.Build.0 = ReleaseWP7|Any CPU
103+
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.ReleaseWP8|Any CPU.ActiveCfg = ReleaseWP8|Any CPU
104+
{C4C8532A-F8D2-428B-962E-FD578A1E647C}.ReleaseWP8|Any CPU.Build.0 = ReleaseWP8|Any CPU
95105
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Debug|Any CPU.ActiveCfg = Debug45|Any CPU
96106
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Debug|Any CPU.Build.0 = Debug45|Any CPU
97107
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Debug35|Any CPU.ActiveCfg = Debug35|Any CPU
@@ -104,6 +114,8 @@ Global
104114
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.DebugSL5|Any CPU.ActiveCfg = DebugSL5|Any CPU
105115
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.DebugSL5|Any CPU.Build.0 = DebugSL5|Any CPU
106116
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.DebugWP7|Any CPU.ActiveCfg = DebugWP7|Any CPU
117+
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.DebugWP8|Any CPU.ActiveCfg = DebugWP8|Any CPU
118+
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.DebugWP8|Any CPU.Build.0 = DebugWP8|Any CPU
107119
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Release|Any CPU.ActiveCfg = Release45|Any CPU
108120
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Release|Any CPU.Build.0 = Release45|Any CPU
109121
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.Release35|Any CPU.ActiveCfg = Release35|Any CPU
@@ -116,6 +128,8 @@ Global
116128
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.ReleaseSL5|Any CPU.ActiveCfg = ReleaseSL5|Any CPU
117129
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.ReleaseSL5|Any CPU.Build.0 = ReleaseSL5|Any CPU
118130
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.ReleaseWP7|Any CPU.ActiveCfg = ReleaseWP7|Any CPU
131+
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.ReleaseWP8|Any CPU.ActiveCfg = ReleaseWP8|Any CPU
132+
{6D62E966-469D-4A99-BD43-0A17FA14FB4F}.ReleaseWP8|Any CPU.Build.0 = ReleaseWP8|Any CPU
119133
{7269A578-326A-4C3E-9874-A2D2600095BC}.Debug|Any CPU.ActiveCfg = Debug45|Any CPU
120134
{7269A578-326A-4C3E-9874-A2D2600095BC}.Debug|Any CPU.Build.0 = Debug45|Any CPU
121135
{7269A578-326A-4C3E-9874-A2D2600095BC}.Debug35|Any CPU.ActiveCfg = Debug35|Any CPU
@@ -127,6 +141,8 @@ Global
127141
{7269A578-326A-4C3E-9874-A2D2600095BC}.DebugPL|Any CPU.Build.0 = DebugPL|Any CPU
128142
{7269A578-326A-4C3E-9874-A2D2600095BC}.DebugSL5|Any CPU.ActiveCfg = DebugSL5|Any CPU
129143
{7269A578-326A-4C3E-9874-A2D2600095BC}.DebugWP7|Any CPU.ActiveCfg = DebugWP7|Any CPU
144+
{7269A578-326A-4C3E-9874-A2D2600095BC}.DebugWP8|Any CPU.ActiveCfg = DebugWP8|Any CPU
145+
{7269A578-326A-4C3E-9874-A2D2600095BC}.DebugWP8|Any CPU.Build.0 = DebugWP8|Any CPU
130146
{7269A578-326A-4C3E-9874-A2D2600095BC}.Release|Any CPU.ActiveCfg = Release45|Any CPU
131147
{7269A578-326A-4C3E-9874-A2D2600095BC}.Release|Any CPU.Build.0 = Release45|Any CPU
132148
{7269A578-326A-4C3E-9874-A2D2600095BC}.Release35|Any CPU.ActiveCfg = Release35|Any CPU
@@ -138,6 +154,8 @@ Global
138154
{7269A578-326A-4C3E-9874-A2D2600095BC}.ReleasePL|Any CPU.Build.0 = ReleasePL|Any CPU
139155
{7269A578-326A-4C3E-9874-A2D2600095BC}.ReleaseSL5|Any CPU.ActiveCfg = ReleaseSL5|Any CPU
140156
{7269A578-326A-4C3E-9874-A2D2600095BC}.ReleaseWP7|Any CPU.ActiveCfg = ReleaseWP7|Any CPU
157+
{7269A578-326A-4C3E-9874-A2D2600095BC}.ReleaseWP8|Any CPU.ActiveCfg = ReleaseWP8|Any CPU
158+
{7269A578-326A-4C3E-9874-A2D2600095BC}.ReleaseWP8|Any CPU.Build.0 = ReleaseWP8|Any CPU
141159
EndGlobalSection
142160
GlobalSection(SolutionProperties) = preSolution
143161
HideSolutionNode = FALSE

Ix.NET/Source/System.Interactive.Async/System.Interactive.Async.csproj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@
1515
<NoWarn>1591</NoWarn>
1616
<ProductSignAssembly>true</ProductSignAssembly>
1717
</PropertyGroup>
18+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseWP8|AnyCPU'">
19+
<OutputPath>bin\ReleaseWP8\</OutputPath>
20+
</PropertyGroup>
21+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWP8|AnyCPU'">
22+
<OutputPath>bin\DebugWP8\</OutputPath>
23+
<DefineConstants>;WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP;SILVERLIGHT;SILVERLIGHTM7;TRACE</DefineConstants>
24+
<DocumentationFile>..\bin\ReleaseWP7\System.Interactive.Async.XML</DocumentationFile>
25+
<Optimize>true</Optimize>
26+
<NoWarn>1591</NoWarn>
27+
<DebugType>pdbonly</DebugType>
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<ErrorReport>prompt</ErrorReport>
30+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
31+
</PropertyGroup>
1832
<Import Project="..\Common.targets" />
1933
<PropertyGroup>
2034
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>

Ix.NET/Source/System.Interactive.Providers/System.Interactive.Providers.csproj

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@
1616
<NoWarn>1591</NoWarn>
1717
<TargetFrameworkProfile />
1818
</PropertyGroup>
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseWP8|AnyCPU'">
20+
<OutputPath>bin\ReleaseWP8\</OutputPath>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWP8|AnyCPU'">
23+
<OutputPath>bin\DebugWP8\</OutputPath>
24+
<DefineConstants>;WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP;SILVERLIGHT;SILVERLIGHTM7;TRACE</DefineConstants>
25+
<DocumentationFile>..\bin\ReleaseWP7\System.Interactive.Providers.XML</DocumentationFile>
26+
<Optimize>true</Optimize>
27+
<NoWarn>1591</NoWarn>
28+
<DebugType>pdbonly</DebugType>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
30+
<ErrorReport>prompt</ErrorReport>
31+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
32+
</PropertyGroup>
1933
<Import Project="..\Common.targets" />
2034
<PropertyGroup>
2135
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>

Ix.NET/Source/System.Interactive/System.Interactive.csproj

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,20 @@
1616
<NoWarn>1591</NoWarn>
1717
<TargetFrameworkProfile />
1818
</PropertyGroup>
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseWP8|AnyCPU'">
20+
<OutputPath>bin\ReleaseWP8\</OutputPath>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWP8|AnyCPU'">
23+
<OutputPath>bin\DebugWP8\</OutputPath>
24+
<DefineConstants>;WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP;SILVERLIGHT;SILVERLIGHTM7;TRACE</DefineConstants>
25+
<DocumentationFile>..\bin\ReleaseWP7\System.Interactive.XML</DocumentationFile>
26+
<Optimize>true</Optimize>
27+
<NoWarn>1591</NoWarn>
28+
<DebugType>pdbonly</DebugType>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
30+
<ErrorReport>prompt</ErrorReport>
31+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
32+
</PropertyGroup>
1933
<Import Project="..\Common.targets" />
2034
<PropertyGroup>
2135
<DocumentationFile>$(OutputPath)\$(AssemblyName).XML</DocumentationFile>
@@ -38,4 +52,5 @@
3852
<Compile Include="Properties\AssemblyInfo.cs" />
3953
</ItemGroup>
4054
<Import Project="..\Import.targets" />
55+
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
4156
</Project>

Ix.NET/Source/Tests/Tests.csproj

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,19 @@
1616
<TargetFrameworkProfile />
1717
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1818
</PropertyGroup>
19+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'ReleaseWP8|AnyCPU'">
20+
<OutputPath>bin\ReleaseWP8\</OutputPath>
21+
</PropertyGroup>
22+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DebugWP8|AnyCPU'">
23+
<OutputPath>bin\DebugWP8\</OutputPath>
24+
<DefineConstants>;WINDOWSPHONE7;NO_TLS;NO_VARIANCE;NO_SERIALIZABLE;NO_TPL;NO_HASHSET;NO_REMOTING;NO_SEMAPHORE;NO_LARGEARITY;NO_ZIP;SILVERLIGHT;SILVERLIGHTM7;TRACE</DefineConstants>
25+
<Optimize>true</Optimize>
26+
<NoWarn>1591</NoWarn>
27+
<DebugType>pdbonly</DebugType>
28+
<PlatformTarget>AnyCPU</PlatformTarget>
29+
<ErrorReport>prompt</ErrorReport>
30+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
31+
</PropertyGroup>
1932
<Import Project="..\Common.targets" />
2033
<PropertyGroup Condition="'$(BuildPlatform)' == 'SILVERLIGHT' AND !('$(BuildFlavor)' == 'SILVERLIGHTM7')">
2134
<SilverlightApplication>true</SilverlightApplication>

0 commit comments

Comments
 (0)