forked from ludeeus/netdaemon-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
daemonapp.csproj
31 lines (26 loc) · 986 Bytes
/
daemonapp.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
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="apps\**\*.yaml" CopyToPublishDirectory="Always" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JoySoftware.NetDaemon.App" Version="21.13.0-beta" />
<PackageReference Include="JoySoftware.NetDaemon.DaemonRunner" Version="21.13.0-beta" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="5.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
</Project>