File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -29,24 +29,25 @@ build_script:
29
29
- msbuild HexEditor.vcxproj /p:configuration="%configuration%" /p:platform="%platform%" /p:PlatformToolset="%PlatformToolset%"
30
30
31
31
after_build :
32
- - cd "%APPVEYOR_BUILD_FOLDER%"\HexEditor\projects\2003\
32
+ - cd "%APPVEYOR_BUILD_FOLDER%"
33
33
- ps : >-
34
34
35
35
if ($env:PLATFORM -eq "x64") {
36
- Push-AppveyorArtifact "$env:PLATFORM\$env:CONFIGURATION\HexEditor.dll" -FileName HexEditor.dll
36
+ Push-AppveyorArtifact "HexEditor\projects\2003\ $env:PLATFORM\$env:CONFIGURATION\HexEditor.dll" -FileName HexEditor.dll
37
37
}
38
38
39
39
if ($env:PLATFORM -eq "Win32" ) {
40
- Push-AppveyorArtifact "$env:CONFIGURATION\HexEditor.dll" -FileName HexEditor.dll
40
+ Push-AppveyorArtifact "HexEditor\projects\2003\ $env:CONFIGURATION\HexEditor.dll" -FileName HexEditor.dll
41
41
}
42
42
43
43
if ($($env:APPVEYOR_REPO_TAG) -eq "true" -and $env:CONFIGURATION -eq "Release" -and $env:PLATFORMTOOLSET -eq "v120_xp") {
44
- $ZipFileName = "HexEditor_$($env:APPVEYOR_REPO_TAG_NAME)_$env:PLATFORM.zip"
45
44
if($env:PLATFORM -eq "x64"){
46
- 7z a $ZipFileName $env:PLATFORM\$env:CONFIGURATION\*.dll
45
+ $ZipFileName = "HexEditor_$($env:APPVEYOR_REPO_TAG_NAME)_x64.zip"
46
+ 7z a $ZipFileName HexEditor\projects\2003\$env:PLATFORM\$env:CONFIGURATION\*.dll
47
47
}
48
48
if($env:PLATFORM -eq "Win32"){
49
- 7z a $ZipFileName $env:CONFIGURATION\*.dll
49
+ $ZipFileName = "HexEditor_$($env:APPVEYOR_REPO_TAG_NAME)_x86.zip"
50
+ 7z a $ZipFileName HexEditor\projects\2003\$env:CONFIGURATION\*.dll
50
51
}
51
52
}
52
53
You can’t perform that action at this time.
0 commit comments