-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSoenneker.GitHub.ClientUtil.csproj
More file actions
53 lines (48 loc) · 2.69 KB
/
Soenneker.GitHub.ClientUtil.csproj
File metadata and controls
53 lines (48 loc) · 2.69 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
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?><Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<Platforms>AnyCPU</Platforms>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Description>An async thread-safe singleton for GitHub OpenApiClient</Description>
<Version Condition="'$(BUILD_VERSION)' == ''">4.0.0</Version>
<Version Condition="'$(BUILD_VERSION)' != ''">$(BUILD_VERSION)</Version>
<AssemblyName>Soenneker.GitHub.ClientUtil</AssemblyName>
<PackageId>Soenneker.GitHub.ClientUtil</PackageId>
<PackageTags>github clientutil openapiclient singleton kiota githubopenapiclientutil kiotaclient csharp dotnet c# .net</PackageTags>
<Copyright>Copyright © 2025-2026 Jake Soenneker</Copyright>
<Authors>Jake Soenneker</Authors>
<Company>https://soenneker.com</Company>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<IsPackable>true</IsPackable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/soenneker/soenneker.github.clientutil</PackageProjectUrl>
<RepositoryUrl>https://github.com/soenneker/soenneker.github.clientutil</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<RepositoryBranch>main</RepositoryBranch>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<LangVersion>latest</LangVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<PackageReleaseNotes Condition="'$(PACKAGE_RELEASE_NOTES)' != ''">
$(PACKAGE_RELEASE_NOTES)
</PackageReleaseNotes></PropertyGroup>
<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\LICENSE" Pack="true" PackagePath="\" />
<None Include="..\..\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Soenneker.GitHub.Client.Http" Version="4.0.1279" />
<PackageReference Include="Soenneker.GitHub.OpenApiClient" Version="4.0.162" />
<PackageReference Include="Soenneker.Kiota.BearerAuthenticationProvider" Version="4.0.36" />
<PackageReference Include="Soenneker.Utils.AsyncSingleton" Version="4.0.783" />
</ItemGroup>
</Project>