-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kami.Sdk.csproj
39 lines (39 loc) · 1.89 KB
/
Kami.Sdk.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup>
<PackageId>OnCourse.Kami</PackageId>
<Company>OnCourse Systems For Education</Company>
<Authors>OnCourse Systems For Education</Authors>
<Product>Kami SDK for .NET</Product>
<Description>Kami API Client</Description>
<PackageProjectUrl>https://github.com/oncoursesystems/kami-sdk</PackageProjectUrl>
<RepositoryUrl>https://github.com/oncoursesystems/kami-sdk</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Copyright>Copyright (c) 2023 OnCourse Systems For Education</Copyright>
<LicenseUrl>https://licenses.nuget.org/MIT</LicenseUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>kami</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>kami.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ardalis.GuardClauses" Version="4.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.1"/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0"/>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0"/>
<PackageReference Include="Microsoft.Extensions.Http" Version="7.0.0"/>
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0"/>
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="7.0.5"/>
</ItemGroup>
<ItemGroup>
<None Include="kami.png" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>