-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVersSdk.csproj
More file actions
29 lines (24 loc) · 943 Bytes
/
VersSdk.csproj
File metadata and controls
29 lines (24 loc) · 943 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<!-- NuGet package metadata -->
<PackageId>vers-sdk</PackageId>
<Version>0.1.8</Version>
<Title>Orchestrator Control Plane API SDK</Title>
<Description>SDK for Orchestrator Control Plane API</Description>
<Authors>Sterling SDK Generator</Authors>
<PackageTags>api;sdk;vers;openapi</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/hdresearch/csharp-sdk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
</ItemGroup>
<ItemGroup>
<Compile Remove="VersClientTest.cs" />
</ItemGroup>
</Project>