forked from loresoft/Calculator
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (29 loc) · 1.43 KB
/
Directory.Build.props
File metadata and controls
37 lines (29 loc) · 1.43 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
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Product>MathExpressions</Product>
<Description>MathExpressions evaluates math expressions, functions, and variables. It also saves and restores history and variables. This is used by the Calculate X applications from 12noon LLC.</Description>
<Authors>Stefan K.S. Tucker</Authors>
<Company>12noon LLC</Company>
<Year>$([System.DateTime]::UtcNow.Year)</Year>
<Copyright>© 2021-$(Year) 12noon LLC</Copyright>
</PropertyGroup>
<PropertyGroup>
<VersionPrefix>3.30.1</VersionPrefix>
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">debug</VersionSuffix>
<!-- `Version` defaults to `VersionPrefix`+`VersionSuffix` -->
<!-- Windows file properties A.B.C.0 -->
<FileVersion>$(VersionPrefix).0</FileVersion>
<!-- Stable API identity version, usually updated only on breaking changes -->
<!-- Only set in individual projects. -->
<AssemblyVersion />
<!-- Used for human-readable version, About, Explorer, crash logs, marketing|build metadata -->
<!-- Defaults to `Version`+githash -->
<InformationalVersion />
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
</PropertyGroup>
<PropertyGroup>
<ArtifactsPath>C:\VSIntermediate\MathExpressions\artifacts\</ArtifactsPath>
<BaseIntermediateOutputPath>$(ArtifactsPath)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
</PropertyGroup>
</Project>