forked from ludeeus/netdaemon-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdaemonapp - Backup.csproj
41 lines (37 loc) · 1.42 KB
/
daemonapp - Backup.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
32
33
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>10.0</LangVersion>
<Nullable>enable</Nullable>
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
</PropertyGroup>
<ItemGroup>
<None Include="apps\**\*.yaml" CopyToPublishDirectory="Always" />
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="JoySoftware.NetDaemon.App" Version="22.1.3" />
<PackageReference Include="JoySoftware.NetDaemon.DaemonRunner" Version="22.1.3" />
<PackageReference Include="JoySoftware.NetDaemon.HassModel" Version="22.1.3" />
<PackageReference Include="JoySoftware.NetDaemon.Extensions.Scheduling" Version="22.1.3" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="System.Reactive" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="apps\AutomationsApp\Automations.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="apps\HouseModeApp\HouseMode.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="apps\LightManagerV2\config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="apps\VoiceTimer\VoiceTimer.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>