Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgraded to Mono 6.10.0.105, msbuild 16.6 and added missing targets #1854

Merged
merged 5 commits into from
Jul 19, 2020
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
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
vmImage: "macOS-10.15"
dependsOn: GitVersion
variables:
MONO_VERSION: 6.8.0
MONO_VERSION: 6.10.0
steps:
- template: ./.pipelines/init.yml
parameters:
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
vmImage: "Ubuntu-18.04"
dependsOn: GitVersion
variables:
MONO_VERSION: 6.8.0
MONO_VERSION: 6.10.0
steps:
- template: ./.pipelines/init.yml
parameters:
Expand All @@ -90,7 +90,7 @@ jobs:
- script: |
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 3FA7E0328081BFF6A14DA29AA6A19B38D3D831EF
sudo apt install apt-transport-https ca-certificates
echo "deb https://download.mono-project.com/repo/ubuntu stable-xenial/snapshots/$MONO_VERSION.105 main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
echo "deb https://download.mono-project.com/repo/ubuntu stable-bionic/snapshots/$MONO_VERSION.105 main" | sudo tee /etc/apt/sources.list.d/mono-official-stable.list
sudo apt update
sudo apt install mono-devel
sudo apt install msbuild
Expand Down
2 changes: 2 additions & 0 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,9 @@ Task("CreateMSBuildFolder")
"Microsoft.CSharp.Mono.targets",
"Microsoft.CSharp.targets",
"Microsoft.Data.Entity.targets",
"Microsoft.Managed.After.targets",
"Microsoft.Managed.targets",
"Microsoft.Managed.Before.targets",
"Microsoft.NET.props",
"Microsoft.NETFramework.CurrentVersion.props",
"Microsoft.NETFramework.CurrentVersion.targets",
Expand Down
2 changes: 1 addition & 1 deletion build/Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">

<PropertyGroup>
<MSBuildPackageVersion>16.5.0</MSBuildPackageVersion>
<MSBuildPackageVersion>16.6.0</MSBuildPackageVersion>
<NuGetPackageVersion>5.2.0</NuGetPackageVersion>
<RoslynPackageVersion>3.8.0-1.20357.3</RoslynPackageVersion>
<XunitPackageVersion>2.4.0</XunitPackageVersion>
Expand Down
10 changes: 5 additions & 5 deletions tools/packages.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Cake" version="0.37.0" />
<package id="Microsoft.Build" version="16.5.0" />
<package id="Microsoft.Build.Framework" version="16.5.0" />
<package id="Microsoft.Build.Runtime" version="16.5.0" />
<package id="Microsoft.Build.Tasks.Core" version="16.5.0" />
<package id="Microsoft.Build.Utilities.Core" version="16.5.0" />
<package id="Microsoft.Build" version="16.6.0" />
<package id="Microsoft.Build.Framework" version="16.6.0" />
<package id="Microsoft.Build.Runtime" version="16.6.0" />
<package id="Microsoft.Build.Tasks.Core" version="16.6.0" />
<package id="Microsoft.Build.Utilities.Core" version="16.6.0" />
<package id="Microsoft.Net.Compilers" version="3.5.0" />
<package id="Microsoft.DotNet.MSBuildSdkResolver" version="3.1.200-preview.20126.2" />
<package id="Microsoft.Build.NuGetSdkResolver" version="5.6.0-preview.2.6508" />
Expand Down