Skip to content

Commit 3ac96c9

Browse files
committed
Fix paths in RxUI.Routing
1 parent 9c68dd7 commit 3ac96c9

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

ReactiveUI.Routing/ReactiveUI.Routing.csproj

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,19 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
20+
<OutputPath>bin\Debug\Net40\</OutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
2424
</PropertyGroup>
2525
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2626
<DebugType>pdbonly</DebugType>
2727
<Optimize>true</Optimize>
28-
<OutputPath>bin\Release\</OutputPath>
28+
<OutputPath>bin\Release\Net40\</OutputPath>
2929
<DefineConstants>TRACE</DefineConstants>
3030
<ErrorReport>prompt</ErrorReport>
3131
<WarningLevel>4</WarningLevel>
32+
<DocumentationFile>bin\Release\Net40\ReactiveUI.Routing.XML</DocumentationFile>
3233
</PropertyGroup>
3334
<ItemGroup>
3435
<Reference Include="Microsoft.Practices.ServiceLocation">

ReactiveUI.Routing/ReactiveUI.Routing_SL4.csproj

+4-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<DebugSymbols>true</DebugSymbols>
3737
<DebugType>full</DebugType>
3838
<Optimize>false</Optimize>
39-
<OutputPath>Bin\Debug</OutputPath>
39+
<OutputPath>Bin\Debug\SL4\</OutputPath>
4040
<DefineConstants>DEBUG;TRACE;SILVERLIGHT</DefineConstants>
4141
<NoStdLib>true</NoStdLib>
4242
<NoConfig>true</NoConfig>
@@ -55,7 +55,9 @@
5555
<DocumentationFile>Bin\Release\SL4\ReactiveUI.Routing_SL4.xml</DocumentationFile>
5656
</PropertyGroup>
5757
<ItemGroup>
58-
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=176052f22c4ce19f, processorArchitecture=MSIL" />
58+
<Reference Include="Microsoft.Practices.ServiceLocation">
59+
<HintPath>..\ext\SL4\Microsoft.Practices.ServiceLocation.dll</HintPath>
60+
</Reference>
5961
<Reference Include="mscorlib" />
6062
<Reference Include="System.ComponentModel.DataAnnotations, Version=2.0.5.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217, processorArchitecture=MSIL" />
6163
<Reference Include="System.Reactive">

ReactiveUI.Routing/ReactiveUI.Routing_WP7.csproj

+2-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@
6666
<DocumentationFile>Bin\Release\WP7\ReactiveUI.Routing_WP7.xml</DocumentationFile>
6767
</PropertyGroup>
6868
<ItemGroup>
69-
<Reference Include="Microsoft.Practices.ServiceLocation">
69+
<Reference Include="Microsoft.Practices.ServiceLocation, Version=1.0.0.0, Culture=neutral, PublicKeyToken=176052f22c4ce19f, processorArchitecture=MSIL">
70+
<SpecificVersion>False</SpecificVersion>
7071
<HintPath>..\ext\WP7\Microsoft.Practices.ServiceLocation.dll</HintPath>
7172
</Reference>
7273
<Reference Include="System.Observable" />

0 commit comments

Comments
 (0)