You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UseWPF>true</UseWPF>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="DynamicJobManager.cs" />
|
|
<Compile Remove="PluginLoader.cs" />
|
|
<Compile Remove="Startup.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Autofac" Version="8.3.0" />
|
|
<PackageReference Include="Autofac.Extras.CommonServiceLocator" Version="6.1.0" />
|
|
<PackageReference Include="Autofac.Mef" Version="7.0.0" />
|
|
<PackageReference Include="Dapper" Version="2.1.66" />
|
|
<PackageReference Include="Hangfire" Version="1.8.18" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.5" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.5" />
|
|
<PackageReference Include="ModernWpfUI" Version="0.9.6" />
|
|
<PackageReference Include="System.Data.SqlClient" Version="4.9.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ILifeTimeService\ILifeTimeService.csproj" />
|
|
<ProjectReference Include="..\Models\Models.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|