# .NET Framework Targeting Pack Nuget Packages
These packages enable building .NET Framework projects on any machine with at least MSBuild or the .NET Core SDK installed.
The following scenarios and benefits are enabled for .NET Framework projects:
- Build without requiring admin operations to install pre-requisites such as [Visual Studio](https://visualstudio.microsoft.com/vs/) or [.NET Framework targeting packs](https://dotnet.microsoft.com/download/visual-studio-sdks).
- Build libraries on any operating system supported by the .NET Core SDK.
- Build Mono-based projects.
## Usage
### .NET Core project
This sample uses a multi-targeting ClassLibrary project, that can be created using `dotnet new classlib`.
Change `TargetFramework` property to `TargetFrameworks` and add a new .NET Framework target, like in the following example:
```xml
netstandard2.0;net472
```
Add Package reference:
```xml
```
Build as usual:
```console
dotnet build
```
### SDK-style project
Add the `TargetFramework` property and a `PackageReference` like in the following example `csproj` file:
```xml
Exe
net472
```
### Classic-style project
1. Add `PackageReference` to your `csproj` file, the same way as in the SDK-style sample above.
2. Add or modify the `TargetFrameworkVersion` property in your *csproj* file:
```xml
v4.7.2
```
### Building your .NET Framework (SDK and Classic) project
1. Restore NuGet packages:
```console
msbuild /t:restore
```
2. Build the project:
```console
msbuild
```
## Package location
https://www.nuget.org/packages/Microsoft.NETFramework.ReferenceAssemblies
## Latest release
Version: 1.0.0
Date: Sun, 05 May 2019 23:37:33 GMT