2024-06-03 08:35:49 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-07-03 06:24:17 +00:00
|
|
|
<PackageReference Include="BouncyCastle.NetCore" Version="2.2.1" />
|
2024-07-08 05:53:40 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="7.0.15" />
|
2024-06-12 10:56:53 +00:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
|
2024-07-08 05:53:40 +00:00
|
|
|
<PackageReference Include="Quartz" Version="3.10.0" />
|
|
|
|
<PackageReference Include="sqlite-net-sqlcipher" Version="1.9.172" />
|
2024-06-12 10:56:53 +00:00
|
|
|
<PackageReference Include="System.Management" Version="8.0.0"/>
|
|
|
|
<PackageReference Include="Serilog" Version="4.0.0"/>
|
|
|
|
<PackageReference Include="Serilog.Sinks.File" Version="5.0.1-dev-00972"/>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-19 07:53:34 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Content Include="bin\Debug\net7.0\MasstransferCommon.deps.json" />
|
|
|
|
<Content Include="bin\Debug\net7.0\MasstransferCommon.dll" />
|
|
|
|
<Content Include="bin\Debug\net7.0\MasstransferCommon.pdb" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="bin\**" />
|
2024-06-19 08:23:52 +00:00
|
|
|
<Compile Remove="obj\**" />
|
2024-06-19 07:53:34 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Remove="bin\**" />
|
2024-06-19 08:23:52 +00:00
|
|
|
<EmbeddedResource Remove="obj\**" />
|
2024-06-19 07:53:34 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="bin\**" />
|
2024-06-19 08:23:52 +00:00
|
|
|
<None Remove="obj\**" />
|
|
|
|
<None Remove=".gitignore" />
|
2024-06-19 07:53:34 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2024-07-08 05:53:40 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Service\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2024-06-03 08:35:49 +00:00
|
|
|
</Project>
|