MSBuild.NET.DefaultItems
0.8.0
See the version list below for details.
Requires NuGet 4.0 or higher.
<Sdk Name="MSBuild.NET.DefaultItems" Version="0.8.0" />
MSBuild.NET.DefaultItems
Summary
An MSBuild Extension package for including various platforms' (Android, Apple, Tizen, Web, Windows) default build items etc... in .NET projects.
Package Name: MSBuild.NET.DefaultItems
Getting started (VS 15.6+)
Visual Studio 2017 Update 6 (aka v15.6) includes support for SDK's resolved from NuGet. That makes using the custom SDKs much easier.
Using the SDK
Create a new project
- from
dotnet new
templates. - With your existing SDK-style project.
- from
Add
<Import Sdk="MSBuild.NET.DefaultItems" Project="Items.{props|targets}" />
to the top and bottom of the file between the<Project>
root elements.You have to tell MSBuild that the
Sdk
should resolve from NuGet by- Adding a
global.json
containing the SDK name and version. - Appending a version info to the
Sdk
attribute value.
- Adding a
Then you can enable the default items through a set of properties for each supported project types.
The final project should look like this:
<Project Sdk="Microsoft.NET.Sdk">
<Import Sdk="MSBuild.NET.DefaultItems" Project="Items.props"/>
<PropertyGroup>
<TargetFrameworks>net48;net5.0</TargetFrameworks>
<EnableDefaultXamlItems>true</EnableDefaultXamlItems>
</PropertyGroup>
<Import Sdk="MSBuild.NET.DefaultItems" Project="Items.targets"/>
</Project>
You can put the global.json
file next to your solution:
{
"msbuild-sdks": {
"MSBuild.NET.DefaultItems": "0.8.0"
}
}
Then, all of your project files, from that directory forward, uses the version from the global.json
file.
This would be a preferred solution for all the projects in your solution.
Then again, you might want to override the version for just one project OR if you have only one project in your solution (without adding global.json
), you can do so like this:
<Project Sdk="Microsoft.NET.Sdk">
<Import Sdk="MSBuild.NET.DefaultItems/0.8.0" Project="Items.props"/>
<PropertyGroup>
<TargetFrameworks>net48;net5.0</TargetFrameworks>
<EnableDefaultXamlItems>true</EnableDefaultXamlItems>
</PropertyGroup>
<Import Sdk="MSBuild.NET.DefaultItems/0.8.0" Project="Items.targets"/>
</Project>
That's it. You do not need to specify the UWP or Tizen meta-packages as they'll be automatically included.
After that, you can use the Restore
, Build
, Pack
targets to restore packages, build the project and create NuGet packages. E.g.: msbuild /t:Pack ...
Important to Note
- It will only work with Visual Studio IDE (Windows/Mac) as it requires the desktop
msbuild
and the target Platform SDKs which are not cross-platform. - It might work in Visual Studio Code, but you have to configure build tasks in
launch.json
to use desktopmsbuild
to build. - You must install the tools of the platforms you intend to build. For Xamarin, that means the Xamarin Workload; for UWP install those tools as well.
More information on how SDK's are resolved can be found here.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial support for .NET v5+ SDKs.