Skip to content

Commit

Permalink
update csproj with required PackageReferences (#51)
Browse files Browse the repository at this point in the history
In the latest pre-release of Visual Studio (17.1 Preview 2) MAUI projects require the PackageReferences of Microsoft.WindowsAppSDK to be updated to 1.0.0 and Microsoft.Graphics.Win2D to 1.0.0.30
  • Loading branch information
FriedrichRehren authored Jan 14, 2022
1 parent 67909ee commit 5e415a3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/WeatherTwentyOne/WeatherTwentyOne.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@

<ItemGroup Condition="$(TargetFramework.Contains('-windows'))">
<!-- Required - WinUI does not yet have buildTransitive for everything -->
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0-preview3" />
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.0.29-preview3" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" />
<PackageReference Include="Microsoft.Graphics.Win2D" Version="1.0.0.30" />
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.0.1" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
</ItemGroup>
Expand All @@ -68,4 +68,4 @@
<CodesignProvision>VS: WildCard Development</CodesignProvision>
</PropertyGroup>

</Project>
</Project>

0 comments on commit 5e415a3

Please sign in to comment.