Skip to content

Commit

Permalink
Frontend.XF: fix references in .fsproj files
Browse files Browse the repository at this point in the history
Fix project references in Fronend.XF.*.fsproj files by adding
<Project> element with project guid to each project reference.
This is needed to avoid "error  : Unrecognized Guid format"
error when loading projects in Visual Studio 2022.
  • Loading branch information
webwarrior-ws committed Oct 16, 2023
1 parent 265b103 commit 1c706f1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,7 @@
<Name>GWallet.Frontend.XF</Name>
</ProjectReference>
<ProjectReference Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<Project>{96F9B3E5-11F8-4F5F-AADC-51D0D995B3D2}</Project>
<Name>GWallet.Backend</Name>
</ProjectReference>
</ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions src/GWallet.Frontend.XF.Gtk/GWallet.Frontend.XF.Gtk.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,7 @@
<Name>GWallet.Frontend.XF</Name>
</ProjectReference>
<ProjectReference Condition="'$(TwoPhaseBuildDueToXBuildUsage)'!='true'" Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<Project>{96F9B3E5-11F8-4F5F-AADC-51D0D995B3D2}</Project>
<Name>GWallet.Backend</Name>
</ProjectReference>
<None Include="webkit-sharp.dll.config" />
Expand Down
1 change: 1 addition & 0 deletions src/GWallet.Frontend.XF.Mac/GWallet.Frontend.XF.Mac.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<Project>{96F9B3E5-11F8-4F5F-AADC-51D0D995B3D2}</Project>
<Name>GWallet.Backend</Name>
</ProjectReference>
<ProjectReference Include="..\GWallet.Frontend.XF\GWallet.Frontend.XF.fsproj">
Expand Down
1 change: 1 addition & 0 deletions src/GWallet.Frontend.XF.iOS/GWallet.Frontend.XF.iOS.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@
<Name>GWallet.Frontend.XF</Name>
</ProjectReference>
<ProjectReference Include="..\GWallet.Backend\GWallet.Backend.fsproj">
<Project>{96F9B3E5-11F8-4F5F-AADC-51D0D995B3D2}</Project>
<Name>GWallet.Backend</Name>
</ProjectReference>
<Reference Include="FSharp.Data">
Expand Down

0 comments on commit 1c706f1

Please sign in to comment.