Skip to content

Commit 2a3049f

Browse files
committed
add DBP
1 parent c24d74d commit 2a3049f

2 files changed

Lines changed: 41 additions & 14 deletions

File tree

.gitignore

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,12 @@
1-
desktop.ini
2-
Thumbs.db
3-
4-
**/.vs/
5-
**/Win32/
6-
**/x64/
7-
**/x86/
8-
**/amd64/
9-
**/ipch/
101
**/Debug/
112
**/Debug Console/
123
**/Release/
134
**/Release Console/
14-
**/obj/
15-
**/bin/
165
**/AppPackages/
176
**/TestResults/
187
**/Generated Files/
198

209
#
2110
# Added by SourceTree
2211
#
23-
test/
24-
Directory.Build.props
25-
Properties/launchSettings.json
12+
Tests/

Directory.Build.props

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project>
3+
<PropertyGroup>
4+
<Product>TouchMax</Product>
5+
<Description>TouchMax changes the Creation-Time and/or Modified-Time of any files or folders. It can use an absolute time or one relative to the file's creation time, file's modified time, or current time.</Description>
6+
7+
<Authors>Stefan K.S. Tucker</Authors>
8+
<Company>12noon LLC</Company>
9+
<Year>$([System.DateTime]::UtcNow.Year)</Year>
10+
<Copyright>© 2006-$(Year) 12noon LLC</Copyright>
11+
</PropertyGroup>
12+
13+
<PropertyGroup>
14+
<VersionPrefix>3.2.1</VersionPrefix>
15+
<VersionSuffix Condition="'$(Configuration)' == 'Debug'">debug</VersionSuffix>
16+
<!-- `Version` defaults to `VersionPrefix`+`VersionSuffix` -->
17+
18+
<!-- Windows file properties A.B.C.0 -->
19+
<FileVersion>$(VersionPrefix).0</FileVersion>
20+
21+
<!-- Stable API identity version, usually updated only on breaking changes -->
22+
<!-- Only set in individual projects. -->
23+
<AssemblyVersion />
24+
25+
<!-- Used for human-readable version, About, Explorer, crash logs, marketing|build metadata -->
26+
<!-- Defaults to `Version`+githash -->
27+
<InformationalVersion />
28+
<IncludeSourceRevisionInInformationalVersion>true</IncludeSourceRevisionInInformationalVersion>
29+
30+
<!-- Used for packaging (.wapproj) -->
31+
<AppxBundleVersion>$(Version)</AppxBundleVersion>
32+
33+
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
34+
</PropertyGroup>
35+
36+
<PropertyGroup>
37+
<ArtifactsPath>C:\VSIntermediate\TouchMax\artifacts\</ArtifactsPath>
38+
<BaseIntermediateOutputPath>$(ArtifactsPath)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
39+
</PropertyGroup>
40+
</Project>

0 commit comments

Comments
 (0)