This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net8.0</TargetFramework> | |
<ImplicitUsings>enable</ImplicitUsings> | |
<Nullable>enable</Nullable> | |
</PropertyGroup> | |
<ItemGroup> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Reflection; | |
namespace System | |
{ | |
/// <summary> | |
/// Extensions of <see cref="Type"/>. | |
/// </summary> | |
internal static class TypeExtensions | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* CLI script to check whether php script paths correspond to class names. | |
* (Name Space File Name Checker) | |
* | |
* Naming of classes and file names should meet this standard proposal: | |
* http://groups.google.com/group/php-standards/web/psr-0-final-proposal | |
* | |
* Usage: | |
* php nsfnchecker.php /path/to/libs [<vendor name>] |