-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathServiceControl.Audit.csproj
More file actions
63 lines (52 loc) · 2.66 KB
/
ServiceControl.Audit.csproj
File metadata and controls
63 lines (52 loc) · 2.66 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
54
55
56
57
58
59
60
61
62
63
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<OutputType>Exe</OutputType>
<ApplicationIcon>Operations.ico</ApplicationIcon>
</PropertyGroup>
<PropertyGroup Condition="'$(WindowsSelfContained)' == 'true'">
<SelfContained>true</SelfContained>
</PropertyGroup>
<!-- Needed for build ordering -->
<Import Project="..\ProjectReferences.Persisters.Audit.props" />
<Import Project="..\ProjectReferences.Transports.props" />
<ItemGroup>
<ProjectReference Include="..\ServiceControl.Audit.Persistence\ServiceControl.Audit.Persistence.csproj" />
<ProjectReference Include="..\ServiceControl.Configuration\ServiceControl.Configuration.csproj" />
<ProjectReference Include="..\ServiceControl.Infrastructure\ServiceControl.Infrastructure.csproj" />
<ProjectReference Include="..\ServiceControl.LicenseManagement\ServiceControl.LicenseManagement.csproj" />
<ProjectReference Include="..\ServiceControl.Transports\ServiceControl.Transports.csproj" />
<ProjectReference Include="..\ServiceControl.Hosting\ServiceControl.Hosting.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="ByteSize" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="ModelContextProtocol.AspNetCore" />
<PackageReference Include="NServiceBus.CustomChecks" />
<PackageReference Include="NServiceBus.Extensions.Hosting" />
<PackageReference Include="NServiceBus.Extensions.Logging" />
<PackageReference Include="OpenTelemetry.Exporter.Console" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" />
<PackageReference Include="Seq.Extensions.Logging" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ServiceControl.SagaAudit\**\*.cs" Exclude="..\ServiceControl.SagaAudit\obj\**\*" LinkBase="SagaAudit" />
</ItemGroup>
<ItemGroup>
<None Remove="Infrastructure\Hosting\Help.txt" />
<EmbeddedResource Include="Infrastructure\Hosting\Help.txt" />
</ItemGroup>
<ItemGroup>
<Content Remove="App.config" />
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Artifact Include="$(OutputPath)" FileExclude="ServiceControl.Audit.dll.config" DirExclude=".logs" DestinationFolder="$(ArtifactsPath)Particular.ServiceControl.Audit" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ServiceControl.Audit.AcceptanceTests" />
<InternalsVisibleTo Include="ServiceControl.Audit.AcceptanceTests.RavenDB" />
<InternalsVisibleTo Include="ServiceControl.Audit.UnitTests" />
</ItemGroup>
</Project>