mirror of
https://github.com/jellyfin/jellyfin-uwp.git
synced 2024-11-27 00:00:33 +00:00
add display names for azure steps
This commit is contained in:
parent
b2195d0caa
commit
ff12635515
@ -16,26 +16,30 @@ pool:
|
||||
vmImage: 'windows-latest'
|
||||
|
||||
variables:
|
||||
solution: '**/*.sln'
|
||||
buildPlatform: 'x86|x64|ARM|ARM64'
|
||||
buildConfiguration: 'Release'
|
||||
appxPackageDir: '$(build.artifactStagingDirectory)\AppxPackages\\'
|
||||
Solution: '**/*.sln'
|
||||
BuildPlatform: 'x86|x64|ARM|ARM64'
|
||||
BuildConfiguration: 'Release'
|
||||
AppxDirectory: '$(Build.ArtifactStagingDirectory)/AppxPackages'
|
||||
|
||||
steps:
|
||||
- task: NuGetToolInstaller@1
|
||||
displayName: 'Install Nuget'
|
||||
|
||||
- task: NuGetCommand@2
|
||||
displayName: 'Restore Dependencies'
|
||||
inputs:
|
||||
restoreSolution: '$(solution)'
|
||||
restoreSolution: '$(Solution)'
|
||||
|
||||
- task: VSBuild@1
|
||||
displayName: 'Build Client'
|
||||
inputs:
|
||||
solution: '$(solution)'
|
||||
configuration: '$(buildConfiguration)'
|
||||
msbuildArgs: '/p:AppxBundlePlatforms="$(buildPlatform)" /p:AppxPackageDir="$(appxPackageDir)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
|
||||
solution: '$(Solution)'
|
||||
configuration: '$(BuildConfiguration)'
|
||||
msbuildArgs: '/p:AppxBundlePlatforms="$(BuildPlatform)" /p:AppxPackageDir="$(AppxDirectory)" /p:AppxBundle=Always /p:UapAppxPackageBuildMode=StoreUpload'
|
||||
|
||||
- task: PublishBuildArtifacts@1
|
||||
displayName: 'Publish Client'
|
||||
inputs:
|
||||
PathtoPublish: '$(Build.ArtifactStagingDirectory)'
|
||||
ArtifactName: 'jellyfin-uwp'
|
||||
publishLocation: 'Container'
|
||||
publishLocation: 'Container'
|
||||
|
@ -18,8 +18,7 @@
|
||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||
<AppxPackageSigningEnabled>True</AppxPackageSigningEnabled>
|
||||
<PackageCertificateThumbprint>
|
||||
</PackageCertificateThumbprint>
|
||||
<PackageCertificateThumbprint></PackageCertificateThumbprint>
|
||||
<PackageCertificateKeyFile>Jellyfin_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
|
||||
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
|
||||
@ -244,15 +243,5 @@
|
||||
<ItemGroup>
|
||||
<None Include="Jellyfin_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user