FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
cpython/Tools/msi/msi.targets at pythoncapi · pythoncapi/cpython · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythoncapi
/
cpython
Public
forked from
python/cpython
Notifications
You must be signed in to change notification settings
Fork
0
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
cpython
/
Tools
/
msi
/
msi.targets
Copy path
More file actions
More file actions
Latest commit
History
History
History
93 lines (79 loc) · 5.16 KB
Breadcrumbs
cpython
/
Tools
/
msi
/
msi.targets
Copy path
File metadata and controls
93 lines (79 loc) · 5.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?
xml
version
=
"
1.0
"
encoding
=
"
utf-8
"
?>
<
Project
ToolsVersion
=
"
4.0
"
xmlns
=
"
http://schemas.microsoft.com/developer/msbuild/2003
"
>
<
Target
Name
=
"
ProcessInstallFiles
"
AfterTargets
=
"
PrepareForBuild
"
Condition
=
"
@(InstallFiles) != ''
"
>
<
PropertyGroup
>
<
_FileListTarget
>$(IntermediateOutputPath)$(MSBuildProjectName).g.csv</
_FileListTarget
>
<
_InstallFilesTarget
>$(IntermediateOutputPath)$(MSBuildProjectName).g.wxs</
_InstallFilesTarget
>
</
PropertyGroup
>
<
ItemGroup
>
<
InstallFiles
>
<
_Source
>%(Source)$([msbuild]::MakeRelative(%(SourceBase), %(FullPath)))</
_Source
>
<
_Target
>%(Target_)$([msbuild]::MakeRelative(%(TargetBase), %(FullPath)))</
_Target
>
</
InstallFiles
>
<
_CatalogFiles
Include
=
"
@(InstallFiles)
"
Condition
=
"
%(InstallFiles.IncludeInCat) and ''!=$([System.IO.File]::ReadAllText(%(InstallFiles.FullPath)))
"
/>
</
ItemGroup
>
<
WriteLinesToFile
File
=
"
$(_FileListTarget)
"
Lines
=
"
@(InstallFiles->'
"
%(_Source)
"
,
"
%(_Target)
"
,
"
%(Group)
"
,
"
%(DiskId)
"
,
"
%(Condition)
"
')
"
Overwrite
=
"
true
"
/>
<
Exec
Command
=
'
"$(PythonExe)" csv_to_wxs.py "$(_FileListTarget)" "$(_InstallFilesTarget)"
'
WorkingDirectory
=
"
$(MSBuildThisFileDirectory)
"
/>
<
ItemGroup
>
<
FileWrites
Include
=
"
$(_FileListTarget);$(_InstallFilesTarget)
"
/>
<
Compile
Include
=
"
$(_InstallFilesTarget)
"
/>
</
ItemGroup
>
</
Target
>
<
Target
Name
=
"
GenerateCatalog
"
AfterTargets
=
"
ProcessInstallFiles
"
Condition
=
"
'@(_CatalogFiles)' != ''
"
>
<
PropertyGroup
>
<
_CatFileSourceTarget
>$(IntermediateOutputPath)$(MSBuildProjectName).cdf</
_CatFileSourceTarget
>
<
_CatFileTarget
>$(IntermediateOutputPath)python_$(MSBuildProjectName).cat</
_CatFileTarget
>
<
_CatFile
>[CatalogHeader]
Name=$([System.IO.Path]::GetFileName($(_CatFileTarget)))
ResultDir=$([System.IO.Path]::GetDirectoryName($(_CatFileTarget)))
PublicVersion=1
CatalogVersion=2
HashAlgorithms=SHA256
PageHashes=false
EncodingType=
[CatalogFiles]
@(_CatalogFiles->'
<
HASH
>
%(Filename)%(Extension)=%(FullPath)','
')
</
_CatFile
>
</
PropertyGroup
>
<
WriteLinesToFile
File
=
"
$(_CatFileSourceTarget)
"
Lines
=
"
$(_CatFile)
"
Overwrite
=
"
true
"
/>
<
Exec
Command
=
'
$(_MakeCatCommand) "$(_CatFileSourceTarget)"
'
WorkingDirectory
=
"
$(MSBuildThisFileDirectory)
"
/>
<
Exec
Command
=
'
$(_SignCommand) "$(_CatFileTarget)"
'
WorkingDirectory
=
"
$(MSBuildThisFileDirectory)
"
Condition
=
"
Exists($(_CatFileTarget)) and '$(_SignCommand)' != ''
"
/>
<
ItemGroup
>
<
FileWrites
Include
=
"
$(_CatFileSourceTarget);$(_CatFileTarget)
"
/>
</
ItemGroup
>
</
Target
>
<
Target
Name
=
"
_TransformWxlTemplates
"
AfterTargets
=
"
PrepareForBuild
"
Inputs
=
"
@(WxlTemplate);$(PySourcePath)include\patchlevel.h
"
Outputs
=
"
$(IntermediateOutputPath)%(Filename).wxl
"
>
<
PropertyGroup
Condition
=
"
'@(WxlTemplate)' != ''
"
>
<
_Content
>$([System.IO.File]::ReadAllText(%(WxlTemplate.FullPath)).Replace(`{{ShortVersion}}`, `$(MajorVersionNumber).$(MinorVersionNumber)$(PyTestExt)`).Replace(`{{LongVersion}}`, `$(PythonVersion)$(PyTestExt)`).Replace(`{{Bitness}}`, `$(Bitness)`))</
_Content
>
<
_ExistingContent
Condition
=
"
Exists('$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl')
"
>$([System.IO.File]::ReadAllText($(IntermediateOutputPath)%(WxlTemplate.Filename).wxl))</
_ExistingContent
>
</
PropertyGroup
>
<
WriteLinesToFile
File
=
"
$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl
"
Lines
=
"
$(_Content)
"
Overwrite
=
"
true
"
Condition
=
"
$(_Content) != $(_ExistingContent)
"
/>
<
ItemGroup
Condition
=
"
'@(WxlTemplate)' != ''
"
>
<
EmbeddedResource
Include
=
"
$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl
"
/>
<
FileWrites
Include
=
"
$(IntermediateOutputPath)%(WxlTemplate.Filename).wxl
"
/>
</
ItemGroup
>
</
Target
>
<
Import
Project
=
"
$(WixTargetsPath)
"
/>
<
Target
Name
=
"
SignCabs
"
>
<
Error
Text
=
"
Unable to locate signtool.exe. Set /p:SignToolPath and rebuild
"
Condition
=
"
'$(_SignCommand)' == ''
"
/>
<
Exec
Command
=
"
$(_SignCommand) @(SignCabs->'
"
%(FullPath)
"
',' ')
"
ContinueOnError
=
"
false
"
/>
</
Target
>
<
Target
Name
=
"
SignMsi
"
>
<
Error
Text
=
"
Unable to locate signtool.exe. Set /p:SignToolPath and rebuild
"
Condition
=
"
'$(_SignCommand)' == ''
"
/>
<
Exec
Command
=
"
$(_SignCommand) @(SignMsi->'
"
%(FullPath)
"
',' ')
"
ContinueOnError
=
"
false
"
/>
</
Target
>
<
Target
Name
=
"
SignBundleEngine
"
>
<
Error
Text
=
"
Unable to locate signtool.exe. Set /p:SignToolPath and rebuild
"
Condition
=
"
'$(_SignCommand)' == ''
"
/>
<
Exec
Command
=
"
$(_SignCommand) @(SignBundleEngine->'
"
%(FullPath)
"
',' ')
"
ContinueOnError
=
"
false
"
/>
</
Target
>
<
Target
Name
=
"
SignBundle
"
>
<
Error
Text
=
"
Unable to locate signtool.exe. Set /p:SignToolPath and rebuild
"
Condition
=
"
'$(_SignCommand)' == ''
"
/>
<
Exec
Command
=
"
$(_SignCommand) @(SignBundle->'
"
%(FullPath)
"
',' ')
"
ContinueOnError
=
"
false
"
/>
</
Target
>
</
Project
>
Back
|
FazBrowse Home
|
New Git URL