Return to site

Microsoft Project For Mac Os

broken image


MS Project was designed and optimized specifically for the Windows operating system. Building project management software for Macs wasn't Microsoft's concern. In fact, the last time that there was a version of Microsoft Project for Apple users was back in 1993 with Microsoft Project 4.0 for Mac. Sadly, that doesn't work now!

  1. Microsoft Project For Mac Os
  2. Ms Project 2013
  3. Microsoft Project For Mac Os X Free Download

In this video tutorial, we will learn how to download Microsoft Office 2019 for Mac/iMac/MacBook Pro/MacOS/MacBook Air and Apple. Download Updated Lin. While Microsoft doesn't have a desktop version of Visio for macOS, you can still work on Visio files on a Mac in your web browser. Visio for the web lets you view, create, and edit diagrams in the Safari or Chrome browser on your Mac. About Microsoft Project. Microsoft Project is a project management software designed for enterprises of all sizes. The tool includes project scheduling features, which allow management to create a project schedule, define and assign each project task, manage employee scheduling, and track project status. Mac OS, Linux, HP-UX, AIX, Solaris. Teamwork (Free Forever Plan) Although Teamwork (formerly known as Teamwork Projects) is a.

-->

In this article, you'll learn how to install .NET Core on macOS. .NET Core is made up of the runtime and the SDK. The runtime is used to run a .NET Core app and may or may not be included with the app. The SDK is used to create .NET Core apps and libraries. The .NET Core runtime is always installed with the SDK.

The latest version of .NET Core is 3.1.

Supported releases

The following table is a list of currently supported .NET Core releases and the versions of macOS they're supported on. These versions remain supported either the version of .NET Core reaches end-of-support.

  • A ✔️ indicates that the version of .NET Core is still supported.
  • A ❌ indicates that the version of .NET Core isn't supported.
Operating System.NET Core 2.1.NET Core 3.1.NET 5 Preview
macOS 10.15 'Catalina'✔️ 2.1 (Release notes)✔️ 3.1 (Release notes)✔️ 5.0 Preview (Release notes)
macOS 10.14 'Mojave'✔️ 2.1 (Release notes)✔️ 3.1 (Release notes)✔️ 5.0 Preview (Release notes)
macOS 10.13 'High Sierra'✔️ 2.1 (Release notes)✔️ 3.1 (Release notes)✔️ 5.0 Preview (Release notes)
macOS 10.12 'Sierra'✔️ 2.1 (Release notes)❌ 3.1 (Release notes)❌ 5.0 Preview (Release notes)

Unsupported releases

The following versions of .NET Core are ❌ no longer supported. The downloads for these still remain published:

  • 3.0 (Release notes)
  • 2.2 (Release notes)
  • 2.0 (Release notes)

Runtime information

The runtime is used to run apps created with .NET Core. When an app author publishes an app, they can include the runtime with their app. If they don't include the runtime, it's up to the user to install the runtime.

There are three different runtimes you can install on macOS:

ASP.NET Core runtime
Runs ASP.NET Core apps. Includes the .NET Core runtime.

.NET Core runtime
This runtime is the simplest runtime and doesn't include any other runtime. It's highly recommended that you install ASP.NET Core runtime for the best compatibility with .NET Core apps.

SDK information

The SDK is used to build and publish .NET Core apps and libraries. Installing the SDK includes both runtimes: ASP.NET Core and .NET Core.

Dependencies

.NET Core is supported on the following macOS releases:

.NET Core VersionmacOSArchitectures
3.1High Sierra (10.13+)x64More information
3.0High Sierra (10.13+)x64More information
2.2Sierra (10.12+)x64More information
2.1Sierra (10.12+)x64More information

Beginning with macOS Catalina (version 10.15), all software built after June 1, 2019 that is distributed with Developer ID, must be notarized. This requirement applies to the .NET Core runtime, .NET Core SDK, and software created with .NET Core.

The installers for .NET Core (both runtime and SDK) versions 3.1, 3.0, and 2.1, have been notarized since February 18, 2020. Prior released versions aren't notarized. If you run a non-notarized app, you'll see an error similar to the following image:

For more information about how enforced-notarization affects .NET Core (and your .NET Core apps), see Working with macOS Catalina Notarization.

libgdiplus

.NET Core applications that use the System.Drawing.Common assembly require libgdiplus to be installed.

An easy way to obtain libgdiplus is by using the Homebrew ('brew') package manager for macOS. After installing brew, install libgdiplus by executing the following commands at a Terminal (command) prompt:

Install with an installer

macOS has standalone installers that can be used to install the .NET Core 3.1 SDK:

Download and manually install

As an alternative to the macOS installers for .NET Core, you can download and manually install the SDK and runtime. Manual install is usually performed as part of continuous integration testing. For a developer or user, it's generally better to use an installer.

If you install .NET Core SDK, you don't need to install the corresponding runtime. First, download a binary release for either the SDK or the runtime from one of the following sites:

  • ✔️ .NET 5.0 preview downloads
  • ✔️ .NET Core 3.1 downloads
  • ✔️ .NET Core 2.1 downloads

Next, extract the downloaded file and use the export command to set variables used by .NET Core and then ensure .NET Core is in PATH.

To extract the runtime and make the .NET Core CLI commands available at the terminal, first download a .NET Core binary release. Then, open a terminal and run the following commands from the directory where the file was saved. The archive file name may be different depending on what you downloaded.

Use the following command to extract the runtime:

Use the following command to extract the SDK:

Tip

The preceding export commands only make the .NET Core CLI commands available for the terminal session in which it was run.

You can edit your shell profile to permanently add the commands. There are a number of different shells available for Linux and each has a different profile. For example:

  • Bash Shell: ~/.bash_profile, ~/.bashrc
  • Korn Shell: ~/.kshrc or .profile
  • Z Shell: ~/.zshrc or .zprofile

Edit the appropriate source file for your shell and add :$HOME/dotnet to the end of the existing PATH statement. If no PATH statement is included, add a new line with export PATH=$PATH:$HOME/dotnet.

Also, add export DOTNET_ROOT=$HOME/dotnet to the end of the file.

This approach lets you install different versions into separate locations and choose explicitly which one to use by which application.

Install with Visual Studio for Mac

Visual Studio for Mac installs the .NET Core SDK when the .NET Core workload is selected. To get started with .NET Core development on macOS, see Install Visual Studio 2019 for Mac. For the latest release, .NET Core 3.1, you must use the Visual Studio for Mac 8.4.

Install alongside Visual Studio Code

Visual Studio Code is a powerful and lightweight source code editor that runs on your desktop. Visual Studio Code is available for Windows, macOS, and Linux.

While Visual Studio Code doesn't come with an automated .NET Core installer like Visual Studio does, adding .NET Core support is simple.

Microsoft project for macbook
  1. Download and install Visual Studio Code.
  2. Download and install the .NET Core SDK.
  3. Install the C# extension from the Visual Studio Code marketplace.

Install with bash automation

The dotnet-install scripts are used for automation and non-admin installs of the runtime. You can download the script from the dotnet-install script reference page.

The script defaults to installing the latest long term support (LTS) version, which is .NET Core 3.1. You can choose a specific release by specifying the current switch. Include the runtime switch to install a runtime. Otherwise, the script installs the SDK.

Note

The command above installs the ASP.NET Core runtime for maximum compatability. The ASP.NET Core runtime also includes the standard .NET Core runtime.

Docker

Containers provide a lightweight way to isolate your application from the rest of the host system. Containers on the same machine share just the kernel and use resources given to your application.

.NET Core can run in a Docker container. Official .NET Core Docker images are published to the Microsoft Container Registry (MCR) and are discoverable at the Microsoft .NET Core Docker Hub repository. Each repository contains images for different combinations of the .NET (SDK or Runtime) and OS that you can use.

Microsoft provides images that are tailored for specific scenarios. For example, the ASP.NET Core repository provides images that are built for running ASP.NET Core apps in production.

For more information about using .NET Core in a Docker container, see Introduction to .NET and Docker and Samples.

Next steps

  • How to check if .NET Core is already installed.
  • Working with macOS Catalina notarization.
  • Tutorial: Get started on macOS.
  • Tutorial: Create a new app with Visual Studio Code.
  • Tutorial: Containerize a .NET Core app.
-->

Originally published: October 29, 2018
Updated: July 17, 2020

Please go here to search for your product's lifecycle.

The following list represents products retiring or reaching the end of support in 2020. Upon retirement or end of support, there will be no new security updates, non-security updates, free or paid assisted support options or online technical content updates. Go here to learn about Fixed and Modern Lifecycle policies and service packs.

For a comprehensive list of Microsoft products and their lifecycle policy timelines, including migration options, please search the Microsoft Lifecycle Product Database.

If you have any questions regarding support for a product, please contact your Microsoft Account Representative. If you need technical support, visit the Microsoft Support website.

Products governed by the Modern Policy

Microsoft Project For Mac Os

The following products, governed by the Modern Policy, will retire in 2020.

Products (Modern Policy)Retirement
System Center, version 1807 (all editions)January 24, 2020
Azure Container Service
Windows Analytics
January 31, 2020
Visio Services in SharePoint OnlineSeptember 30, 2020
Windows 10, version 1709 (Enterprise, Education, IoT Enterprise)October 13, 2020
Windows 10, version 1803 (Enterprise, Education, IoT Enterprise)
Windows 10, version 1809 (Home, Pro, Pro Education, Pro for Workstation, IoT Core)
Windows Server version 1809 (Datacenter Core, Standard Core)
November 10, 2020
Configuration Manager (current branch), version 1810December 1, 2020
Windows 10, version 1903 (Enterprise, Home, Pro, Pro Education, Pro for Workstations, IoT Enterprise)
Windows Server, version 1903 (Datacenter, Standard)
December 8, 2020
InMage/ASR ScoutDecember 31, 2020

Products governed by the Fixed Policy

The following products, governed by the Fixed Policy, will end support in 2020.

Product (Fixed Policy)End of Support
Dynamics NAV 2009 R2
Expression Blend 3
Expression Design 3
Expression Encoder 3
Expression Studio 3
Expression Web 3
Hyper-V Server 2008
Hyper-V Server 2008 R2
Windows 7
Windows Embedded Handheld 6.5
Windows Server 2008 R2
Windows Server 2008
Windows Server Update Services 3.0
Windows Storage Server 2008 (all editions)
January 14, 2020
Internet Explorer 10January 31, 2020
Forefront Unified Access Gateway 2010
Forefront Threat Management Gateway 2010 (all editions)
Microsoft HPC Pack 2008 (all editions)
Windows Identity Foundation
April 14, 2020
WunderlistMay 6, 2020
Expression Encoder 4
Expression Studio 4
Expression Web 4
Expression Studio Ultimate 4
Microsoft Application Virtualization 4.6 for Terminal Services
Microsoft Application Virtualization 4.6 for Windows Desktops
Microsoft Application Virtualization 4.6 for Remote Desktop Services
Microsoft Application Virtualization 4.6 Sequencer
Microsoft Application Virtualization Hosting 4.6 for Windows Desktops
Visual Studio Team Foundation Server 2010
Visual Studio 2010 (all editions)
Visual Basic 2010 Express
Visual C# 2010 Express
Visual C++ 2010 Express
Visual Web Developer 2010 Express
Windows MultiPoint Server 2010 (all editions)
July 14, 2020
Internet Information Services Smooth Streaming Client 1.0
Microsoft Report Viewer Redistributable 2010
System Center Service Manager 2010
Windows Communication Foundation RIA Services
September 8, 2020
Access 2010
Dynamics GP 2010
Excel 2010
Excel Mobile 2010
Exchange Server 2010 (all editions)
FAST Search Server 2010 (all editions)
Groove Server 2010
Office 2010 (all editions)
OneNote 2010
PowerPoint 2010
Project 2010
Publisher 2010
Search Server 2010
System Center Data Protection Manager 2010
System Center Essentials 2010
Visio 2010 (all editions)
Word 2010
Windows Embedded Standard 7
Office 2016 for Mac (all editions)
Excel 2016 for Mac
Outlook 2016 for Mac
PowerPoint 2016 for Mac
Word 2016 for Mac
October 13, 2020

Service Packs

For
  1. Download and install Visual Studio Code.
  2. Download and install the .NET Core SDK.
  3. Install the C# extension from the Visual Studio Code marketplace.

Install with bash automation

The dotnet-install scripts are used for automation and non-admin installs of the runtime. You can download the script from the dotnet-install script reference page.

The script defaults to installing the latest long term support (LTS) version, which is .NET Core 3.1. You can choose a specific release by specifying the current switch. Include the runtime switch to install a runtime. Otherwise, the script installs the SDK.

Note

The command above installs the ASP.NET Core runtime for maximum compatability. The ASP.NET Core runtime also includes the standard .NET Core runtime.

Docker

Containers provide a lightweight way to isolate your application from the rest of the host system. Containers on the same machine share just the kernel and use resources given to your application.

.NET Core can run in a Docker container. Official .NET Core Docker images are published to the Microsoft Container Registry (MCR) and are discoverable at the Microsoft .NET Core Docker Hub repository. Each repository contains images for different combinations of the .NET (SDK or Runtime) and OS that you can use.

Microsoft provides images that are tailored for specific scenarios. For example, the ASP.NET Core repository provides images that are built for running ASP.NET Core apps in production.

For more information about using .NET Core in a Docker container, see Introduction to .NET and Docker and Samples.

Next steps

  • How to check if .NET Core is already installed.
  • Working with macOS Catalina notarization.
  • Tutorial: Get started on macOS.
  • Tutorial: Create a new app with Visual Studio Code.
  • Tutorial: Containerize a .NET Core app.
-->

Originally published: October 29, 2018
Updated: July 17, 2020

Please go here to search for your product's lifecycle.

The following list represents products retiring or reaching the end of support in 2020. Upon retirement or end of support, there will be no new security updates, non-security updates, free or paid assisted support options or online technical content updates. Go here to learn about Fixed and Modern Lifecycle policies and service packs.

For a comprehensive list of Microsoft products and their lifecycle policy timelines, including migration options, please search the Microsoft Lifecycle Product Database.

If you have any questions regarding support for a product, please contact your Microsoft Account Representative. If you need technical support, visit the Microsoft Support website.

Products governed by the Modern Policy

The following products, governed by the Modern Policy, will retire in 2020.

Products (Modern Policy)Retirement
System Center, version 1807 (all editions)January 24, 2020
Azure Container Service
Windows Analytics
January 31, 2020
Visio Services in SharePoint OnlineSeptember 30, 2020
Windows 10, version 1709 (Enterprise, Education, IoT Enterprise)October 13, 2020
Windows 10, version 1803 (Enterprise, Education, IoT Enterprise)
Windows 10, version 1809 (Home, Pro, Pro Education, Pro for Workstation, IoT Core)
Windows Server version 1809 (Datacenter Core, Standard Core)
November 10, 2020
Configuration Manager (current branch), version 1810December 1, 2020
Windows 10, version 1903 (Enterprise, Home, Pro, Pro Education, Pro for Workstations, IoT Enterprise)
Windows Server, version 1903 (Datacenter, Standard)
December 8, 2020
InMage/ASR ScoutDecember 31, 2020

Products governed by the Fixed Policy

The following products, governed by the Fixed Policy, will end support in 2020.

Product (Fixed Policy)End of Support
Dynamics NAV 2009 R2
Expression Blend 3
Expression Design 3
Expression Encoder 3
Expression Studio 3
Expression Web 3
Hyper-V Server 2008
Hyper-V Server 2008 R2
Windows 7
Windows Embedded Handheld 6.5
Windows Server 2008 R2
Windows Server 2008
Windows Server Update Services 3.0
Windows Storage Server 2008 (all editions)
January 14, 2020
Internet Explorer 10January 31, 2020
Forefront Unified Access Gateway 2010
Forefront Threat Management Gateway 2010 (all editions)
Microsoft HPC Pack 2008 (all editions)
Windows Identity Foundation
April 14, 2020
WunderlistMay 6, 2020
Expression Encoder 4
Expression Studio 4
Expression Web 4
Expression Studio Ultimate 4
Microsoft Application Virtualization 4.6 for Terminal Services
Microsoft Application Virtualization 4.6 for Windows Desktops
Microsoft Application Virtualization 4.6 for Remote Desktop Services
Microsoft Application Virtualization 4.6 Sequencer
Microsoft Application Virtualization Hosting 4.6 for Windows Desktops
Visual Studio Team Foundation Server 2010
Visual Studio 2010 (all editions)
Visual Basic 2010 Express
Visual C# 2010 Express
Visual C++ 2010 Express
Visual Web Developer 2010 Express
Windows MultiPoint Server 2010 (all editions)
July 14, 2020
Internet Information Services Smooth Streaming Client 1.0
Microsoft Report Viewer Redistributable 2010
System Center Service Manager 2010
Windows Communication Foundation RIA Services
September 8, 2020
Access 2010
Dynamics GP 2010
Excel 2010
Excel Mobile 2010
Exchange Server 2010 (all editions)
FAST Search Server 2010 (all editions)
Groove Server 2010
Office 2010 (all editions)
OneNote 2010
PowerPoint 2010
Project 2010
Publisher 2010
Search Server 2010
System Center Data Protection Manager 2010
System Center Essentials 2010
Visio 2010 (all editions)
Word 2010
Windows Embedded Standard 7
Office 2016 for Mac (all editions)
Excel 2016 for Mac
Outlook 2016 for Mac
PowerPoint 2016 for Mac
Word 2016 for Mac
October 13, 2020

Service Packs

The following service packs apply to Fixed Policy products, and will end support in 2020.

Service PackEnd of Support
Dynamics 365 Business Central on-premisesApril 14, 2020
Microsoft Identity Manager 2016 Service Pack 1November 4, 2020

Products moving to Extended Support

The following products will be moving from Mainstream to Extended Support in 2020. Extended Support includes security updates at no cost, and paid non-security updates and support. Additionally, Microsoft will not accept requests for design changes or new features during the Extended Support phase.

ProductEnd of Mainstream Support
Dynamics C5 2015
Dynamics CRM 2015
Dynamics SL 2015
Dynamics NAV 2015
January 14, 2020
Cloud Platform System
Cloud Platform System Standard
Dynamics GP 2015
Dynamics GP 2015 R2
Microsoft User Experience Virtualization 2.1 Service Pack 1
April 14, 2020
Azure StorSimple 8000 Series
Microsoft Azure StorSimple 1200 Series
StorSimple Data Manager
July 1, 2020
Access 2016
Excel 2016
Exchange Server 2016 (Enterprise, Standard)
Office Home and Business 2016
Office Home and Student 2016
Office Professional 2016
Office Professional Plus 2016
Office Standard 2016
Project Professional 2016
Project Standard 2016
Microsoft Publisher 2016
Outlook 2016
PowerPoint 2016
Skype for Business 2016
Skype for Business Server 2015
Visio Professional 2016
Visio Standard 2016
Visual Studio 2015 (all editions)
Visual Studio Team Foundation Server 2015 (all editions)
Windows 10 Enterprise 2015 LTSB
Windows 10 IoT Enterprise 2015 LTSB
Windows Defender Exploit Guard
Word 2016
October 13, 2020

Change Log

September 2019 editsADDED: Windows Analytics, Windows Storage Server 2008 (all editions), Internet Explorer 10, StorSimple Data Manager, Visio Services in SharePoint Online
ADDED: Windows 10, version 1903 (Enterprise, Home, Pro, Pro for Workstations, IoT Enterprise) and Windows Server, version 1903 (Datacenter, Standard, IoT Enterprise)
EDITED: Exchange Server 2010 (all editions) support extended from January 14, 2020 to October 13, 2020

January 2020 edits
ADDED: Exchange Server 2010, Microsoft Application Virtualization 4.6 for Remote Desktop Services, Expression Studio 4, Windows 10 Pro Education,
EDITED: Visual Basic 2010 Express, Visual Basic C# 2010 Express, Visual Basic C++ 2010 Express, Visual Web Developer 2010 Express, Expression Encoder 4, Expression Web 4 date updated to July 14, 2020
EDITED: OneNote 2016 Mainstream Support extended from October 13, 2020 to October 10, 2023
EDITED: specific editions removed, 'all editions' added to parent listing

February 2020 edits
ADDED: Dynamics 365 Business Central on-premises, Microsoft Identity Manager 2016 Service Pack 1

Microsoft Project For Mac Os

April 2020 edits
EDITED: Windows 10, version 1709 (Enterprise, Education, IoT Enterprise) extended to October 13, 2020
EDITED: Windows 10, version 1809 (Home, Pro, Pro Education, Pro for Workstation, IoT Core), Windows Server version 1809 (Datacenter Core, Standard Core) extended to November 10, 2020
REMOVED: PerformancePoint Services in SharePoint Server 2010, Project Server 2010, SharePoint Server 2010 (support extended from October 13, 2020 to April 13, 2021)

Ms Project 2013

June 2020 edits
REMOVED: Windows Defender Antivirus for Windows 10

July 2020 edits
ADDED: Expression Studio Ultimate 4
EDITED: Visual Basic 2010 Express, Visual C# 2010 Express, and Visual C++ 2010 Express corrections

Microsoft Project For Mac Os X Free Download






broken image