-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
34 lines (30 loc) · 1.2 KB
/
Directory.Build.props
File metadata and controls
34 lines (30 loc) · 1.2 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
32
33
34
<Project>
<PropertyGroup>
<RepositoryUrl>https://github.com/myvas/ipfix</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<LangVersion>latest</LangVersion>
<Product>Myvas.Tools</Product>
<Copyright>Copyright (c) $([System.DateTime]::Now.Year) Myvas Foundation</Copyright>
</PropertyGroup>
<!-- nuget package -->
<PropertyGroup>
<PackageProjectUrl>https://github.com/myvas/ipfix</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Authors>Myvas</Authors>
<MaintainerEmail>4848285@qq.com</MaintainerEmail>
</PropertyGroup>
<!-- Versioning -->
<PropertyGroup>
<MinVerVersion>6.0</MinVerVersion>
<MinVerDefaultPreReleaseIdentifiers>alpha</MinVerDefaultPreReleaseIdentifiers>
</PropertyGroup>
<Target Name="SetFileVersion" AfterTargets="MinVer">
<PropertyGroup>
<FileVersion>$(MinVerMajor).$(MinVerMinor).$(MinVerPatch).$([System.DateTime]::Now.AddYears(-2021).ToString("yMMdd"))</FileVersion>
</PropertyGroup>
</Target>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>
</Project>