-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhttps.csproj
More file actions
36 lines (31 loc) · 1.3 KB
/
https.csproj
File metadata and controls
36 lines (31 loc) · 1.3 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
35
36
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>0.3.0</VersionPrefix>
</PropertyGroup>
<PropertyGroup>
<PackAsTool>true</PackAsTool>
<ToolCommandName>https</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<Description>Simple CLI for sending HTTP requests</Description>
<Copyright>Copyright (c) 2018 joncloud (jdberube@gmail.com)</Copyright>
<AssemblyTitle>https</AssemblyTitle>
<Authors>joncloud</Authors>
<AssemblyName>https</AssemblyName>
<PackageId>https</PackageId>
<PackageTags>CLI;HTTP;Request;Simple</PackageTags>
<PackageReleaseNotes>https://github.com/joncloud/https/releases</PackageReleaseNotes>
<!--<PackageIconUrl>https://raw.githubusercontent.com/joncloud/https/master/nuget.png</PackageIconUrl>-->
<PackageProjectUrl>https://github.com/joncloud/https</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/joncloud/https</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Utf8Json" Version="1.3.7" />
</ItemGroup>
</Project>