-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCsharp-Sdk.csproj
More file actions
32 lines (27 loc) · 1.09 KB
/
Csharp-Sdk.csproj
File metadata and controls
32 lines (27 loc) · 1.09 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<!-- Metadata for NuGet -->
<PackageId>KeyMint</PackageId>
<Version>1.0.1</Version>
<Authors>Daemonlite</Authors>
<Company>Keymint.dev</Company>
<Title>KeyMint</Title>
<Description>Official KeyMint SDK for C#</Description>
<PackageTags>keymint;sdk;license;api</PackageTags>
<RepositoryUrl>https://github.com/keymint-dev/keymint-csharp-sdk</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- Usings and nullability -->
<RootNamespace>KeyMint</RootNamespace>
<AssemblyName>KeyMint</AssemblyName>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.8" />
</ItemGroup>
</Project>