-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (22 loc) · 1.07 KB
/
Directory.Build.props
File metadata and controls
23 lines (22 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project>
<!--
Centralized build output configuration.
Redirects all bin/obj folders to /.build/{ProjectName}/
-->
<PropertyGroup>
<BaseOutputPath>$(MSBuildThisFileDirectory).build\$(MSBuildProjectName)\bin\</BaseOutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory).build\$(MSBuildProjectName)\obj\</BaseIntermediateOutputPath>
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
<!-- Common package properties -->
<PropertyGroup>
<Authors>DevPossible</Authors>
<Company>DevPossible</Company>
<Copyright>Copyright (c) DevPossible $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/devpossible/devpossible-pwsh-projecttemplate</PackageProjectUrl>
<RepositoryUrl>https://github.com/devpossible/devpossible-pwsh-projecttemplate.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
</Project>