Added comments to Greenshot.Plugin.Win10.csproj

Added comments to describe each section of the project file. This helps other developers understand why certain files are included or why certain package references are needed.

```
  <!-- Including language XML files to copy to the output directory for localization. -->

  <!-- Adding NuGet package references required by the project. -->

  <!-- Adding project references/dependencies for the project. -->

```
This commit is contained in:
BenjaminS 2023-05-31 03:45:56 +03:00 committed by GitHub
commit ef9443b016
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<!-- Including language XML files to copy to the output directory for localization. -->
<ItemGroup>
<None Include="Languages\language*.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<!-- Adding NuGet package references required by the project. -->
<ItemGroup>
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" version="7.1.2" />
</ItemGroup>
<!-- Adding project references/dependencies for the project. -->
<ItemGroup>
<ProjectReference Include="..\Greenshot.Base\Greenshot.Base.csproj" />
</ItemGroup>