-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patheWeLink-Api.csproj
43 lines (38 loc) · 1.97 KB
/
eWeLink-Api.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net8.0;netstandard2.0</TargetFrameworks>
<RootNamespace>EWeLink.Api</RootNamespace>
<AssemblyName>eWeLink.Api</AssemblyName>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<Version>0.6.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Description>This is a sudo port of the node js library [eWeLink-api](https://github.com/skydiver/ewelink-api) to .Net.</Description>
<PackageProjectUrl>https://github.com/narchibald/dotnet-ewelink-api</PackageProjectUrl>
<PackageTags>dotnet ewelink sonoff api</PackageTags>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>eWeLink-Api.snk</AssemblyOriginatorKeyFile>
<PackageId>DotNet-eWeLink.Api</PackageId>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\devices-channel-length.json" />
<None Remove="Resources\devices-type-uuid.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\devices-channel-length.json" />
<EmbeddedResource Include="Resources\devices-type-uuid.json" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Base36" Version="1.0.0" />
<PackageReference Include="Makaretu.Dns.Multicast" Version="0.27.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>