-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBasicHelper.csproj
More file actions
31 lines (27 loc) · 1.38 KB
/
BasicHelper.csproj
File metadata and controls
31 lines (27 loc) · 1.38 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
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net46</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<EnableUnsafeBinaryFormatterSerialization>true</EnableUnsafeBinaryFormatterSerialization>
<Authors>Dynesshely</Authors>
<Company>Crequency</Company>
<PackageLicenseExpression>AGPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageId>Catrol.$(AssemblyName)</PackageId>
<PackageProjectUrl>https://github.com/Crequency/BasicHelper/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Crequency/BasicHelper/</RepositoryUrl>
<Copyright>Copyright © Crequency 2022-present</Copyright>
<PackageIcon>icon.png</PackageIcon>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<Version>1.1.$([System.DateTime]::UtcNow.Date.Subtract($([System.DateTime]::Parse("2005-07-16"))).TotalDays).$([System.Math]::Floor($([System.DateTime]::UtcNow.TimeOfDay.TotalMinutes)))</Version>
</PropertyGroup>
<ItemGroup>
<None Include="icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>