-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcommon.props
28 lines (24 loc) · 1.02 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
<Project>
<PropertyGroup>
<PackageProjectUrl>https://aelf.io</PackageProjectUrl>
<Version>$(VersionSuffix)</Version>
<NoWarn>$(NoWarn);CS1591;CS0436</NoWarn>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AElfProject/AElf/</RepositoryUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<!-- Include symbol files (*.pdb) in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<None Include="../../LICENSE" Pack="true" PackagePath=""/>
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DefineConstants>TRACE;DEBUG;NETSTANDARD2_0;DEBUG;NETSTANDARD2_0</DefineConstants>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>