Nowadays SDK Visual Studio project format is mainly used by .NET Core projects. It is lean, offers a lot of great features and is generally awesome. But can we use it in traditional ASP.NET Sitecore solutions? What are the benefits and pitfalls?
Luckily I am not alone with this thought: Anders Laub has already setup an example of a Helix solution using the SDK project format: https://github.com/LaubPlusCo/helix-msbuild-example , many thanks for that! Do check it out (make sure you have Visual Studio 2017 version 15.6 or later). Not only demonstrates this example a Helix setup with the SDK project format, but also it adds support for:
- Automatic publishing on build, which is very handy during development
- XML config transformations
- With some modifications you can add support for publishing to multiple deployment targets (e.g website/xconnect/etc). More on this here: https://github.com/Sitecore/Helix.Docs/issues/22
- The solution is structured in a very clean way: common project file contents (e.g build properties, project includes, common Nuget references, etc) are separated out to a shared location via the Directory.Build.props and Directory.Build.targets files: https://docs.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2019#directorybuildprops-and-directorybuildtargets
- All of the above is done using default MSBuild functionality, no custom code whatsoever
In this post I will share my experiences and spread the word. But first of all, let’s look at the benefits the SDK project format brings.
Benefits of the SDK project format
So as not to repeat what’s already there in the internet, I will refer to this post, which well describes the main differences and the benefits: https://www.michaeltaylorp3.net/migrating-to-sdk-project-format/
I will highlight a couple of points though:
Unlike the “old” verbose .csproj format, the SDK project format is very lean. You don’t have to explicitly list files and folders within the project: all relevant files under project root folder are assumed to be included. This drastically decreases the .csproj file size and simplifies source control merges.
This is an example how tiny a .csproj file for your Helix module could look like:
The SDK project format offers new awesome features. For example the
Microsoft.Build.CentralPackageVersions
MSBuild project SDK allows you to manage your NuGet package versions in one place: https://github.com/microsoft/MSBuildSdks/tree/master/src/CentralPackageVersionsImagine how easy it becomes to update a Nuget package across your solution, for example bump Sitecore Nuget versions during Sitecore upgrade – just update one file. Not to mention, it works blazing fast!
For example, this is how your Helix module Nuget references could look like (the actual versions would be specified in a solution-wide file used by all projects):
Only the PackageReference Nuget packages format is supported. But it is a good thing, since PackageReference format brings many benefits, you can find more information here https://community.sitecore.net/technical_blogs/b/technical-marketing/posts/sitecore-9-1-nuget-changes-and-you and here https://www.konabos.com/blog/sitecore-nuget-package-references
And last but not the least, to edit a .csproj file you don’t need to unload the project!
Helix and SDK project format
The “traditional” Habitat and HabitatHome examples use the Web Application project templates based on the “old” .csproj format. Each Helix module is typically a Web Application. Semantically this is wrong, since modules are not independent web apps and cannot be run separately, however, this does bring several benefits:
Scaffolding. For example, for Web Application type of projects Visual Studio provides a simple way to create Controllers and Views. This is convenient and saves some time, but comparing to the benefits of the SDK format, losing this is not a big sacrifice.
Publishing. Web Application projects import
Microsoft.WebApplication.targets
, making it possible to use web publish functionality to be able to deploy your Helix modules. Also you get some tooling support, e.g in Visual Studio you can publish specific Helix module via right click => publish, which can be handy if you don’t want to republish the whole solution every time.
If you follow the https://github.com/LaubPlusCo/helix-msbuild-example example, then you get automatic publishing on build. This works by importing the sameMicrosoft.WebApplication.targets
into the projects (this is done solution-wide via the Directory.Build.targets file). You will lose the right click => publish feature though, but it is compensated by being able to build a specific project, which would auto-publish the changes.
Besides these two I do not see any other reasons why Web Application project template is used for Helix modules.
Note: The SDK project format also has a Web SDK variation (Microsoft.NET.Sdk.Web
), but it is meant for ASP.NET Core.
Limitations of SDK project format
While working with a Helix solution setup using SDK project format I have not noticed any considerable downsides which would overweight the benefits. However, there are some things you need to be aware of:
- To be able to use all the benefits, you need to make sure you understand the basics of MsBuild, e.g what Properties and Targets are, how to conditionally load them, etc.
- Nested files are not supported. For instance transformation files like these would be shown as a flat list (so this makes only visual difference, not functional)
- Sometimes tooling is not that mature. For example, if you use
Microsoft.Build.CentralPackageVersions
SDK and install a Nuget package to some project, this will add a version attribute to the PackageReference, which will cause an error. Luckily, the Nuget team is already looking into this: https://github.com/microsoft/MSBuildSdks/issues/62
Obviously, these are not stoppers.