* Format Directory.Packages.props for readability Indentation was adjusted in the Directory.Packages.props file to enhance readability and maintain a consistent style. No functional changes or impact on package versions were made. * Update JetBrains.Annotations to private assets The change in the commit modifies the JetBrains.Annotations package reference in Directory.Build.props to be included as private assets. This adjustment ensures that the JetBrains.Annotations won't be exposed publicly, increasing the security and the overall robustness of the system. * Added missing references --------- Co-authored-by: Raymond den Haan <raymond.den.haan@nexxbiz.io>
20 lines
700 B
XML
20 lines
700 B
XML
<Project>
|
|
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
|
|
|
|
<PropertyGroup Label="TargetFrameworks">
|
|
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Label="Files">
|
|
<None Include="..\..\..\icon.png" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="ConfigureAwait.Fody" PrivateAssets="All" />
|
|
<PackageReference Include="Fody" PrivateAssets="All" />
|
|
<PackageReference Include="JetBrains.Annotations" PrivateAssets="All" />
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
</Project> |