Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Commit a39244c

Browse files
authored
Azure Pipeline setup (#110)
1 parent e31aad7 commit a39244c

2 files changed

Lines changed: 18 additions & 1 deletion

File tree

azure-pipelines.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# .NET Desktop
2+
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
3+
# Add steps that publish symbols, save build artifacts, and more:
4+
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
5+
6+
trigger:
7+
- master
8+
9+
pool:
10+
vmImage: 'Windows-2019'
11+
12+
variables:
13+
buildConfiguration: 'Release'
14+
15+
steps:
16+
- script: dotnet build --configuration $(buildConfiguration)
17+
displayName: 'dotnet build $(buildConfiguration)'

test/PartnerCenter.Tests.Integration/PartnerCenter.Tests.Integration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>netcoreapp2.1</TargetFramework>
5-
5+
66
<IsPackable>false</IsPackable>
77

88
<AssemblyName>Microsoft.Store.PartnerCenter.Tests.Integration</AssemblyName>

0 commit comments

Comments
 (0)