.Net Tips – Collating partial class files

Yan Cui

I help clients go faster for less using serverless technologies.

This article is brought to you by

The real-time data platform that empowers developers to build innovative products faster and more reliably than ever before.

Learn more

You know how Visual Studio neatly collates all the relevant files (the XAML and the code behind file in this case) for you whenever you create a new user control or page in WPF:

image

needless to say, in any sizable UI project this makes life hell of a lot easier navigating through the solution!

However, the same support is sadly lacking for normal partial class files.. for instance, if I ever wanted to slice up my class into partial classes in separate files to better organize (and make perusing easier) a bloated class file:

image

Visual Studio by default doesn’t collate the partial class files for you, but there’s a quick and easy (albeit manual) way to do this yourself in a few steps:

1. unload the project and edit the .csproj file

image

2. edit the entries for the files you want to collate to add a DependentUpon child element, e.g.

image

3. save, and reload project

image

Voila!

Whenever you’re ready, here are 4 ways I can help you:

  1. Production-Ready Serverless: Join 20+ AWS Heroes & Community Builders and 1000+ other students in levelling up your serverless game. This is your one-stop shop for quickly levelling up your serverless skills.
  2. Do you want to know how to test serverless architectures with a fast dev & test loop? Check out my latest course, Testing Serverless Architectures and learn the smart way to test serverless.
  3. I help clients launch product ideas, improve their development processes and upskill their teams. If you’d like to work together, then let’s get in touch.
  4. Join my community on Discord, ask questions, and join the discussion on all things AWS and Serverless.

1 thought on “.Net Tips – Collating partial class files”

  1. Pingback: Partial class across projects is NOT ALLOWED | theburningmonk.com

Leave a Comment

Your email address will not be published. Required fields are marked *