Skip to content

Commit

Permalink
Merge pull request #85 from hismightiness/tasks/rename-build-packages
Browse files Browse the repository at this point in the history
Updated package names for builds
  • Loading branch information
Will Strohl authored Feb 14, 2018
2 parents 6f199ea + 4371130 commit dc1cc13
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6,313 deletions.
4 changes: 2 additions & 2 deletions .build/ModulePackage.targets
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
<Output TaskParameter="Include" ItemName="OutputContent" />
</CreateItem>

<Zip Files="@(OutputContent)" WorkingDirectory="$(ModulesBuildFolder)" ZipFileName="$(InstallFolder)\$(PackageName)_$(Version)_Install.$(Extension)" ParallelCompression="False" />
<Zip Files="@(OutputContent)" WorkingDirectory="$(ModulesBuildFolder)" ZipFileName="$(InstallFolder)\$(PackageName)_Core_$(Version)_Install.$(Extension)" ParallelCompression="False" />


<RemoveDir Directories ="$(CoreBuildFolder)" />
Expand All @@ -179,7 +179,7 @@
<CreateItem Include="$(DebugBuildFolder)\**\*.*">
<Output TaskParameter="Include" ItemName="DebugOutputContent" />
</CreateItem>
<Zip Files="@(DebugOutputContent)" WorkingDirectory="$(DebugBuildFolder)" ZipFileName="$(InstallFolder)\$(PackageName)_$(Version)_DebugSymbols.$(Extension)" ParallelCompression="False" />
<Zip Files="@(DebugOutputContent)" WorkingDirectory="$(DebugBuildFolder)" ZipFileName="$(InstallFolder)\$(PackageName)_Core_$(Version)_DebugSymbols.$(Extension)" ParallelCompression="False" />


<RemoveDir Directories ="$(DebugBuildFolder)" />
Expand Down
14 changes: 7 additions & 7 deletions WebDeploy/Build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
<Copy SourceFiles="Tropical_Container_01.00.00_Install.zip" DestinationFolder="$(WebDeployBuildFolder)\Hotcakes\Install\Container" />


<Copy SourceFiles="$(InstallFolder)\HotcakesCommerce_$(Version)_Install.zip" DestinationFolder="$(WebDeployBuildFolder)\Hotcakes\Install\Module\" />
<Copy SourceFiles="$(InstallFolder)\HotcakesCommerce_Core_$(Version)_Install.zip" DestinationFolder="$(WebDeployBuildFolder)\Hotcakes\Install\Module\" />
<Copy SourceFiles="$(RootFolder)\References\Dnn\System.Web.Abstractions.dll" DestinationFolder="$(WebDeployBuildFolder)\Hotcakes\bin" />
<Copy SourceFiles="$(RootFolder)\References\Dnn\System.Web.Routing.dll" DestinationFolder="$(WebDeployBuildFolder)\Hotcakes\bin" />

Expand Down Expand Up @@ -147,7 +147,7 @@
<ItemGroup>
<WebDeploy Include="$(WebDeployBuildFolder)\**" />
</ItemGroup>
<Zip Files="@(WebDeploy)" WorkingDirectory="$(WebDeployBuildFolder)" ZipFileName="$(InstallFolder)\HotcakesCommerce_$(Version)_Deploy.zip" ParallelCompression="False" />
<Zip Files="@(WebDeploy)" WorkingDirectory="$(WebDeployBuildFolder)" ZipFileName="$(InstallFolder)\HotcakesCommerce_CMS_$(Version)_Deploy.zip" ParallelCompression="False" />
</Target>

<Target Name="CreateWPIFeed">
Expand All @@ -157,10 +157,10 @@
<PropertyGroup>
<FileHash />
<FileSize />
<FileUrl>https://hotcakes.org/Portals/0/Downloads/$(Version)/HotcakesCommerce_$(Version)_Deploy.zip</FileUrl>
<FileUrl>https://upendoventures.com/Portals/0/Downloads/$(Version)/HotcakesCommerce_CMS_$(Version)_Deploy.zip</FileUrl>
</PropertyGroup>

<GenerateSha1Hash InputFile="$(InstallFolder)\HotcakesCommerce_$(Version)_Deploy.zip" >
<GenerateSha1Hash InputFile="$(InstallFolder)\HotcakesCommerce_CMS_$(Version)_Deploy.zip" >
<Output TaskParameter="FileHash" PropertyName="FileHash"/>
</GenerateSha1Hash>

Expand All @@ -170,7 +170,7 @@
XPath="//ns:feed/ns:entry[ns:productId/text()='Hotcakes']/ns:installers/ns:installer[ns:id='1']/ns:installerFile/ns:sha1"
Value="$(FileHash)" />

<GetFileSize InputFile="$(InstallFolder)\HotcakesCommerce_$(Version)_Deploy.zip" >
<GetFileSize InputFile="$(InstallFolder)\HotcakesCommerce_CMS_$(Version)_Deploy.zip" >
<Output TaskParameter="FileSize" PropertyName="FileSize"/>
</GetFileSize>

Expand Down Expand Up @@ -282,7 +282,7 @@
<!-- Duplicate WebDeploy Package for customization -->
<CallTarget Targets="CleanSource" />
<Unzip ZipFileName="$(DnnPackage)" TargetDirectory="$(SourceBuildFolder)\Website" />
<Copy SourceFiles="$(InstallFolder)\HotcakesCommerce_$(Version)_Install.zip" DestinationFolder="$(SourceBuildFolder)\Website\Install\Module\" />
<Copy SourceFiles="$(InstallFolder)\HotcakesCommerce_Core_$(Version)_Install.zip" DestinationFolder="$(SourceBuildFolder)\Website\Install\Module\" />
<CallTarget Targets="BrandSourcePackage" />
<CallTarget Targets="PackageSource" />
</Target>
Expand All @@ -292,7 +292,7 @@
<ItemGroup>
<SourceFiles Include="$(SourceBuildFolder)\**" />
</ItemGroup>
<Zip Files="@(SourceFiles)" WorkingDirectory="$(SourceBuildFolder)" ZipFileName="$(InstallFolder)\HotcakesCommerce_$(Version)_Source.zip" ParallelCompression="False" />
<Zip Files="@(SourceFiles)" WorkingDirectory="$(SourceBuildFolder)" ZipFileName="$(InstallFolder)\HotcakesCommerce_Core_$(Version)_Source.zip" ParallelCompression="False" />
</Target>

</Project>
Loading

0 comments on commit dc1cc13

Please sign in to comment.