File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
src/GitExtensions.BundleBackuper Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ This plugin lets you create a .bundle containing all unpublished commits.</Descr
56
56
</Target >
57
57
58
58
<Target Name =" PreBuild" BeforeTargets =" PreBuildEvent" >
59
- <Exec Command =" powershell.exe ..\..\tools\Download-GitExtensions.ps1" />
59
+ <Exec Command =" powershell.exe -ExecutionPolicy Unrestricted ..\..\tools\Download-GitExtensions.ps1" />
60
60
</Target >
61
61
62
62
<Target Name =" SetPackageProperties" BeforeTargets =" GenerateNuspec" >
@@ -80,6 +80,6 @@ This plugin lets you create a .bundle containing all unpublished commits.</Descr
80
80
</Target >
81
81
82
82
<Target Name =" Zip" AfterTargets =" Pack" >
83
- <Exec Command =" powershell $(MSBuildProjectDirectory)\..\..\tools\Zip-GitExtensionsPlugin.ps1 -Version $(PackageVersion) -Configuration $(Configuration)" />
83
+ <Exec Command =" powershell -ExecutionPolicy Unrestricted $(MSBuildProjectDirectory)\..\..\tools\Zip-GitExtensionsPlugin.ps1 -Version $(PackageVersion) -Configuration $(Configuration)" />
84
84
</Target >
85
85
</Project >
Original file line number Diff line number Diff line change
1
+ {
2
+ "profiles" : {
3
+ "GitExtensions.BundleBackuper" : {
4
+ "commandName" : " Executable" ,
5
+ "executablePath" : " $(SolutionDir)\\ references\\ GitExtensions\\ GitExtensions.exe"
6
+ }
7
+ }
8
+ }
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ Set-Location $PSScriptRoot
2
2
3
3
[Net.ServicePointManager ]::SecurityProtocol = [Net.SecurityProtocolType ]::Tls12
4
4
$ExtractRootPath = ' ../references'
5
- $AssetToDownloadName = ' GitExtensions-Portable-3.00.00.02-rc1 .zip' ;
6
- $AssetToDownloadUrl = ' https://github.com/gitextensions/gitextensions/releases/download/v3.00.00-rc1 /GitExtensions-Portable-3.00.00.02-rc1 .zip' ;
5
+ $AssetToDownloadName = ' GitExtensions-Portable-3.0.2.5232 .zip' ;
6
+ $AssetToDownloadUrl = ' https://github.com/gitextensions/gitextensions/releases/download/v3.0.2 /GitExtensions-Portable-3.0.2.5232 .zip' ;
7
7
8
8
if (! ($null -eq $AssetToDownloadUrl ))
9
9
{
You can’t perform that action at this time.
0 commit comments