-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathPullRequestQuantifier.GitHub.Client.csproj
More file actions
37 lines (31 loc) · 1.77 KB
/
PullRequestQuantifier.GitHub.Client.csproj
File metadata and controls
37 lines (31 loc) · 1.77 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Messaging.ServiceBus" Version="7.16.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="7.0.13" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="GitHubJwt" Version="0.0.6" />
<PackageReference Include="Octokit" Version="8.1.1" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.23.0" />
</ItemGroup>
<ItemGroup>
<_ContentIncludedByDefault Remove="lib\PullRequestQuantifier.GitHub.Client.deps.json" />
<_ContentIncludedByDefault Remove="lib\PullRequestQuantifier.GitHub.Client.runtimeconfig.dev.json" />
<_ContentIncludedByDefault Remove="lib\PullRequestQuantifier.GitHub.Client.runtimeconfig.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PullRequestQuantifier.Abstractions\PullRequestQuantifier.Abstractions.csproj" />
<ProjectReference Include="..\..\PullRequestQuantifier.Common\PullRequestQuantifier.Common.csproj" />
<ProjectReference Include="..\PullRequestQuantifier.Client\PullRequestQuantifier.Client.csproj" />
<ProjectReference Include="..\PullRequestQuantifier.GitHub.Common\PullRequestQuantifier.GitHub.Common.csproj" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>