-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Directory.Build.props
22 lines (20 loc) · 1.17 KB
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<!-- Mark the nuget packages as serviceable. -->
<Serviceable>true</Serviceable>
<!-- suppress message when using the .NET Preview SDKs. -->
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts\</PackageOutputPath>
<Company>Els_kom org.</Company>
<Authors>Els_kom org.</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Elskom/Sdk/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Elskom/Sdk/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Copyright (c) 2018-2024</Copyright>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<IsTagBuild Condition="$(GITHUB_REF.StartsWith('refs/tags/'))">true</IsTagBuild>
<VersionSuffix Condition="'$(IsTagBuild)' == '' AND '$(GITHUB_ACTIONS)' == ''">dev</VersionSuffix>
<VersionSuffix Condition="'$(IsTagBuild)' == '' AND '$(GITHUB_ACTIONS)' == 'true'">preview.$(GITHUB_RUN_NUMBER).$(BUILD_RERUN_COUNT)</VersionSuffix>
</PropertyGroup>
</Project>