-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #503 from HotcakesCommerce/development
Syncing branches
- Loading branch information
Showing
16 changed files
with
2,379 additions
and
2,327 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,86 +1,86 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
<PropertyGroup> | ||
<LangVersion>C# 10.0</LangVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\.build</MSBuildCommunityTasksPath> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.targets"/> | ||
|
||
<!-- Version Number --> | ||
<PropertyGroup Condition=" '$(BUILD_NUMBER)' == '' "> | ||
<Version>03.08.01</Version> | ||
<FileVersion>01.00.00</FileVersion> | ||
<InformationalVersion>01.00.00</InformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(BUILD_NUMBER)' != '' "> | ||
<!-- Build Server Number --> | ||
<Version>03.08.01</Version> | ||
<FileVersion>$(BUILD_NUMBER)</FileVersion> | ||
<InformationalVersion>$(BUILD_NUMBER)</InformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(BuildConfiguration)' == '' "> | ||
<BuildConfiguration>Release</BuildConfiguration> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(BuildPlatform)' == '' "> | ||
<BuildPlatform>Any CPU</BuildPlatform> | ||
</PropertyGroup> | ||
|
||
<Target Name="Clean"> | ||
<Message Importance="High" Text="======================================= Starting Target Clean ==========================================" /> | ||
<DeleteTree Directories="**\obj\**;**\bin\**" /> | ||
</Target> | ||
|
||
<Target Name="Version"> | ||
<Message Importance="High" Text="======================================= Starting Target Version ==========================================" /> | ||
<Time> | ||
<Output TaskParameter="Year" PropertyName="Year" /> | ||
</Time> | ||
|
||
<Message Text="Version: $(Version)"/> | ||
|
||
<Attrib Files="$(MSBuildProjectDirectory)\GlobalAssemblyInfo.cs" ReadOnly="False" /> | ||
|
||
<AssemblyInfo CodeLanguage="CS" | ||
OutputFile="$(MSBuildProjectDirectory)\GlobalAssemblyInfo.cs" | ||
GenerateClass="true" | ||
AssemblyCopyright="Copyright © $(Year). All rights reserved." | ||
AssemblyConfiguration="$(BuildConfiguration)" | ||
AssemblyVersion="$(Version)" | ||
AssemblyFileVersion="$(FileVersion)" | ||
AssemblyInformationalVersion="$(InformationalVersion)" /> | ||
</Target> | ||
|
||
<Target Name="Compile" DependsOnTargets="Clean;Version"> | ||
<Message Importance="High" Text="======================================= Starting Target Compile ==========================================" /> | ||
<ItemGroup> | ||
<ProjectFiles Include="$(MSBuildProjectDirectory)\Hotcakes.sln" /> | ||
</ItemGroup> | ||
|
||
<MSBuild Projects="@(ProjectFiles)" Properties="Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);RootFolder=$(MSBuildProjectDirectory)" /> | ||
</Target> | ||
|
||
<Target Name="BuildModule" DependsOnTargets="Compile"> | ||
<Message Importance="High" Text="======================================= Starting Target BuildModule ==========================================" /> | ||
<!-- Code placeholder if we package module separately --> | ||
</Target> | ||
|
||
|
||
|
||
<Target Name="Build"> | ||
<Message Importance="High" Text="======================================= Starting Target Build ==========================================" /> | ||
<CallTarget Targets="BuildModule" /> | ||
|
||
<MSBuild Projects="DevSamples\Build.proj" Properties="RootFolder=$(MSBuildProjectDirectory);Version=$(Version)" /> | ||
<MSBuild Projects="WebDeploy\Build.proj" Properties="RootFolder=$(MSBuildProjectDirectory);Version=$(Version)" /> | ||
|
||
<!-- For Testing commented removing of _Build--> | ||
<RemoveDir Directories="_Build" /> | ||
</Target> | ||
|
||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="15.0"> | ||
<PropertyGroup> | ||
<LangVersion>C# 10.0</LangVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<MSBuildCommunityTasksPath>$(MSBuildProjectDirectory)\.build</MSBuildCommunityTasksPath> | ||
</PropertyGroup> | ||
|
||
<Import Project="$(MSBuildCommunityTasksPath)\MSBuild.Community.Tasks.targets"/> | ||
|
||
<!-- Version Number --> | ||
<PropertyGroup Condition=" '$(BUILD_NUMBER)' == '' "> | ||
<Version>03.08.02</Version> | ||
<FileVersion>01.00.00</FileVersion> | ||
<InformationalVersion>01.00.00</InformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(BUILD_NUMBER)' != '' "> | ||
<!-- Build Server Number --> | ||
<Version>03.08.02</Version> | ||
<FileVersion>$(BUILD_NUMBER)</FileVersion> | ||
<InformationalVersion>$(BUILD_NUMBER)</InformationalVersion> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(BuildConfiguration)' == '' "> | ||
<BuildConfiguration>Release</BuildConfiguration> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(BuildPlatform)' == '' "> | ||
<BuildPlatform>Any CPU</BuildPlatform> | ||
</PropertyGroup> | ||
|
||
<Target Name="Clean"> | ||
<Message Importance="High" Text="======================================= Starting Target Clean ==========================================" /> | ||
<DeleteTree Directories="**\obj\**;**\bin\**" /> | ||
</Target> | ||
|
||
<Target Name="Version"> | ||
<Message Importance="High" Text="======================================= Starting Target Version ==========================================" /> | ||
<Time> | ||
<Output TaskParameter="Year" PropertyName="Year" /> | ||
</Time> | ||
|
||
<Message Text="Version: $(Version)"/> | ||
|
||
<Attrib Files="$(MSBuildProjectDirectory)\GlobalAssemblyInfo.cs" ReadOnly="False" /> | ||
|
||
<AssemblyInfo CodeLanguage="CS" | ||
OutputFile="$(MSBuildProjectDirectory)\GlobalAssemblyInfo.cs" | ||
GenerateClass="true" | ||
AssemblyCopyright="Copyright © $(Year). All rights reserved." | ||
AssemblyConfiguration="$(BuildConfiguration)" | ||
AssemblyVersion="$(Version)" | ||
AssemblyFileVersion="$(FileVersion)" | ||
AssemblyInformationalVersion="$(InformationalVersion)" /> | ||
</Target> | ||
|
||
<Target Name="Compile" DependsOnTargets="Clean;Version"> | ||
<Message Importance="High" Text="======================================= Starting Target Compile ==========================================" /> | ||
<ItemGroup> | ||
<ProjectFiles Include="$(MSBuildProjectDirectory)\Hotcakes.sln" /> | ||
</ItemGroup> | ||
|
||
<MSBuild Projects="@(ProjectFiles)" Properties="Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);RootFolder=$(MSBuildProjectDirectory)" /> | ||
</Target> | ||
|
||
<Target Name="BuildModule" DependsOnTargets="Compile"> | ||
<Message Importance="High" Text="======================================= Starting Target BuildModule ==========================================" /> | ||
<!-- Code placeholder if we package module separately --> | ||
</Target> | ||
|
||
|
||
|
||
<Target Name="Build"> | ||
<Message Importance="High" Text="======================================= Starting Target Build ==========================================" /> | ||
<CallTarget Targets="BuildModule" /> | ||
|
||
<MSBuild Projects="DevSamples\Build.proj" Properties="RootFolder=$(MSBuildProjectDirectory);Version=$(Version)" /> | ||
<MSBuild Projects="WebDeploy\Build.proj" Properties="RootFolder=$(MSBuildProjectDirectory);Version=$(Version)" /> | ||
|
||
<!-- For Testing commented removing of _Build--> | ||
<RemoveDir Directories="_Build" /> | ||
</Target> | ||
|
||
</Project> |
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
using System; | ||
using System.Reflection; | ||
using System.Resources; | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: AssemblyCompany("Upendo Ventures, LLC")] | ||
[assembly: AssemblyProduct("Hotcakes Commerce")] | ||
[assembly: AssemblyCopyright("Copyright © Upendo Ventures, LLC")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: CLSCompliant(false)] | ||
[assembly: ComVisible(false)] | ||
|
||
[assembly: AssemblyVersion("3.08.01")] | ||
[assembly: AssemblyDelaySign(false)] | ||
[assembly: AssemblyKeyFile("")] | ||
[assembly: AssemblyKeyName("")] | ||
|
||
using System; | ||
using System.Reflection; | ||
using System.Resources; | ||
using System.Runtime.InteropServices; | ||
|
||
[assembly: AssemblyCompany("Upendo Ventures, LLC")] | ||
[assembly: AssemblyProduct("Hotcakes Commerce")] | ||
[assembly: AssemblyCopyright("Copyright © Upendo Ventures, LLC")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
[assembly: CLSCompliant(false)] | ||
[assembly: ComVisible(false)] | ||
|
||
[assembly: AssemblyVersion("3.08.02")] | ||
[assembly: AssemblyDelaySign(false)] | ||
[assembly: AssemblyKeyFile("")] | ||
[assembly: AssemblyKeyName("")] | ||
|
||
[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.MainAssembly)] |
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
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
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.