Skip to content

Commit

Permalink
build fixes for PR #574
Browse files Browse the repository at this point in the history
  • Loading branch information
markheath committed Jan 31, 2020
1 parent 4803dea commit ccf3731
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Windows.Forms;
using System.Windows;
using System.Windows.Input;
using NAudio.MediaFoundation;
using NAudio.Wave;
Expand Down Expand Up @@ -77,7 +77,7 @@ private bool TryOpenInputFile(string file)
}
catch (Exception e)
{
MessageBox.Show(String.Format("Not a supported input file ({0})", e.Message));
MessageBox.Show($"Not a supported input file ({e.Message})");
}
return isValid;
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Windows.Forms;
using System.Windows;
using System.Windows.Threading;
using NAudio.Wave;
using NAudioWpfDemo.ViewModel;
Expand Down
3 changes: 2 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@
# Build and run tests for .NET Desktop or Windows classic desktop solutions.
# Add steps that publish symbols, save build artifacts, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/windows/dot-net
# vmImage options: https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#use-a-microsoft-hosted-agent

pool:
vmImage: 'VS2017-Win2016'
vmImage: 'windows-2019'

variables:
solution: '**/*.sln'
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"msbuild-sdks": {
"MSBuild.Sdk.Extras": "2.0.31"
"MSBuild.Sdk.Extras": "2.0.54"
}
}

0 comments on commit ccf3731

Please sign in to comment.