https://discord.umbraco.com logo
``` <!-- when packing via IDE have debug store e...
# package-development
m
Copy code
<!-- when packing via IDE have debug store elsewhere and version stamp with date for ease-->
  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    <PackageOutputPath>$(MSBuildThisFileDirectory)..\..\dist\</PackageOutputPath>
    <VersionSuffix>dev</VersionSuffix>
    <VersionPrefix>$([System.DateTime]::Now.ToString("yyyy.MM.dd.HHmm"))</VersionPrefix>
  </PropertyGroup>
2 Views