-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadar.csproj
34 lines (29 loc) · 1.19 KB
/
Radar.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
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Remove="Common\Config\config.ini" />
<None Remove="Common\MacList.txt" /> <None Remove="Common\Resources\PortList.txt" />
</ItemGroup>
<ItemGroup>
<Content Include="Common\Config\config.ini">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Common\Resources\MacList.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="Common\Resources\PortList.txt">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ArpLookup" Version="2.0.3" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.2.2" />
<PackageReference Include="MediatR" Version="10.0.1" />
<PackageReference Include="MediatR.Extensions.Microsoft.DependencyInjection" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
</ItemGroup>
</Project>