This repository was archived by the owner on Jul 5, 2024. It is now read-only.
forked from Squirrel/Squirrel.Windows
-
Notifications
You must be signed in to change notification settings - Fork 38
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
Showing
6 changed files
with
51 additions
and
41 deletions.
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
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 @@ | ||
powershell -ExecutionPolicy Bypass -File ./pack.ps1 |
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,11 @@ | ||
Set-Location "$PSScriptRoot" | ||
$ErrorActionPreference = "Stop" | ||
|
||
# get current git version | ||
$gitVerJson = (&nbgv get-version -f json) | ConvertFrom-Json | ||
$version = $gitVerJson.SimpleVersion + $gitVerJson.PrereleaseVersion | ||
|
||
& "$PSScriptRoot\.nuget\NuGet.exe" pack "$PSScriptRoot\src\Clowd.Squirrel.nuspec" ` | ||
-BasePath "$PSScriptRoot\src" ` | ||
-OutputDirectory "$PSScriptRoot\build" ` | ||
-Version $version |
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,33 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<version>0.0.0</version> <!-- should be set on the command line --> | ||
<authors>GitHub, Anaïs Betts, Caelan Sayler, others</authors> | ||
<owners>Caelan Sayler</owners> | ||
<licenseUrl>https://github.com/clowd/Clowd.Squirrel/blob/master/COPYING</licenseUrl> | ||
<projectUrl>https://github.com/clowd/Clowd.Squirrel</projectUrl> | ||
<iconUrl>https://user-images.githubusercontent.com/1287295/131249078-9e131e51-0b66-4dc7-8c0a-99cbea6bcf80.png</iconUrl> | ||
|
||
<dependencies> | ||
<dependency id="Microsoft.CSharp" version="4.7.0" /> | ||
<dependency id="Microsoft.Web.Xdt" version="3.1.0" /> | ||
<dependency id="System.ComponentModel.Annotations" version="5.0.0" /> | ||
<dependency id="System.IO.Packaging" version="5.0.0" /> | ||
<dependency id="Microsoft.Win32.Registry" version="5.0.0" /> | ||
<dependency id="Mono.Cecil" version="0.11.4" /> | ||
<dependency id="SharpCompress" version="0.28.3" /> | ||
<dependency id="System.Drawing.Common" version="5.0.2" /> | ||
</dependencies> | ||
|
||
<id>Clowd.Squirrel</id> | ||
<title>Squirrel for Windows</title> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>An installation and update framework for Windows applications</description> | ||
<copyright>Copyright © GitHub 2017, Caelan Sayler 2021</copyright> | ||
</metadata> | ||
<files> | ||
<file src="..\build\Release\netstandard2.0\*" target="lib\netstandard2.0" /> | ||
<file src="..\build\publish\*" target="tools" /> | ||
<file src="Clowd.Squirrel.props" target="build" /> | ||
</files> | ||
</package> |
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
This file was deleted.
Oops, something went wrong.