forked from bilal-fazlani/commanddotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
33 lines (33 loc) · 1.7 KB
/
Directory.Build.props
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
32
33
<Project>
<PropertyGroup>
<LangVersion>11.0</LangVersion>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<Authors>Bilal Fazlani, Drew Burlingame</Authors>
<PackageTags>dotnet core; console; argument parse;</PackageTags>
<PackageProjectUrl>https://github.com/bilal-fazlani/CommandDotNet</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageIconUrl>https://raw.githubusercontent.com/bilal-fazlani/CommandDotNet/master/images/nuget-icon.png</PackageIconUrl>
<RepositoryUrl>https://github.com/bilal-fazlani/CommandDotNet</RepositoryUrl>
<Version>1.0.0</Version>
<NeutralLanguage>en-US</NeutralLanguage>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ReleaseNotes>https://commanddotnet.bilal-fazlani.com/releasenotes</ReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<!-- prettify stack traces by replacing build machine path with CommandDotNet -->
<AppOutputBase>$(MSBuildProjectDirectory)\</AppOutputBase>
<PathMap>$(AppOutputBase)=$(MSBuildProjectName)/</PathMap>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>false</IncludeSymbols>
<!-- This is for future -->
<!-- <SymbolPackageFormat>snupkg</SymbolPackageFormat> -->
<!-- https://github.com/dotnet/sourcelink/blob/master/docs/README.md#embedallsources -->
<EmbedAllSources>true</EmbedAllSources>
<DebugType>embedded</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
</Project>