1
|
<Project Sdk="Microsoft.NET.Sdk">
|
2
|
|
3
|
<PropertyGroup>
|
4
|
<OutputType>Exe</OutputType>
|
5
|
<TargetFramework>net6.0</TargetFramework>
|
6
|
<ImplicitUsings>enable</ImplicitUsings>
|
7
|
<Nullable>enable</Nullable>
|
8
|
</PropertyGroup>
|
9
|
|
10
|
<ItemGroup>
|
11
|
<None Remove="appsettings.json" />
|
12
|
</ItemGroup>
|
13
|
|
14
|
<ItemGroup>
|
15
|
<EmbeddedResource Include="appsettings.json">
|
16
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
17
|
</EmbeddedResource>
|
18
|
</ItemGroup>
|
19
|
|
20
|
<ItemGroup>
|
21
|
<Reference Include="t32apinet">
|
22
|
<HintPath>..\dotnet\t32apinet\bin\Release\t32apinet.dll</HintPath>
|
23
|
</Reference>
|
24
|
</ItemGroup>
|
25
|
|
26
|
<ItemGroup>
|
27
|
<PackageReference Include="DiskQueue" Version="1.5.0" />
|
28
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
29
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
30
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
31
|
<PackageReference Include="RestSharp" Version="107.3.0" />
|
32
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
|
33
|
<PackageReference Include="System.Management" Version="6.0.0" />
|
34
|
</ItemGroup>
|
35
|
|
36
|
</Project>
|