-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
35 lines (30 loc) · 1.49 KB
/
Directory.Build.props
File metadata and controls
35 lines (30 loc) · 1.49 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
<Project>
<PropertyGroup>
<Version>0.4.1</Version>
<Company>Code Happy, LLC</Company>
<Authors>Code Happy, LLC</Authors>
<Product>HTML/CSS To Image API</Product>
<PackageTags>html;css;image;screenshot;hcti;aot</PackageTags>
<Copyright>Copyright © Code Happy, LLC</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/htmlcsstoimage/dotnet-client</RepositoryUrl>
<PackageProjectUrl>https://htmlcsstoimage.com</PackageProjectUrl>
<IsPackable>false</IsPackable>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<PackageIcon>logo-180x180.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<SuppressTfmSupportBuildWarnings>true</SuppressTfmSupportBuildWarnings>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<RootLogoPath>$(MSBuildThisFileDirectory)logo-180x180.png</RootLogoPath>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>