mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 22:13:23 -07:00
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:
parent
56235bf336
commit
ef9443b016
1 changed files with 5 additions and 0 deletions
|
@ -1,13 +1,18 @@
|
||||||
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
||||||
|
|
||||||
|
<!-- Including language XML files to copy to the output directory for localization. -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="Languages\language*.xml">
|
<None Include="Languages\language*.xml">
|
||||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
</None>
|
</None>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- Adding NuGet package references required by the project. -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" version="7.1.2" />
|
<PackageReference Include="Microsoft.Toolkit.Uwp.Notifications" version="7.1.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<!-- Adding project references/dependencies for the project. -->
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Greenshot.Base\Greenshot.Base.csproj" />
|
<ProjectReference Include="..\Greenshot.Base\Greenshot.Base.csproj" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue