-
Notifications
You must be signed in to change notification settings - Fork 41
/
common.props
31 lines (28 loc) · 1.25 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
<Project>
<PropertyGroup>
<Product>Wodsoft ComBoost</Product>
<PackageTags>ComBoost</PackageTags>
<VersionPrefix>4.0.0</VersionPrefix>
<FileVersion>4.0.0</FileVersion>
<AssemblyVersion>4.0.0</AssemblyVersion>
<VersionSuffix></VersionSuffix>
<VersionSuffix Condition="'$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
<Authors>Kation</Authors>
<PackageId>$(AssemblyName)</PackageId>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Kation/ComBoost</RepositoryUrl>
<PackageProjectUrl>https://github.com/Kation/ComBoost</PackageProjectUrl>
<PackageReleaseNotes></PackageReleaseNotes>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<NoWarn>1701;1702;CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'netcoreapp2.1'">
<NoWarn>$(NoWarn);nullable</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>