-
Notifications
You must be signed in to change notification settings - Fork 1
/
Fritz.HomeAutomation.csproj
33 lines (33 loc) · 1.46 KB
/
Fritz.HomeAutomation.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageProjectUrl>https://github.com/linariii/fritz-homeautomation-csharp</PackageProjectUrl>
<RepositoryUrl>https://github.com/linariii/fritz-homeautomation-csharp</RepositoryUrl>
<PackageTags>Fritz Home Automation Dect AVM</PackageTags>
<Copyright>Copyright © linariii 2022</Copyright>
<TargetFrameworks>net472;netstandard2.0;net48;netstandard2.1;net47;net471;net46</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<AssemblyVersion>1.1.0.1</AssemblyVersion>
<FileVersion>$(AssemblyVersion)</FileVersion>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<Version>$(AssemblyVersion)</Version>
<RepositoryType>git</RepositoryType>
<PackageIcon>icon.png</PackageIcon>
<Description>C# implementation of the AVM Home Automation API</Description>
<SignAssembly>True</SignAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Fritz.HomeAutomation.Tests\**" />
<EmbeddedResource Remove="Fritz.HomeAutomation.Tests\**" />
<None Remove="Fritz.HomeAutomation.Tests\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>