-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithubClient.csproj
More file actions
46 lines (41 loc) · 1.83 KB
/
Copy pathGithubClient.csproj
File metadata and controls
46 lines (41 loc) · 1.83 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/jeffpatton1971/GithubClient</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://jeffpatton1971.github.io/GithubClient/</PackageProjectUrl>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
<Authors>Jeffrey Patton</Authors>
<Copyright>Copyright 2022</Copyright>
<Version>2.3.0</Version>
<PackageId>Patton.$(AssemblyName)</PackageId>
<PackageTags>Github; GithubApi</PackageTags>
<RepositoryType>git</RepositoryType>
<DocumentationFile>C:\Users\JeffreyPatton\source\repos\GithubClient\docs\GithubClient.xml</DocumentationFile>
<Description>A C# Dll library for working with the Github Rest API</Description>
<PackageReleaseNotes>BREAKING CHANGES
Models have been moved into different folders
Model names have changed
Most model methods changed/added/removed
What's Coming
Will be moving models into seperate repositories
A model solution will be created that will contain all models as a seperate nuget
Client will be split off to it's own solution referencing only the model nuget</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="DefaultDocumentation" Version="0.8.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>