-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathServiceControl.Monitoring.csproj
More file actions
45 lines (36 loc) · 1.76 KB
/
ServiceControl.Monitoring.csproj
File metadata and controls
45 lines (36 loc) · 1.76 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.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.Transports.props" />
<ItemGroup>
<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="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="NServiceBus.Extensions.Hosting" />
<PackageReference Include="NServiceBus.Extensions.Logging" />
<PackageReference Include="NServiceBus.Persistence.NonDurable" />
</ItemGroup>
<ItemGroup>
<Content Remove="App.config" />
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Artifact Include="$(OutputPath)" FileExclude="ServiceControl.Monitoring.dll.config;nsb*.txt" DirExclude=".logs" DestinationFolder="$(ArtifactsPath)Particular.ServiceControl.Monitoring" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="ServiceControl.Monitoring.AcceptanceTests" />
<InternalsVisibleTo Include="ServiceControl.Monitoring.UnitTests" />
</ItemGroup>
</Project>