Skip to content

Instantly share code, notes, and snippets.

@hoangitk
Forked from sayedihashimi/msbuild-get-date.proj
Created July 18, 2019 09:47
Show Gist options
  • Save hoangitk/553f9da462d783053ef12ed8137299f5 to your computer and use it in GitHub Desktop.
Save hoangitk/553f9da462d783053ef12ed8137299f5 to your computer and use it in GitHub Desktop.
MSBuild how to get a good formatted date
<Project
xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
ToolsVersion="4.0"
DefaultTargets="Demo" >
<Target Name="Demo">
<PropertyGroup>
<CurrentDate>$([System.DateTime]::Now.ToString(yyyyMMdd-mmss))</CurrentDate>
</PropertyGroup>
<Message Text="CurrentDate: $(CurrentDate)"/>
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment