Skip to content

Latest commit

 

History

History
65 lines (54 loc) · 1.7 KB

020-project.md

File metadata and controls

65 lines (54 loc) · 1.7 KB

Project file XML settings

  • Enable implicit usings:

    <PropertyGroup>
        <ImplicitUsings>enable</ImplicitUsings>
    </PropertyGroup>
  • Enable nullable reference types

    <PropertyGroup>
        <Nullable>enable</Nullable>
    </PropertyGroup>
  • Set internals visible to an other project

    <ItemGroup>
    	<InternalsVisibleTo Include="ProjectName"/>
    </ItemGroup>
  • Do not append target framework to output path

    <PropertyGroup>
        <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
    </PropertyGroup>
  • Set Assembly version based on build date (year.month.date)

    <PropertyGroup>
        <Version>
            $([System.DateTime]::UtcNow.ToString("yyyy")).$([System.DateTime]::UtcNow.ToString("MM"))
            .$([System.DateTime]::UtcNow.ToString("dd")).0
        </Version>
        <AssemblyVersion>
            $([System.DateTime]::UtcNow.ToString("yyyy")).$([System.DateTime]::UtcNow.ToString("MM"))
            .$([System.DateTime]::UtcNow.ToString("dd")).0
            </AssemblyVersion>
        <FileVersion>
            $([System.DateTime]::UtcNow.ToString("yyyy")).$([System.DateTime]::UtcNow.ToString("MM"))
            .$([System.DateTime]::UtcNow.ToString("dd")).0
        </FileVersion>
    </PropertyGroup>
  • Disable Source Link Source Revision including in Assembly info:

    <PropertyGroup>
        <IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
    </PropertyGroup>
  • Allow Unsafe code:

    <PropertyGroup>
        <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
    </PropertyGroup>