File tree Expand file tree Collapse file tree 5 files changed +8
-14
lines changed
.azure-pipelines/templates/windows
shared/Git-Credential-Manager Expand file tree Collapse file tree 5 files changed +8
-14
lines changed Original file line number Diff line number Diff line change 1
1
steps :
2
2
- script : |
3
3
xcopy "out\windows\Installer.Windows\bin\$(configuration)\net461" "$(Build.StagingDirectory)\publish\"
4
- xcopy "out\windows\Payload.Windows\bin\$(configuration)\net461\win-x86 " "$(Build.StagingDirectory)\publish\payload\"
4
+ xcopy "out\windows\Payload.Windows\bin\$(configuration)\net461\win-x64 " "$(Build.StagingDirectory)\publish\payload\"
5
5
mkdir "$(Build.StagingDirectory)\publish\payload.sym\"
6
6
move "$(Build.StagingDirectory)\publish\payload\*.pdb" "$(Build.StagingDirectory)\publish\payload.sym\"
7
7
displayName: Prepare final build artifact
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<OutputType >Exe</OutputType >
5
- <TargetFramework >netcoreapp2.1</TargetFramework >
6
- <TargetFramework Condition =" '$(OSPlatform)'=='windows'" >net461</ TargetFramework >
7
- <RuntimeIdentifiers >win-x86 ;osx-x64</RuntimeIdentifiers >
5
+ <TargetFrameworks >netcoreapp2.1</TargetFrameworks >
6
+ <TargetFrameworks Condition =" '$(OSPlatform)'=='windows'" >net461;netcoreapp2.1</ TargetFrameworks >
7
+ <RuntimeIdentifiers >win-x64 ;osx-x64</RuntimeIdentifiers >
8
8
<AssemblyName >git-credential-manager-core</AssemblyName >
9
9
<RootNamespace >Microsoft.Git.CredentialManager</RootNamespace >
10
10
<ApplicationIcon >$(RepoAssetsPath)gcmicon.ico</ApplicationIcon >
13
13
<TargetLatestRuntimePatch >true</TargetLatestRuntimePatch >
14
14
</PropertyGroup >
15
15
16
- <!-- On Windows we target 32-bit because the WinForms authentication helpers are 32-bit
17
- and also need to use the native libgit2 library (we use the 32-bit version on Windows) -->
18
- <PropertyGroup Condition =" '$(OSPlatform)'=='windows'" >
19
- <Prefer32Bit >true</Prefer32Bit >
20
- </PropertyGroup >
21
-
22
16
<ItemGroup >
23
17
<ProjectReference Include =" ..\GitHub\GitHub.csproj" />
24
18
<ProjectReference Include =" ..\Microsoft.AzureRepos\Microsoft.AzureRepos.csproj" />
Original file line number Diff line number Diff line change 5
5
<PropertyGroup >
6
6
<TargetFramework >net461</TargetFramework >
7
7
<GenerateAssemblyInfo >false</GenerateAssemblyInfo >
8
- <PayloadPath >$(PlatformOutPath)Payload.Windows\bin\$(Configuration)\net461\win-x86 </PayloadPath >
8
+ <PayloadPath >$(PlatformOutPath)Payload.Windows\bin\$(Configuration)\net461\win-x64 </PayloadPath >
9
9
<EnableDefaultItems >false</EnableDefaultItems >
10
10
</PropertyGroup >
11
11
29
29
before we attempt to sign any files or validate they exist. -->
30
30
<Target Name =" CreateFilesToSignItems" DependsOnTargets =" GetBuildVersion" BeforeTargets =" PrepareForRun" >
31
31
<ItemGroup >
32
- <FilesToSign Include =" $(OutDir)gcmcore-windows-x86 -$(BuildVersion).exe" >
32
+ <FilesToSign Include =" $(OutDir)gcmcore-win-x64 -$(BuildVersion).exe" >
33
33
<Authenticode >Microsoft400</Authenticode >
34
34
<InProject >false</InProject >
35
35
</FilesToSign >
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ AppCopyright={#GcmCopyright}
47
47
AppReadmeFile = {#GcmReadme}
48
48
VersionInfoVersion = {#GcmVersion}
49
49
LicenseFile = {#GcmRepoRoot}\LICENSE
50
- OutputBaseFilename = gcmcore-windows- x86 -{#GcmVersion}
50
+ OutputBaseFilename = gcmcore-win- x64 -{#GcmVersion}
51
51
DefaultDirName = {pf} \{#GcmName}
52
52
Compression = lzma2
53
53
SolidCompression = yes
Original file line number Diff line number Diff line change 4
4
5
5
<PropertyGroup >
6
6
<TargetFramework >net461</TargetFramework >
7
- <RuntimeIdentifier >win-x86 </RuntimeIdentifier >
7
+ <RuntimeIdentifier >win-x64 </RuntimeIdentifier >
8
8
<GenerateAssemblyInfo >false</GenerateAssemblyInfo >
9
9
</PropertyGroup >
10
10
You can’t perform that action at this time.
0 commit comments