-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mannus
committed
Aug 24, 2019
1 parent
5f3368e
commit 071b7e4
Showing
10 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
E22EDA87A4FE0D8B6C120ABC77B5C4024E167472 BikeTouringGIS-1.0.1-full.nupkg 23045464 | ||
B992874A014F9DFE42E02A931F85245C882703EC BikeTouringGIS-1.0.2-full.nupkg 23513877 | ||
DC931F6261B7050624299AFB74064CC977BEE138 BikeTouringGIS-1.0.3-full.nupkg 23555339 | ||
DC931F6261B7050624299AFB74064CC977BEE138 BikeTouringGIS-1.0.3-full.nupkg 23555339 | ||
B631EA62EAA8F22B2957D7C8E53010813E6E35D0 BikeTouringGIS-1.0.4-full.nupkg 23545791 | ||
B631EA62EAA8F22B2957D7C8E53010813E6E35D0 BikeTouringGIS-1.0.4-full.nupkg 23545791 | ||
DF916B5CD7777B6A85855811D19798E63F2B1BEF BikeTouringGIS-1.2.0-full.nupkg 24870890 |
Binary file renamed
BIN
+23.3 MB
NuGet packaging/BikeTouringGIS-1.0.3.nupkg → NuGet packaging/Setup.exe
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
$inputPath = "C:\GitHub\BikeTouringGIS\BikeTouringGIS\bin\Release" | ||
$buildPath = "C:\GitHub\BikeTouringGIS\build" | ||
$outputPath = "C:\GitHub\BikeTouringGIS\NuGet packaging" | ||
[xml]$XmlDocument = Get-Content build\theRightDirection.BikeTouringGIS.nuspec | ||
$version = $XmlDocument.package.metadata.version | ||
Copy-Item -Path $inputPath\* -Exclude *.xml,*.pdb,*.licenses -Destination $buildPath\lib\net45 -Recurse -Force | ||
Copy-Item -Path $inputPath\log4netconfiguration.xml -Destination $buildPath\lib\net45 -Force | ||
.\nuget pack build\theRightDirection.BikeTouringGIS.nuspec -outputdirectory "build" | ||
$nugetPath = Join-Path $env:USERPROFILE ".nuget\packages" | ||
$squirrelPath = Join-Path $nugetPath "squirrel.windows\*\tools\Squirrel.exe" | Convert-Path | Select-Object -Last 1 | ||
& $squirrelPath --releasify $buildPath\BikeTouringGIS.$version.nupkg --no-msi --icon $buildPath\BikeTouringGIS.ico --setupIcon $buildPath\BikeTouringGIS.ico --releaseDir $outputPath | ||
Start-Sleep -Seconds 20 | ||
remove-item -Path "$outputPath\BikeTouringGIS installer.exe" -Force -ErrorAction Ignore | ||
Start-Sleep -Seconds 20 | ||
Rename-Item -Path $outputPath\Setup.exe "$outputPath\BikeTouringGIS installer.exe" |