ps/Modules/Alkami.PowerShell.ServiceFabric/Alkami.PowerShell.ServiceFabric.pssproj
2023-05-30 22:51:22 -07:00

103 lines
5.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{7ef6be1a-69ce-49ea-975c-1a085d1f1293}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MyApplication</RootNamespace>
<AssemblyName>MyApplication</AssemblyName>
<Name>Alkami.PowerShell.ServiceFabric</Name>
<Author>SRE</Author>
<CompanyName>Alkami Technology</CompanyName>
<Copyright>(c) 2017 Alkami Technology. All rights reserved.</Copyright>
<Description>A set of common functions and filters not typically used directly</Description>
<Guid>5151a169-c763-489e-8213-b437b7a294b1</Guid>
<Version>0.0.0.1</Version>
<PostBuildScript>Invoke-Pester;</PostBuildScript>
<PreBuildScript>..\build-project.ps1 (Join-Path $(SolutionDir) "Alkami.PowerShell.ServiceFabric")</PreBuildScript>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Alkami.Ops.Common\Alkami.Ops.Common.csproj">
<Name>Alkami.Ops.Common</Name>
<Project>{fa9745dd-68ac-4194-9c33-acf19411d357}</Project>
<Private>True</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Compile Include="Alkami.PowerShell.ServiceFabric.psd1" />
<Compile Include="Private\VariableDeclarations.ps1" />
<Compile Include="Public\Clear-AlkamiServiceFabricClusterConnection.ps1" />
<Compile Include="Public\Connect-AlkamiServiceFabricCluster.ps1" />
<Compile Include="Public\Edit-AlkamiServiceFabricPackageLogConfig.ps1" />
<Compile Include="Public\Format-AlkamiEnvironmentName.ps1" />
<Compile Include="Public\Format-AlkamiEnvironmentWorkerNodeType.ps1" />
<Compile Include="Public\Format-AlkamiServiceFabricApplicationName.ps1" />
<Compile Include="Public\Format-AlkamiServiceFabricApplicationName.Tests.ps1" />
<Compile Include="Public\Get-AlkamiConnectionParameters.ps1" />
<Compile Include="Public\Get-AlkamiServiceFabricApplicationInstanceCount.ps1" />
<Compile Include="Public\Get-AlkamiServiceFabricApplications.ps1" />
<Compile Include="Public\Get-AlkamiServiceFabricNode.ps1" />
<Compile Include="Public\Get-AlkamiServiceFabricPackageServiceTypeName.ps1" />
<Compile Include="Public\Get-AlkamiServiceFabricServerCertificateName.ps1" />
<Compile Include="Public\Get-InstalledPackages.ps1" />
<Compile Include="Public\Get-PackageFromProget.ps1" />
<Compile Include="Public\Install-AlkamiServiceFabricPackages.ps1" />
<Compile Include="Public\Install-DeveloperCluster.ps1" />
<Compile Include="Public\Join-AlkamiServiceFabricCluster.ps1" />
<Compile Include="Public\New-AlkamiServiceFabricCluster.ps1" />
<Compile Include="Public\New-AlkamiServiceFabricEnvironmentNodeType.ps1" />
<Compile Include="Public\New-AlkamiServiceFabricPackage.ps1" />
<Compile Include="Public\New-AlkamiServiceFabricReliableServicePackage.ps1" />
<Compile Include="Public\Open-ServiceFabricDashboard.ps1" />
<Compile Include="Public\Publish-AlkamiServiceFabricPackages.ps1" />
<Compile Include="Public\Publish-AlkamiServiceFabricPackages.Tests.ps1" />
<Compile Include="Public\Remove-AlkamiServiceFabricApplication.ps1" />
<Compile Include="Public\Remove-AlkamiServiceFabricApplications.ps1" />
<Compile Include="Public\Remove-AlkamiServiceFabricCluster.ps1" />
<Compile Include="Public\Remove-AlkamiServiceFabricMultipleMajorVersions.ps1" />
<Compile Include="Public\Restart-AlkamiServiceFabricApplication.ps1" />
<Compile Include="Public\Restart-AlkamiServiceFabricApplications.ps1" />
<Compile Include="Public\Set-AlkamiServiceFabricApplicationInstanceCount.ps1" />
<Compile Include="Public\Start-AlkamiServiceFabricClusterUpgrade.ps1" />
<Compile Include="Public\Test-AlkamiServiceFabricEnvironmentNodeTypeExists.ps1" />
<Compile Include="Public\Unregister-AlkamiServiceFabricApplicationTypeOlderVersions.ps1" />
<Compile Include="Public\Wait-AlkamiServiceFabricUpgrades.ps1" />
<Compile Include="tools\chocolateyInstall.ps1" />
<Compile Include="tools\chocolateyUninstall.ps1" />
</ItemGroup>
<ItemGroup>
<Folder Include="Private\" />
<Folder Include="Public\" />
<Folder Include="ServiceFabricConfigTemplates\" />
<Folder Include="tools\" />
</ItemGroup>
<ItemGroup>
<Content Include="Alkami.PowerShell.ServiceFabric.nuspec" />
<Content Include="ServiceFabricConfigTemplates\AlkamiDevClusterConfig.json" />
<Content Include="ServiceFabricConfigTemplates\ApplicationManifest.xml" />
<Content Include="ServiceFabricConfigTemplates\ClusterConfig.json" />
<Content Include="ServiceFabricConfigTemplates\ServiceManifest.xml" />
<Content Include="ServiceFabricConfigTemplates\Settings.xml" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Target Name="Build" />
<Import Project="$(MSBuildExtensionsPath)\PowerShell Tools for Visual Studio\PowerShellTools.targets" Condition="Exists('$(MSBuildExtensionsPath)\PowerShell Tools for Visual Studio\PowerShellTools.targets')" />
</Project>