Compare commits

...

8 Commits

Author SHA1 Message Date
jtalborough
64ba5a9f94 refactor: Update file paths for packaging commands 2024-04-26 12:23:06 -04:00
jtalborough
b9382216c1 ci: Install 7-Zip for packaging 2024-04-26 12:16:34 -04:00
jtalborough
d75d355dc7 ci: Add CPZ and CPLZ to NuGet Package 2024-04-26 12:11:42 -04:00
jtalborough
7277ccc687 style: Update NuGet package source and add NonInteractive 2024-04-26 12:06:41 -04:00
jtalborough
2e4601b5f9 style: update nuget add command order 2024-04-26 11:59:36 -04:00
jtalborough
fe1804f9c7 feat: Inject CPZ into NuGet Package 2024-04-26 10:28:27 -04:00
jtalborough
faa07e682f feat: Add PackageOutputPath to msbuild command 2024-04-26 10:06:56 -04:00
jtalborough
a1af0bf943 feature: include build in nuget package output 2024-04-24 12:08:13 -04:00
2 changed files with 9 additions and 20 deletions

View File

@@ -72,6 +72,12 @@ jobs:
git tag ${{ steps.setVersion.outputs.version }}
git push --tags origin
# Create the release on the source repo
- name: Install 7-Zip
run: choco install 7zip.install -y
- name: Add CPZ and CPLZ to NuGet Package
run: |
7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cpz
7z a PepperDash.Essentials.${{ steps.setVersion.outputs.version }}.nupkg output\**\*.cplz
- name: Create Release
id: create_release
# if: contains(steps.setVersion.outputs.version,'-rc-') ||

View File

@@ -23,26 +23,9 @@
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<None Include="Example Configuration\EssentialsHuddleSpaceRoom\configurationFile-HuddleSpace-2-Source.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Example Configuration\EssentialsHuddleVtc1Room\configurationFile-mockVideoCodec_din-ap3_-_dm4x1.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Example Configuration\SIMPLBridging\configurationFile-dmps3300c-avRouting.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="Example Configuration\SIMPLBridging\SIMPLBridgeExample_configurationFile.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="SGD\PepperDash Essentials iPad.sgd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="SGD\PepperDash Essentials TSW-560.sgd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="SGD\PepperDash Essentials TSW-760.sgd">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<None Include=".\PepperDashEssentials\bin\*.cpz">
<Pack>true</Pack>
<PackagePath>lib/{tfm}</PackagePath>
</None>
</ItemGroup>
<ItemGroup>