forked from CoreWCF/CoreWCF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuspec.props
More file actions
30 lines (29 loc) · 1.57 KB
/
nuspec.props
File metadata and controls
30 lines (29 loc) · 1.57 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Owners>CoreWCF contributors</Owners>
<Authors>CoreWCF contributors</Authors>
<Copyright>.NET Foundation</Copyright>
<Description>CoreWCF is a port of the service side of Windows Communication Foundation (WCF) to .NET Core. The goal of this project is to enable existing WCF services to move to .NET Core.</Description>
<NeutralLanguage>en-US</NeutralLanguage>
<PackageTags>WCF .net core, CoreWCF</PackageTags>
<PackageProjectUrl>https://github.com/CoreWCF/CoreWCF</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<UseFullSemVerForNuGet>true</UseFullSemVerForNuGet>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<!-- Enable deterministic builds during CI build. See https://github.com/clairernovotny/DeterministicBuilds for more info-->
<PropertyGroup Condition="'$(TF_BUILD)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$(ProjectDir)README.md" Pack="true" PackagePath=""/>
<None Include="$(ProjectDir)/Documentation/branding/web_92dpi_avatar_256_transparentbackground.png" Pack="true" PackagePath="icon.png"/>
</ItemGroup>
</Project>