Skip to content

Commit

Permalink
Fix formatting and adjust package references in csproj
Browse files Browse the repository at this point in the history
Corrected indentation for <Pack> and <PackagePath> elements within the <None Include="..\README.md"> section. Modified <PackageReference> elements for MinVer and DotNet.ReproducibleBuilds by duplicating <IncludeAssets> with one set to 'all' and removing <PrivateAssets>.
  • Loading branch information
hootanht committed Sep 12, 2024
1 parent 77d0e69 commit 9f08dae
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions PersianDate/PersianDate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@

<ItemGroup>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="Icon\icon.png">
<Pack>True</Pack>
Expand All @@ -42,14 +42,14 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="MinVer" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="MinVer" Version="6.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<IncludeAssets>all</IncludeAssets>
</PackageReference>
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<IncludeAssets>all</IncludeAssets>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit 9f08dae

Please sign in to comment.