From 4edc72c5f7939621465afaaa3e643d4a1e6782af Mon Sep 17 00:00:00 2001 From: Markus Hofknecht Date: Sun, 21 Jun 2020 13:31:04 +0200 Subject: [PATCH] [Bug] Fix Pipeline error NETSDK1047 #108 --- Properties/AssemblyInfo.cs | 4 ++-- azure-pipelines.yml | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index ab2a527..eca423a 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -35,5 +35,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.10.3.1")] -[assembly: AssemblyFileVersion("0.10.3.1")] +[assembly: AssemblyVersion("0.11.0.0")] +[assembly: AssemblyFileVersion("0.11.0.0")] diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 77126bc..c62e270 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -65,6 +65,8 @@ steps: inputs: solution: '**/*.sln' msbuildArguments: '-p:Configuration=Release -p:Platform="Any CPU"' +# msbuildArguments: '-p:Configuration=Release -p:Platform=x64' +# msbuildArguments: '-p:Configuration=Release -p:Platform=x86' #- task: CopyFiles@2 # displayName: 'Copy Files to: $(build.artifactstagingdirectory)' @@ -80,7 +82,9 @@ steps: - task: ArchiveFiles@2 displayName: 'Archive $(Build.ArtifactStagingDirectory)' inputs: - rootFolderOrFile: '$(Build.SourcesDirectory)\bin\Any CPU\Release\netcoreapp3.1\' + rootFolderOrFile: '$(Build.SourcesDirectory)\bin\AnyCPU\Release\netcoreapp3.1\' +# rootFolderOrFile: '$(Build.SourcesDirectory)\bin\x64\Release\netcoreapp3.1\' +# rootFolderOrFile: '$(Build.SourcesDirectory)\bin\x86\Release\netcoreapp3.1\' includeRootFolder: false archiveFile: '$(Build.ArtifactStagingDirectory)/SystemTrayMenu-$(AssemblyInfo.AssemblyVersion).zip'