Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: $(Date:yyyMMdd).$(Rev:r)
pr:
- 'master'
jobs:
- job: Debug
pool: 'Hosted VS2017'
steps:
- task: MSBuild@1
inputs:
solution: 'BuildAndTest.proj'
configuration: 'Debug'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'xUnit'
testResultsFiles: 'bin\Debug\TestResults.xml'
searchFolder: '$(System.DefaultWorkingDirectory)'
testRunTitle: '$(Build.DefinitionName)_$(Build.BuildNumber)_Debug'

- job: Release
pool: 'Hosted VS2017'
steps:
- task: MSBuild@1
inputs:
solution: 'BuildAndTest.proj'
configuration: 'Release'
- task: PublishTestResults@2
inputs:
testResultsFormat: 'xUnit'
testResultsFiles: 'bin\Release\TestResults.xml'
searchFolder: '$(System.DefaultWorkingDirectory)'
testRunTitle: '$(Build.DefinitionName)_$(Build.BuildNumber)_Release'

- job: DesktopDebug
pool: 'Hosted VS2017'
steps:
- task: MSBuild@1
inputs:
solution: 'BuildAndTest.proj'
configuration: 'Desktop.Debug'


- job: DesktopRelease
pool: 'Hosted VS2017'
steps:
- task: MSBuild@1
inputs:
solution: 'BuildAndTest.proj'
configuration: 'Desktop.Release'
6 changes: 3 additions & 3 deletions build/version.settings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
<PropertyGroup>
<!--SxS: These three properties should be changed at the start of a new version, VersionZeroYear should be the year
before the start of the project. When updating the version, also update MIEngine\metadata.json.-->
<MajorVersion>14</MajorVersion>
<MinorVersion>0</MinorVersion>
<VersionZeroYear>2013</VersionZeroYear>
<MajorVersion>16</MajorVersion>
Comment thread
WardenGnaw marked this conversation as resolved.
<MinorVersion>1</MinorVersion>
<VersionZeroYear>2018</VersionZeroYear>

<!--Compute the major and minor build number-->
<!--Team build passes the build number in the BUILD_BUILDNUMBER variable. It has the format 'Master_20140922.4' where
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"correlationId": "595D6107-E618-4BD9-85A0-C323EFC400D1",
"owner":"miengine",
"version": "14.0"
"version": "16.0"
}