-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (20 loc) · 1.07 KB
/
Directory.Build.props
File metadata and controls
24 lines (20 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
24
<Project>
<PropertyGroup>
<!-- Version (managed by Release Please) -->
<Version>0.1.4</Version>
<!-- Package metadata -->
<Authors>LCDPossible Contributors</Authors>
<Description>Cross-platform LCD controller service for HID-based displays</Description>
<RepositoryUrl>https://github.com/DevPossible/lcd-possible</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Redirect bin/obj to /.build/{ProjectName}/ folder -->
<BaseOutputPath>$(MSBuildThisFileDirectory).build\$(MSBuildProjectName)\bin\</BaseOutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory).build\$(MSBuildProjectName)\obj\</BaseIntermediateOutputPath>
<!-- Package output -->
<PackageOutputPath>$(MSBuildThisFileDirectory).build\packages\</PackageOutputPath>
<!-- Ensure paths end with slash -->
<OutputPath>$(BaseOutputPath)$(Configuration)\</OutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)$(Configuration)\</IntermediateOutputPath>
</PropertyGroup>
</Project>