generated from wazzamatazz/csharp-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
24 lines (19 loc) · 1.1 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
<Project>
<!-- Recursively import the Directory.Build.props file from the parent folder if it exists. -->
<PropertyGroup>
<ParentProject>$([MSBuild]::GetPathOfFileAbove('$(MSBuildThisFile)', '$(MSBuildThisFileDirectory)../'))</ParentProject>
</PropertyGroup>
<Import Project="$(ParentProject)" Condition=" '$(ParentProject)' != '' " />
<PropertyGroup>
<Authors>Graham Watts</Authors>
<PackageProjectUrl>https://github.com/wazzamatazz/opcua-json-encoder</PackageProjectUrl>
<PackageOutputPath>$(MSBuildThisFileDirectory)artifacts\packages\$(Configuration)</PackageOutputPath>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NeutralLanguage>en</NeutralLanguage>
<CopyrightStartYear>2024</CopyrightStartYear>
</PropertyGroup>
<!-- Set copyright notice based on CopyrightStartYear property. -->
<Import Project=".\build\Copyright.props" Condition="Exists('.\build\Copyright.props')" />
<!-- Extension point to allow Continuous Integration systems to inject their own configuration. -->
<Import Project="CI.props" Condition="Exists('CI.props')" />
</Project>