forked from BaseMC/Aves
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathADB.csproj
More file actions
27 lines (21 loc) · 1.17 KB
/
ADB.csproj
File metadata and controls
27 lines (21 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<!-- Emulate .NET Frameworks versioning behavior 'GenerateVersionFromPatternAndCurrentTime' (UTC based) -->
<!-- https://github.com/dotnet/sdk/issues/8416#issuecomment-354095128 -->
<Build>$([System.DateTime]::op_Subtraction($([System.DateTime]::get_UtcNow().get_Date()),$([System.DateTime]::new(2000,1,1))).get_TotalDays())</Build>
<Revision>$([MSBuild]::Divide($([System.DateTime]::get_UtcNow().get_TimeOfDay().get_TotalSeconds()), 2).ToString('F0'))</Revision>
<VersionPrefix>1.0.$(Build).$(Revision)</VersionPrefix>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.7.82" />
<PackageReference Include="Litetex.CoreFrameworkBase" Version="1.0.7426.26100" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Octokit" Version="0.47.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aves.Shared\Aves.Shared.csproj" />
</ItemGroup>
</Project>