Skip to content

Commit

Permalink
Frontend.XF.GTK: add DLL refs for project refs
Browse files Browse the repository at this point in the history
This allows for building Backend and Frontend.XF with
separate build engine like .NET 6.
  • Loading branch information
aarani committed Aug 29, 2023
1 parent a671a9c commit c8c59c2
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/GWallet.Frontend.XF.Gtk/GWallet.Frontend.XF.Gtk.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,12 @@
<Reference Include="Fsdk">
<HintPath>..\..\packages\Fsdk.0.6.0--date20230530-1155.git-3bb8d08\lib\netstandard2.0\Fsdk.dll</HintPath>
</Reference>
<Reference Condition="'$(TwoPhaseBuildDueToXBuildUsage)'=='true'" Include="GWallet.Backend">
<HintPath>..\GWallet.Backend\bin\$(Configuration)\netstandard2.0\GWallet.Backend.dll</HintPath>
</Reference>
<Reference Condition="'$(TwoPhaseBuildDueToXBuildUsage)'=='true'" Include="GWallet.Frontend.XF">
<HintPath>..\GWallet.Frontend.XF\bin\$(Configuration)\netstandard2.0\GWallet.Frontend.XF.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
Expand All @@ -240,11 +246,11 @@
<Link>logo.png</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<ProjectReference Include="..\GWallet.Frontend.XF\GWallet.Frontend.XF.fsproj">
<ProjectReference Condition="'$(TwoPhaseBuildDueToXBuildUsage)'!='true'" Include="..\GWallet.Frontend.XF\GWallet.Frontend.XF.fsproj">
<Project>{85236682-6463-4209-B66C-E0643EF12B46}</Project>
<Name>GWallet.Frontend.XF</Name>
</ProjectReference>
<ProjectReference Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<ProjectReference Condition="'$(TwoPhaseBuildDueToXBuildUsage)'!='true'" Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<Name>GWallet.Backend</Name>
</ProjectReference>
<None Include="webkit-sharp.dll.config" />
Expand All @@ -253,5 +259,5 @@

<Target Name="AfterBuild">
</Target>
<Import Project="..\..\packages\Xamarin.Forms.5.0.0.2515\build\Xamarin.Forms.targets" Condition="Exists('..\..\packages\Xamarin.Forms.5.0.0.2515\build\Xamarin.Forms.targets')" />
<Import Project="..\..\packages\Xamarin.Forms.5.0.0.2515\build\Xamarin.Forms.targets" Condition="'$(TwoPhaseBuildDueToXBuildUsage)'!='true' AND Exists('..\..\packages\Xamarin.Forms.5.0.0.2515\build\Xamarin.Forms.targets')" />
</Project>

0 comments on commit c8c59c2

Please sign in to comment.