mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 22:04:49 -04:00
11 lines
No EOL
450 B
Text
11 lines
No EOL
450 B
Text
<#@ template debug="false" hostspecific="false" language="C#" #>
|
|
<#@ output extension=".cs" #>
|
|
<#
|
|
var now = DateTime.UtcNow;
|
|
var version = $"0.0.{now.Year % 100:D2}{now.Month:D2}.{now.Day:D2}{now.Hour:D2}";
|
|
#>
|
|
// This code was generated by a tool. Any changes made manually will be lost
|
|
// the next time this code is regenerated.
|
|
using System.Reflection;
|
|
[assembly: AssemblyVersion("<#= version #>")]
|
|
[assembly: AssemblyFileVersion("<#= version #>")] |