forked from DynamoDS/Dynamo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DYN-7154: missing thumbnail sample files (DynamoDS#15326)
(cherry picked from commit 99aa11d)
- Loading branch information
1 parent
e540896
commit 6b59b6f
Showing
5 changed files
with
156 additions
and
26 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 |
---|---|---|
|
@@ -50,10 +50,19 @@ | |
|
||
|
||
<Target Name="NpmRunBuildHomePage" BeforeTargets="BeforeBuild"> | ||
<PropertyGroup> | ||
<PackageVersion>1.0.15</PackageVersion> | ||
<PackageName>DynamoHome</PackageName> | ||
</PropertyGroup> | ||
<Exec Command="$(PowerShellCommand) -ExecutionPolicy ByPass -Command echo ($(SolutionDir)\pkgexist.ps1 $(PackageName) $(PackageVersion))" ConsoleToMSBuild="true"> | ||
<Output TaskParameter="ConsoleOutput" PropertyName="ShouldInstall" /> | ||
</Exec> | ||
<Message Text="Skipping Install for $(PackageName) $(PackageVersion), package up to date." Condition="!$(ShouldInstall)" Importance="high"></Message> | ||
<!--This command updates the npm registry configuration if necessary--> | ||
<Exec Command="$(PowerShellCommand) -ExecutionPolicy ByPass -Command $(SolutionDir)\setnpmreg.ps1" /> | ||
<!--Download a specific build of the Dynamo Home package from npm--> | ||
<Exec Command="npm pack @dynamods/[email protected]" /> | ||
<Exec Command="npm pack @dynamods/[email protected]" Condition="$(ShouldInstall)"/> | ||
</Target> | ||
|
||
<Target Name="ExtractTGZFileDynamoHome" DependsOnTargets="NpmRunBuildHomePage" BeforeTargets="BeforeBuild"> | ||
|
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
Oops, something went wrong.