-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetDaemonApps.csproj
60 lines (58 loc) · 2.9 KB
/
NetDaemonApps.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>ChandlerHome</RootNamespace>
<BaseOutputPath>bin\</BaseOutputPath>
</PropertyGroup>
<ItemGroup>
<None Update="$(MSBuildProjectDir)appsettings.Development.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
</None>
<None Update="$(MSBuildProjectDir)appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="$(MSBuildProjectDir)**\*.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<Target Name="AfterPublishMessage" AfterTargets="Publish">
<Message Text="Publish done! Copy all content in directory: $(PublishDir) to the `/config/netdaemon3' folder for add-on or your custom folder to deplpoy" Importance="high" />
</Target>
<ItemGroup>
<PackageReference Include="CoordinateSharp" Version="2.23.1.1">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="NetDaemon.AppModel" Version="24.21.0" />
<PackageReference Include="NetDaemon.Extensions.Mqtt" Version="24.21.0" />
<PackageReference Include="NetDaemon.Runtime" Version="24.21.0" />
<PackageReference Include="NetDaemon.HassModel" Version="24.21.0" />
<PackageReference Include="NetDaemon.Client" Version="24.21.0">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="NetDaemon.Extensions.Scheduling" Version="24.21.0" />
<PackageReference Include="NetDaemon.Extensions.Logging" Version="24.21.0" />
<PackageReference Include="NetDaemon.Extensions.Tts" Version="24.21.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="Nager.Date" Version="2.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
<PackageReference Include="System.Reactive" Version="6.0.1">
<TreatAsUsed>true</TreatAsUsed>
</PackageReference>
<PackageReference Include="System.Runtime" Version="4.3.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="apps\AppModel\" />
<Folder Include="apps\Extensions\" />
</ItemGroup>
</Project>