-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (24 loc) · 1.18 KB
/
Directory.Build.props
File metadata and controls
24 lines (24 loc) · 1.18 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
<Project>
<PropertyGroup>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<LangVersion>latest</LangVersion>
<Deterministic>true</Deterministic>
<VersionPrefix Condition="'$(VersionPrefix)' == ''">0.1.0</VersionPrefix>
<Version Condition="'$(Version)' == ''">$(VersionPrefix)</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(IsPackable)' == 'true'">
<Authors>DotNetFWOtelPub</Authors>
<Company>DotNetFWOtelPub</Company>
<PackageProjectUrl>https://github.com/javaChip56/dotnetfwotelpub</PackageProjectUrl>
<RepositoryUrl>https://github.com/javaChip56/dotnetfwotelpub.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>See the GitHub releases page for version-specific release notes and package changes.</PackageReleaseNotes>
<Copyright>Copyright (c) 2026 DotNetFWOtelPub</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>