quantum-space-buddies/QSB/Utility/IsExternalInit.cs

12 lines
365 B
C#
Raw Normal View History

2022-03-02 19:46:33 -08:00
namespace System.Runtime.CompilerServices;
public static class IsExternalInit
2021-12-20 18:35:38 -08:00
{
2022-03-02 19:46:33 -08:00
/*
* You might think this class isn't used. And you'd be right!
* But if you delete this file, the project will refuse to compile.
* This is because IsExternalInit is only included in net5 and above.
* So we have to create this dummy file to make it happy.
* Yay.
*/
2021-12-20 18:35:38 -08:00
}