-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
43 lines (37 loc) · 1.74 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
34
35
36
37
38
39
40
41
42
43
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<CurrentLibraryVersion>0.3.0</CurrentLibraryVersion>
<IsReleaseBuild>false</IsReleaseBuild>
</PropertyGroup>
<PropertyGroup>
<AssemblyVersion>$(CurrentLibraryVersion).0</AssemblyVersion>
<VersionPrefix>$(CurrentLibraryVersion)</VersionPrefix>
<VersionSuffix Condition="!$(IsReleaseBuild)">dev</VersionSuffix>
</PropertyGroup>
<PropertyGroup>
<PackageId>$(MSBuildProjectName)</PackageId>
<Title>$(MSBuildProjectName)</Title>
<Description>Source generator based command line arguments parser</Description>
<Authors>DoctorKrolic</Authors>
<Copyright>Copyright (c) 2024 Arthur Matsur</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/DoctorKrolic/ArgumentParsing/main/icon.png</PackageIconUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageProjectUrl>https://github.com/DoctorKrolic/ArgumentParsing</PackageProjectUrl>
<PackageTags>commandline argument arguments option options parser parsing library shell generator sourcegenerator aot nativeaot netstandard</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)icon.png" Pack="true" PackagePath="\" Visible="false" />
</ItemGroup>
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)"/>
</ItemGroup>
<Import Project="$(MSBuildThisFileDirectory)Versions.props" />
</Project>