forked from Raiffeisen-DGTL/ViennaNET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathViennaNET.ArcSight.csproj
28 lines (23 loc) · 1.06 KB
/
ViennaNET.ArcSight.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\ViennaNET.ArcSight.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\ViennaNET.ArcSight.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="Polly" Version="7.2.2" />
<PackageReference Include="SyslogNet.Client.netstandard1.3" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ViennaNET.Validation\ViennaNET.Validation.csproj" />
<ProjectReference Include="..\ViennaNET.Logging\ViennaNET.Logging.csproj" />
<ProjectReference Include="..\ViennaNET.Utils\ViennaNET.Utils.csproj" />
</ItemGroup>
</Project>