microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Directory.Build.props
32lines · modecode
| 1 | <Project> |
| 2 | |
| 3 | <PropertyGroup> |
| 4 | <Product>Microsoft Teams SDK</Product> |
| 5 | <Version>2.0.0-preview.10</Version> |
| 6 | <Authors>Microsoft</Authors> |
| 7 | <Company>Microsoft</Company> |
| 8 | <Copyright>© Microsoft Corporation. All rights reserved.</Copyright> |
| 9 | <RepositoryUrl>https://github.com/microsoft/teams.net</RepositoryUrl> |
| 10 | <RepositoryType>git</RepositoryType> |
| 11 | <GenerateDocumentationFile>false</GenerateDocumentationFile> |
| 12 | <PackageIcon>icon.png</PackageIcon> |
| 13 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 14 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 15 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
| 16 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 17 | <IncludeSymbols>true</IncludeSymbols> |
| 18 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 19 | <IsTestProject>false</IsTestProject> |
| 20 | </PropertyGroup> |
| 21 | |
| 22 | <PropertyGroup> |
| 23 | <SignAssembly>True</SignAssembly> |
| 24 | <AssemblyOriginatorKeyFile>$([MSBuild]::GetPathOfFileAbove('key.snk'))</AssemblyOriginatorKeyFile> |
| 25 | </PropertyGroup> |
| 26 | |
| 27 | <ItemGroup> |
| 28 | <None Include=".\README.md" Pack="true" PackagePath="\" /> |
| 29 | <None Include="$(MSBuildThisFileDirectory)\..\Assets\icon.png" Pack="true" PackagePath="\" /> |
| 30 | </ItemGroup> |
| 31 | |
| 32 | </Project> |
| 33 | |