-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
40 lines (34 loc) · 1.67 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
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!--
********
WARNING: These targets support multiple frameworks. Do not update the TargetFramework or any
other framework specific items here as they will break the build.
********
-->
<PropertyGroup>
<FileAlignment>512</FileAlignment>
<LangVersion>12.0</LangVersion>
</PropertyGroup>
<!-- include Ken Christensen in all assemblies -->
<PropertyGroup>
<Company>Ken Christensen</Company>
<Product>Kenc.ACMELib</Product>
<Authors>Ken Christensen</Authors>
<Copyright>© 2024 Ken Christensen. All rights reserved.</Copyright>
</PropertyGroup>
<!-- Saving some paths that are used elsewhere in MSBuild settings and targets -->
<PropertyGroup>
<OutputSubdir Condition=" '$(OutputSubDir)' == ''">$(MSBuildProjectName)</OutputSubdir>
<EnlistmentRoot>$(MSBuildThisFileDirectory)</EnlistmentRoot>
<EnlistmentRoot Condition="!HasTrailingSlash('$(EnlistmentRoot)')">$(EnlistmentRoot)\</EnlistmentRoot>
<MSBuildOverrides>$(MSBuildToolsPath)</MSBuildOverrides>
<!-- setup intermediate folder to be root\intermedia\ with unique subfolder paths -->
<IntermediateRootPath>$(EnlistmentRoot)intermediates</IntermediateRootPath>
<IntermediateOutputPath>$(IntermediateRootPath)\$(Configuration)\$(Platform)\$(OutputSubdir)</IntermediateOutputPath>
<OutputRootPath>$(EnlistmentRoot)drops</OutputRootPath>
<OutputPath>$(OutputRootPath)\$(Configuration)\$(Platform)\$(OutputSubdir)</OutputPath>
<!-- Add generated xml documentation files to packaged project output -->
<ExcludeXmlAssemblyFiles>false</ExcludeXmlAssemblyFiles>
</PropertyGroup>
</Project>