58 lines
1.8 KiB
XML
58 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<SupportedOSPlatformVersion>7.0</SupportedOSPlatformVersion>
|
|
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<Optimize>True</Optimize>
|
|
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<Optimize>True</Optimize>
|
|
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<COMReference Include="WinHttp">
|
|
<WrapperTool>tlbimp</WrapperTool>
|
|
<VersionMinor>1</VersionMinor>
|
|
<VersionMajor>5</VersionMajor>
|
|
<Guid>662901fc-6951-4854-9eb2-d9a2570f2b2e</Guid>
|
|
<Lcid>0</Lcid>
|
|
<Isolated>false</Isolated>
|
|
<EmbedInteropTypes>true</EmbedInteropTypes>
|
|
</COMReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Databasic" Version="1.2.7" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
|
<PackageReference Include="Npgsql" Version="6.0.4" />
|
|
<PackageReference Include="System.Data.OleDb" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
<DesignTime>True</DesignTime>
|
|
<AutoGen>True</AutoGen>
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
</Compile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
</EmbeddedResource>
|
|
</ItemGroup>
|
|
|
|
</Project>
|