-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathDevolutions.Pedm.Client.csproj
More file actions
40 lines (37 loc) · 1.77 KB
/
Devolutions.Pedm.Client.csproj
File metadata and controls
40 lines (37 loc) · 1.77 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
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo> <!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
<TargetFrameworks>net8.0;net48</TargetFrameworks>
<AssemblyName>Devolutions.Pedm.Client</AssemblyName>
<PackageId>Devolutions.Pedm.Client</PackageId>
<OutputType>Library</OutputType>
<Authors>Devolutions Inc.</Authors>
<Company>OpenAPI</Company>
<AssemblyTitle>Devolutions PEDM REST API Client</AssemblyTitle>
<Description>Client for Devolutions PEDM REST API</Description>
<Copyright>© Devolutions Inc. All rights reserved.</Copyright>
<RootNamespace>Devolutions.Pedm.Client</RootNamespace>
<Version>2025.5.15</Version>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Devolutions.Pedm.Client.xml</DocumentationFile>
<PackageLicenseExpression>MIT OR Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Devolutions/devolutions-gateway.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>Minor update</PackageReleaseNotes>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JsonSubTypes" Version="2.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Polly" Version="8.1.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Remove="System.Web" />
<None Remove="System.Net.Http" />
</ItemGroup>
<ItemGroup>
<Reference Include="System.Web" />
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>