-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutomation.csproj
More file actions
71 lines (64 loc) · 3.18 KB
/
Automation.csproj
File metadata and controls
71 lines (64 loc) · 3.18 KB
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
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>Automation</RootNamespace>
</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>
<None Remove="Release\**" />
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<Target Name="AfterPublishMessage" AfterTargets="Publish">
<Message Text="Publish done! Copy all content in directory: $(PublishDir) to the `/config/netdaemon4' folder for add-on or your custom folder to deplpoy" Importance="high" />
</Target>
<ItemGroup>
<PackageReference Include="Discord.Net.Webhook" Version="3.18.0" />
<PackageReference Include="NetDaemon.AppModel" Version="25.48.0" />
<PackageReference Include="NetDaemon.Extensions.Mqtt" Version="25.48.0" />
<PackageReference Include="NetDaemon.Runtime" Version="25.48.0" />
<PackageReference Include="NetDaemon.HassModel" Version="25.48.0" />
<PackageReference Include="NetDaemon.Client" Version="25.48.0" />
<PackageReference Include="NetDaemon.Extensions.Scheduling" Version="25.48.0" />
<PackageReference Include="NetDaemon.Extensions.Logging" Version="25.48.0" />
<PackageReference Include="NetDaemon.Extensions.Tts" Version="25.48.0" />
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
<PackageReference Include="RestSharp" Version="113.1.0" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="System.Reactive" Version="6.1.0" />
<PackageReference Include="Polly" Version="8.6.5" />
<PackageReference Include="Polly.Extensions" Version="8.6.5" />
</ItemGroup>
<ItemGroup>
<Content Include=".storage\AlarmState_store.json" />
<Content Include=".storage\LightState_store.json" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Release\**" />
<Compile Update="apps\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="Release\**" />
</ItemGroup>
<ItemGroup>
<Folder Include="NetDaemonCodegen" />
</ItemGroup>
</Project>