This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCentrifyCLI.csproj
More file actions
38 lines (33 loc) · 1.47 KB
/
CentrifyCLI.csproj
File metadata and controls
38 lines (33 loc) · 1.47 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
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) Centrify Corporation ($([System.DateTime]::UtcNow.ToString("s")))</Copyright>
<StartupObject>CentrifyCLI.Ccli</StartupObject>
<Company>Centrify</Company>
<PackageId>ccli</PackageId>
<Authors>Centrify</Authors>
<Product>Centrify CLI</Product>
<AssemblyName>ccli</AssemblyName>
<AssemblyVersion>1.0.3.0</AssemblyVersion>
<FileVersion>1.0.3.0</FileVersion>
<Description>Centrify CLI provides a command line interface to the Centrify REST API. Significant features include:
- List of common API Endpoints
- JSON Schemas for those API Endpoints
- Handling of Authentication via commandline, file or both
</Description>
<Version>1.0.3</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
</PropertyGroup>
<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="2.3.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
</ItemGroup>
</Project>