forked from Amebis/eduVPN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.targets
22 lines (20 loc) · 895 Bytes
/
Default.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<!--
eduVPN - VPN for education and research
Copyright: 2017-2023 The Commons Conservancy
SPDX-License-Identifier: GPL-3.0+
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="Builtin" BeforeTargets="CoreCompile">
<!--
Compensates for missing __DATE__ and __TIME__ in C#
-->
<WriteLinesToFile File="$(IntermediateOutputPath)Builtin.cs" Lines="static partial class Builtin { public static long CompileTime = $([System.DateTime]::UtcNow.Ticks)%3B }" Overwrite="true" />
<ItemGroup>
<Compile Include="$(IntermediateOutputPath)Builtin.cs" />
</ItemGroup>
</Target>
<PropertyGroup Condition="'$(Platform)' == 'x64'">
<AlToolPath>$(TargetFrameworkSDKToolsDirectory)$(PlatformTarget)\</AlToolPath>
</PropertyGroup>
</Project>