Skip to content

Commit

Permalink
Add new PropertyGroup to csproj with package metadata
Browse files Browse the repository at this point in the history
Introduced a new <PropertyGroup> section in the XperienceCommunity.DataRepository.csproj file. This section includes several new properties:
- <PackageId>: Specifies the package ID as XperienceCommunity.DataRepository.
- <RepositoryType>: Indicates that the repository type is git.
- <RepositoryUrl>: Provides the URL to the GitHub repository.
- <Authors>: Lists Brandon Henricks as the author.
- <Description>: Adds a description of the package, explaining that it simplifies data access and management within applications built on Xperience by Kentico by providing a repository pattern implementation, and supports .NET 8 and .NET 9.
- <IncludeSymbols>: Indicates that symbol files should be included.
- <AnalysisLevel>: Sets the analysis level to the latest.
  • Loading branch information
brandonhenricks committed Jan 9, 2025
1 parent a15b8cc commit aecf702
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@
<NoWarn>$(NoWarn);NU1504;NU1505;NU1506;NU1701;1591;S1066</NoWarn>
</PropertyGroup>

<PropertyGroup>
<PackageId>XperienceCommunity.DataRepository</PackageId>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/brandonhenricks/xperience-by-kentico-data-repository</RepositoryUrl>
<Authors>Brandon Henricks</Authors>
<Description>XperienceCommunity.DataRepository simplifies data access and management within applications built on Xperience by Kentico by providing a repository pattern implementation. It supports .NET 8 and .NET 9, enabling developers to perform CRUD operations in a structured and maintainable way.</Description>
<IncludeSymbols>True</IncludeSymbols>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SonarAnalyzer.CSharp" PrivateAssets="all" />
<PackageReference Include="Kentico.Xperience.Core" PrivateAssets="all" />
Expand Down

0 comments on commit aecf702

Please # to comment.