Skip to content

Commit

Permalink
更新 Nuget 依赖
Browse files Browse the repository at this point in the history
  • Loading branch information
wherewhere committed Jun 5, 2024
1 parent 1a60537 commit b94c07a
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
blank_issues_enabled: true
contact_links:
- name: Question
url: https://github.com/wherewhere/WFun-UWP/discussions/new?category=q-a
url: https://github.com/wherewhere/CoreAppUWP/discussions/new?category=q-a
about: Ask a question
- name: Discussion
url: https://github.com/wherewhere/WFun-UWP/discussions/new?category=general
url: https://github.com/wherewhere/CoreAppUWP/discussions/new?category=general
about: Start a discussion
38 changes: 28 additions & 10 deletions CoreAppUWP/CoreAppUWP.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,6 @@
<VersionPrefix>0.0.1</VersionPrefix>
</PropertyGroup>

<ItemGroup>
<Compile Remove="AppPackages\**" />
<EmbeddedResource Remove="AppPackages\**" />
<None Remove="AppPackages\**" />
<Page Remove="AppPackages\**" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI" Version="7.1.2" />
<PackageReference Include="CommunityToolkit.WinUI.UI" Version="7.1.2" />
Expand All @@ -35,21 +28,46 @@
</PackageReference>
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" Version="7.1.3" />
<PackageReference Include="Microsoft.Win32.Registry" Version="5.0.0" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.49-beta">
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.7" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240404000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.3233" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.5.240428000" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CoreAppUWP.WinRT\CoreAppUWP.WinRT.vcxproj" />
</ItemGroup>

<ItemGroup>
<Compile Remove="AppPackages\**" />
<EmbeddedResource Remove="AppPackages\**" />
<None Remove="AppPackages\**" />
<Page Remove="AppPackages\**" />
</ItemGroup>

<ItemGroup>
<Content Include="favicon.ico" />
</ItemGroup>

<!--
Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Tools extension to be activated for this project even if the Windows App SDK Nuget
package has not yet been restored.
-->
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>

<!--
Defining the "HasPackageAndPublishMenuAddedByProject" property here allows the Solution
Explorer "Package and Publish" context menu entry to be enabled for this project even if
the Windows App SDK Nuget package has not yet been restored.
-->
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
</PropertyGroup>
</Project>

0 comments on commit b94c07a

Please sign in to comment.