-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathdaemonapp.csproj
More file actions
24 lines (19 loc) · 783 Bytes
/
daemonapp.csproj
File metadata and controls
24 lines (19 loc) · 783 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="daemon_config.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="JoySoftware.NetDaemon.App" Version="0.1.40-alpha" />
<PackageReference Include="JoySoftware.NetDaemon.DaemonRunner" Version="0.1.40-alpha" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="3.1.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.1" />
</ItemGroup>
</Project>