2025-03-03 22:16:47 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2025-03-07 21:05:03 +01:00
|
|
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
|
|
|
<Nullable>disable</Nullable>
|
2025-03-03 22:16:47 +01:00
|
|
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
|
|
|
<Configurations>Debug;Release;PrgmList</Configurations>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-03-07 21:05:03 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="Icons\prm_icon\back-end.ico" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-03-03 22:16:47 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.2" />
|
|
|
|
|
<PackageReference Include="MySql.Data" Version="9.2.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-03-07 21:05:03 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
2025-03-03 22:16:47 +01:00
|
|
|
|
|
2025-03-07 21:05:03 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net462</TargetFramework>
|
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
|
|
|
<AssemblyName>ProgramList</AssemblyName>
|
|
|
|
|
<ApplicationIcon>Icons\prm_icon\back-end.ico</ApplicationIcon>
|
|
|
|
|
<StartupObject>Program</StartupObject>
|
|
|
|
|
</PropertyGroup>
|
2025-03-03 22:16:47 +01:00
|
|
|
|
</Project>
|