-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGithubActionsOrchestrator.csproj
More file actions
40 lines (36 loc) · 2.14 KB
/
GithubActionsOrchestrator.csproj
File metadata and controls
40 lines (36 loc) · 2.14 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HetznerCloud.API" Version="1.1.9" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageReference Include="prometheus-net" Version="8.2.1" />
<PackageReference Include="prometheus-net.AspNetCore" Version="8.2.1" />
<PackageReference Include="RandomFriendlyNameGenerator" Version="1.0.9" />
<PackageReference Include="Sentry" Version="6.1.0" />
<PackageReference Include="Serilog" Version="4.3.1" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.2" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.*" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.*" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.*" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.*" />
<PackageReference Include="Pyroscope" Version="0.*" />
<PackageReference Include="Pyroscope.OpenTelemetry" Version="0.*" />
</ItemGroup>
<ItemGroup>
<Compile Remove="GithubActionsOrchestrator.IntegrationTests/**" />
<EmbeddedResource Remove="GithubActionsOrchestrator.IntegrationTests/**" />
<None Remove="GithubActionsOrchestrator.IntegrationTests/**" />
</ItemGroup>
</Project>