-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCommandLineParser.csproj
53 lines (47 loc) · 2.05 KB
/
CommandLineParser.csproj
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
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<RootNamespace>MatthiWare.CommandLine</RootNamespace>
<PackageId>MatthiWare.CommandLineParser</PackageId>
<Version>0.7.0</Version>
<Authors>Matthias Beerens</Authors>
<Company>MatthiWare</Company>
<Product>Command Line Parser</Product>
<Description>Command Line Parser for .NET Core written in .NET Standard</Description>
<PackageProjectUrl>https://github.com/MatthiWare/CommandLineParser.Core</PackageProjectUrl>
<PackageLicenseUrl></PackageLicenseUrl>
<RepositoryUrl>https://github.com/MatthiWare/CommandLineParser.Core</RepositoryUrl>
<PackageTags>Commandline parser commandline-parser cli</PackageTags>
<LangVersion>7.3</LangVersion>
<AssemblyVersion>0.7.0.0</AssemblyVersion>
<FileVersion>0.7.0.0</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>- Change license to MIT</PackageReleaseNotes>
<Copyright>Copyright Matthias Beerens 2018</Copyright>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<DebugSymbols>true</DebugSymbols>
<DocumentationFile>.\CommandLineParser.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>.\CommandLineParser.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
</ItemGroup>
</Project>