-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdaemonapp.csproj
More file actions
25 lines (20 loc) · 823 Bytes
/
daemonapp.csproj
File metadata and controls
25 lines (20 loc) · 823 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="JoySoftware.NetDaemon.App" Version="20.43.0-beta" />
<PackageReference Include="JoySoftware.NetDaemon.DaemonRunner" Version="20.43.0-beta" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.9" />
<PackageReference Include="Serilog.AspNetCore" Version="3.2.0" />
<PackageReference Include="System.Reactive" Version="4.4.1" />
</ItemGroup>
</Project>