-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathConsole.csproj
29 lines (24 loc) · 1.08 KB
/
Console.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(ApplicationTargetFrameworks)</TargetFrameworks>
<OutputType>Exe</OutputType>
<RootNamespace>ConsoleScheduler</RootNamespace>
<LangVersion>latest</LangVersion>
<IsPackable>False</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Shared\Bootstrap.cs" Link="Shared\Bootstrap.cs" />
<Compile Include="..\Shared\HeartbeatJob.cs" Link="Shared\HeartbeatJob.cs" />
<Compile Include="..\Shared\HeartbeatService.cs" Link="Shared\HeartbeatService.cs" />
<Compile Include="..\Shared\ScopedDependency.cs" Link="Shared\ScopedDependency.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="8.0.0" />
<PackageReference Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageReference Include="Quartz" Version="3.8.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Lib\Autofac.Extras.Quartz\Autofac.Extras.Quartz.csproj" />
</ItemGroup>
</Project>