-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
27 lines (25 loc) · 1.12 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
23
24
25
26
27
<Project>
<PropertyGroup>
<Title>Cash claim</Title>
<Version>0.1-preview.1</Version>
<Authors>Godwin peter .O</Authors>
<Description>An expense remuneration management system</Description>
<RepositoryType>git</RepositoryType>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<RepositoryUrl>https://github.com/gpproton/x-claim</RepositoryUrl>
<PackageProjectUrl>https://github.com/gpproton/x-claim</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<LicenseFile>$(MSBuildThisFileDirectory)LICENSE</LicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>© x-claim Contributors. All rights reserved.</Copyright>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">True</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>11</LangVersion>
<!-- TODO: Enable when in public release -->
<!-- <UseArtifactsOutput>true</UseArtifactsOutput> -->
</PropertyGroup>
</Project>