microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Directory.Build.props
37lines · modeblame
c4042b57Alex Acebo1 years ago | 1 | <Project> |
| 2 | | |
| 3 | <PropertyGroup> | |
| 4 | <Product>Microsoft Teams SDK</Product> | |
| 5 | <Authors>Microsoft</Authors> | |
| 6 | <Company>Microsoft</Company> | |
| 7 | <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | |
| 8 | <RepositoryUrl>https://github.com/microsoft/teams.net</RepositoryUrl> | |
| 9 | <RepositoryType>git</RepositoryType> | |
| 10 | <GenerateDocumentationFile>false</GenerateDocumentationFile> | |
| 11 | <PackageIcon>icon.png</PackageIcon> | |
| 12 | <PackageReadmeFile>README.md</PackageReadmeFile> | |
| 13 | <PackageLicenseExpression>MIT</PackageLicenseExpression> | |
| 14 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> | |
| 15 | <PublishRepositoryUrl>true</PublishRepositoryUrl> | |
| 16 | <IncludeSymbols>true</IncludeSymbols> | |
d02f30a2Kavin1 years ago | 17 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
8e2a5114Alex Acebo1 years ago | 18 | <IsTestProject>false</IsTestProject> |
c4042b57Alex Acebo1 years ago | 19 | </PropertyGroup> |
2e8d526cAlex Acebo10 months ago | 20 | |
d5faffe0Kavin1 years ago | 21 | <PropertyGroup> |
| 22 | <SignAssembly>True</SignAssembly> | |
| 23 | <AssemblyOriginatorKeyFile>$([MSBuild]::GetPathOfFileAbove('key.snk'))</AssemblyOriginatorKeyFile> | |
2e8d526cAlex Acebo10 months ago | 24 | <TreatWarningsAsErrors>True</TreatWarningsAsErrors> |
d5faffe0Kavin1 years ago | 25 | </PropertyGroup> |
| 26 | | |
c4042b57Alex Acebo1 years ago | 27 | <ItemGroup> |
| 28 | <None Include=".\README.md" Pack="true" PackagePath="\" /> | |
877aef4bAlex Acebo1 years ago | 29 | <None Include="$(MSBuildThisFileDirectory)\..\Assets\icon.png" Pack="true" PackagePath="\" /> |
c4042b57Alex Acebo1 years ago | 30 | </ItemGroup> |
45ceb3b4Rido8 months ago | 31 | <ItemGroup> |
| 32 | <PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')"> | |
| 33 | <PrivateAssets>all</PrivateAssets> | |
| 34 | <Version>3.9.50</Version> | |
| 35 | </PackageReference> | |
| 36 | </ItemGroup> | |
157337cbKavin1 years ago | 37 | </Project> |