-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.props
executable file
·34 lines (31 loc) · 1.54 KB
/
common.props
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
<Project>
<PropertyGroup Label="SDK Versions">
<NetCoreTargetVersion>netcoreapp3.0</NetCoreTargetVersion>
<NetStandardTargetVersion>netstandard2.1</NetStandardTargetVersion>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Label="Package information">
<Company>Jader Oliveira</Company>
<Authors>Jader Oliveira</Authors>
<Copyright>Copyright © 2019. All rights reserved.</Copyright>
<PackageIconUrl></PackageIconUrl>
<RepositoryUrl></RepositoryUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<!-- Disable Sourcelink on non Windows machines due to a bug -->
<!-- https://github.com/dotnet/sourcelink/issues/119 -->
<PropertyGroup Condition="'$(OS)' != 'Windows_NT'">
<EnableSourceLink>false</EnableSourceLink>
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
</PropertyGroup>
<ItemGroup Condition="'$(IsPackable)'=='true'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-19367-01">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>