-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommandLine.csproj
69 lines (69 loc) · 2.65 KB
/
CommandLine.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>CJF.CommandLine</RootNamespace>
<Configurations>MinRelease;Debug;Release</Configurations>
<AssemblyVersion>1.37.906</AssemblyVersion>
<FileVersion>1.37.906</FileVersion>
<Title>Command Line Interface for Console Hosting Application</Title>
<Copyright>Copyright(c) 2023 Chen Jaofeng all right reserved.</Copyright>
<PackageTags>CLI;Command Line;Console</PackageTags>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<PackageId>CJF.CommandLine</PackageId>
<Version>1.37.906</Version>
<Company>Chen Jaofeng</Company>
<Authors>Chen Jaofeng</Authors>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='MinRelease|AnyCPU'">
<Optimize>True</Optimize>
<DebugType>none</DebugType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>full</DebugType>
<WarningLevel>4</WarningLevel>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>embedded</DebugType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<Description>Command Line Interface for Console Hosting Application</Description>
<ApplicationIcon>Images\icon.ico</ApplicationIcon>
<PackageIcon>icon.png</PackageIcon>
<PackageProjectUrl>https://github.com/Jaofeng/CommandLine</PackageProjectUrl>
<RepositoryUrl>https://github.com/Jaofeng/CommandLine</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<Content Include="Images\icon.ico" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Images\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<None Include="readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<None Update="Images\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>