-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathConsole.csproj
More file actions
26 lines (21 loc) · 913 Bytes
/
Copy pathConsole.csproj
File metadata and controls
26 lines (21 loc) · 913 Bytes
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
<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="Serilog.Sinks.Console" Version="6.1.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Lib\Autofac.Extras.Quartz\Autofac.Extras.Quartz.csproj" />
</ItemGroup>
</Project>