-
Notifications
You must be signed in to change notification settings - Fork 19
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
2 changed files
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Version>1.0.0-local</Version> | ||
<InformationalVersion>$(Version)</InformationalVersion> | ||
<Authors>PepperDash Technologies</Authors> | ||
<Company>PepperDash Technologies</Company> | ||
<Product>PepperDash Essentials Plugin Template</Product> | ||
<Copyright>Copyright © 2024</Copyright> | ||
<RepositoryUrl>https://github.com/PepperDash/EssentialsPluginTemplate.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>Crestron; 4series</PackageTags> | ||
<PackageOutputPath>../output</PackageOutputPath> | ||
<GeneratePackageOnBuild>True</GeneratePackageOnBuild> | ||
<PackageLicenseFile>LICENSE.md</PackageLicenseFile> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="..\LICENSE.md" Pack="true" PackagePath=""/> | ||
<None Include="..\README.md" Pack="true" PackagePath=""/> | ||
</ItemGroup> | ||
</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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<Project> | ||
<ItemGroup> | ||
<None Include="$(TargetDir)\$(TargetName).$(Version).cpz" Condition="$(ProjectType) == 'Program'"> | ||
<Pack>true</Pack> | ||
<PackagePath>content;</PackagePath> | ||
</None> | ||
<None Include="$(PackageOutputPath)\$(TargetName).$(Version).cplz" Condition="$(ProjectType) == 'ProgramLibrary'"> | ||
<Pack>true</Pack> | ||
<PackagePath>content;</PackagePath> | ||
</None> | ||
</ItemGroup> | ||
<Target Name="Create CPLZ" AfterTargets="Build; Rebuild" Condition="$(ProjectType) == 'ProgramLibrary'"> | ||
<Message Text="Creating CPLZ"></Message> | ||
<MakeDir Directories="$(PackageOutputPath)" Condition="!Exists($(PackageOutputPath))"></MakeDir> | ||
<ZipDirectory SourceDirectory="$(TargetDir)" DestinationFile="$(PackageOutputPath)\$(TargetName).$(Version).cplz" Overwrite="true"/> | ||
</Target> | ||
<Target Name="Clean CPLZ" AfterTargets="AfterClean" Condition="$(ProjectType) == 'ProgramLibrary'"> | ||
<Delete Files="$(PackageOutputPath)\$(TargetName).$(Version).cplz"/> | ||
</Target> | ||
</Project> |