File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,28 @@ stages:
150150 displayName : Publish Amethyst - Signed
151151 artifact : signed
152152
153+ - task : VSBuild@1
154+ displayName : Build (publish) Amethyst - Unpackaged
155+ inputs :
156+ platform : " $(buildPlatform)"
157+ solution : " $(solution)"
158+ configuration : " $(buildConfiguration)"
159+ msbuildArgs :
160+ ' /t:Amethyst /p:Platform=$(buildPlatform) /p:PlatformTarget=$(buildPlatform) /p:Configuration=$(buildConfiguration) /p:GenerateAppxPackageOnBuild=false
161+ /p:RuntimeIdentifier=win10-$(buildPlatform) /t:Amethyst /p:PublishProfile=Amethyst\Properties\PublishProfiles\win10-$(buildPlatform).pubxml
162+ /p:WindowsPackageType=None /p:IncludeNativeLibrariesForSelfExtract=true'
163+
164+ - task : CopyFiles@2
165+ displayName : Pack Amethyst - Unpackaged
166+ inputs :
167+ Contents : ' Amethyst\bin\$(buildPlatform)\$(buildConfiguration)\net7.0\win10-$(buildPlatform)\**'
168+ TargetFolder : ' $(Build.ArtifactStagingDirectory)\pack'
169+ preserveTimestamp : true
170+
171+ - publish : " $(Build.ArtifactStagingDirectory)/pack"
172+ displayName : Publish Amethyst - Unpackaged
173+ artifact : pack
174+
153175 - stage : Stage
154176 dependsOn : Build
155177 condition : and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
You can’t perform that action at this time.
0 commit comments