-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRuangDeveloper.AspNetCore.Command.csproj
More file actions
34 lines (31 loc) · 1.54 KB
/
RuangDeveloper.AspNetCore.Command.csproj
File metadata and controls
34 lines (31 loc) · 1.54 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
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>RuangDeveloper.AspNetCore.Command</PackageId>
<Authors>Ruang Developer</Authors>
<Description>ASP.NET Core Command</Description>
<Version>1.0.1</Version>
<RepositoryUrl>https://github.com/ruangdeveloper/aspnetcore-command</RepositoryUrl>
<PackageProjectUrl>https://github.com/ruangdeveloper/aspnetcore-command</PackageProjectUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageTags>aspnetcore,command</PackageTags>
<PackageIcon>icon.png</PackageIcon>
<DebugType>embedded</DebugType>
<Nullable>enable</Nullable>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PathMap>$(SolutionDir)=/</PathMap>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
<None Include="LICENSE" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath=""/>
<None Include="icon.png" Pack="true" PackagePath=""/>
</ItemGroup>
</Project>