add display names for azure steps

This commit is contained in:
dkanada 2020-04-15 10:35:07 +09:00
parent b2195d0caa
commit ff12635515
4 changed files with 15 additions and 21 deletions

View File

@ -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'

View File

@ -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)' &lt; '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>

View File

@ -1,2 +1,3 @@
# Jellyfin UWP Client
This is a wrapper around Jellyfin's web interface (see https://github.com/jellyfin/jellyfin-web) for UWP devices (Windows 10 & Xbox One)