Projekt

Obecné

Profil

Stáhnout (845 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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 db562f60 Pultak
    <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
28
    <PackageReference Include="System.Configuration.ConfigurationManager" Version="6.0.0" />
29 c318a92c Pultak
  </ItemGroup>
30
31
</Project>