-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (22 loc) · 1.14 KB
/
Copy pathDirectory.Build.props
File metadata and controls
31 lines (22 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project>
<PropertyGroup>
<Version>3.5.1</Version>
<RepositoryUrl>https://github.com/RicoSuter/Namotion.Reflection.git</RepositoryUrl>
<PackageProjectUrl>https://github.com/RicoSuter/Namotion.Reflection</PackageProjectUrl>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright © Rico Suter, 2025</Copyright>
<Description>.NET library with advanced reflection APIs like XML documentation reading, Null Reference Types (C# 8) reflection and string based type checks.</Description>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)assets\NuGetIcon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>