Skip to content

Commit

Permalink
Update design projects to reference the correct DLL on multi-VS systems
Browse files Browse the repository at this point in the history
Makes the references to Microsoft.Windows.Design.Extensibility version-specific,
so that in systems with muliple versions of that library available (e.g., with
multiple VS versions installed) the projects find the correct DLL
  • Loading branch information
hartez committed Mar 28, 2016
1 parent a3e3081 commit e13063c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 2 additions & 4 deletions Xamarin.Forms.Core.Design/Xamarin.Forms.Core.Design.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup Condition=" '$(OS)' != 'Unix' ">
<Reference Include="Microsoft.Windows.Design.Extensibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Microsoft.Windows.Design.Extensibility.dll</HintPath>
<Private>False</Private>
<Reference Include="Microsoft.Windows.Design.Extensibility, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>True</SpecificVersion>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
6 changes: 2 additions & 4 deletions Xamarin.Forms.Xaml.Design/Xamarin.Forms.Xaml.Design.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,8 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup Condition=" '$(OS)' != 'Unix' ">
<Reference Include="Microsoft.Windows.Design.Extensibility, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib\Microsoft.Windows.Design.Extensibility.dll</HintPath>
<Private>False</Private>
<Reference Include="Microsoft.Windows.Design.Extensibility, Version=4.3.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<SpecificVersion>True</SpecificVersion>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down

0 comments on commit e13063c

Please sign in to comment.