-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbunny-sdk.csproj
44 lines (39 loc) · 1.95 KB
/
bunny-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
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>bunny_sdk</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<DefaultItemExcludes>$(DefaultItemExcludes);Test.cs</DefaultItemExcludes>
<PackageId>BunnyLauncher.BunnySdk</PackageId>
<Version>0.0.8</Version>
<MinVerTagPrefix>v</MinVerTagPrefix>
<Authors>john_l_armstrong_iv</Authors>
<Summary>C# SDK for bunny.net 🐰</Summary>
<Description>C# SDK for bunny.net 🐰</Description>
<!-- <PackageIcon>icon.png</PackageIcon> -->
<PackageTags>BunnyCDN;bunny.net;bunny;cdn;bunny-launcher;sdk;api</PackageTags>
<PackageProjectUrl>https://bunny-launcher.net/bunny-sdk/langauges/csharp/</PackageProjectUrl>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/jlarmstrongiv/bunny-sdk-csharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<LangVersion>11</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Kiota.Abstractions" Version="1.13.2" />
<PackageReference Include="Microsoft.Kiota.Http.HttpClientLibrary" Version="1.13.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Form" Version="1.13.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Json" Version="1.13.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Multipart" Version="1.13.2" />
<PackageReference Include="Microsoft.Kiota.Serialization.Text" Version="1.13.2" />
</ItemGroup>
<ItemGroup>
<!-- <None Include="..\..\icon.png" Pack="true" PackagePath="" Visible="False" /> -->
<None Include="README.md" Pack="true" PackagePath="" Visible="False" />
</ItemGroup>
<ItemGroup>
<!-- exclude test file -->
<None Remove="Test.cs" />
</ItemGroup>
</Project>