-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfrastructureMonitoring.csproj
30 lines (26 loc) · 1.4 KB
/
InfrastructureMonitoring.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0-windows</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<AssemblyName>Acme.Wattle.Examples.InfrastructureMonitoring</AssemblyName>
<RootNamespace>Acme.Wattle.Examples.InfrastructureMonitoring</RootNamespace>
<NoWarn>CS8032;CS8784</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageReference Include="Acme.Wattle.Caching" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.DomainObjects" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.Infrastructures.Rest.Clients" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.Infrastructures.Rest.Controllers" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.Json" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.QueueProcessors" Version="1.0.0.4122" />
<PackageReference Include="Acme.Wattle.Testing" Version="1.0.0.4122" />
<PackageReference Include="System.Private.Uri" Version="4.3.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj" />
</ItemGroup>
</Project>