-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCaddy.Client.csproj
More file actions
30 lines (24 loc) · 1.1 KB
/
Caddy.Client.csproj
File metadata and controls
30 lines (24 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>Clint Masden</Authors>
<Product>Caddy Client</Product>
<Description>Caddy Client API</Description>
<PackageTags>Caddy Client API caddyserver.com/</PackageTags>
<PackageReleaseNotes>Updated constructor with optional authorization</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/clintmasden/caddy.client</PackageProjectUrl>
<RepositoryUrl>https://github.com/clintmasden/caddy.client</RepositoryUrl>
<PackageId>Caddy.Client</PackageId>
<Version>1.0.0.1</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>Caddy.Client.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>Caddy.Client.xml</DocumentationFile>
</PropertyGroup>
</Project>