1 |
c318a92c
|
Pultak
|
<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 |
db562f60
|
Pultak
|
<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 |
c318a92c
|
Pultak
|
<ItemGroup>
|
21 |
|
|
<Reference Include="t32apinet">
|
22 |
|
|
<HintPath>..\dotnet\t32apinet\bin\Release\t32apinet.dll</HintPath>
|
23 |
|
|
</Reference>
|
24 |
|
|
</ItemGroup>
|
25 |
|
|
|
26 |
|
|
<ItemGroup>
|
27 |
c2cc7813
|
Pultak
|
<PackageReference Include="DiskQueue" Version="1.5.0" />
|
28 |
4b0f0b36
|
Pultak
|
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
|
29 |
db562f60
|
Pultak
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
30 |
4b0f0b36
|
Pultak
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
31 |
|
|
<PackageReference Include="RestSharp" Version="107.3.0" />
|
32 |
db562f60
|
Pultak
|
<PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
|
33 |
c2cc7813
|
Pultak
|
<PackageReference Include="System.Management" Version="6.0.0" />
|
34 |
c318a92c
|
Pultak
|
</ItemGroup>
|
35 |
|
|
|
36 |
|
|
</Project>
|