-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
40 lines (35 loc) · 1.78 KB
/
Directory.Build.props
File metadata and controls
40 lines (35 loc) · 1.78 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
35
36
37
38
39
40
<Project>
<!--
This file provides common properties for all projects in the solution.
See build/Modulus.Architecture.props for AssemblyDomain attribute generation.
-->
<PropertyGroup>
<!--
Version Configuration:
- Set via command line: dotnet build -p:Version=1.2.3
- Set via environment: VERSION=1.2.3 nuke pack-libs
- Default: Auto-increment based on UTC datetime (1.0.YYDDD.HHmm)
-->
<Version Condition="'$(Version)' == ''">1.0.$([System.DateTime]::UtcNow.ToString("yy"))$([System.DateTime]::UtcNow.DayOfYear.ToString("000")).$([System.DateTime]::UtcNow.ToString("HHmm"))</Version>
<!-- NuGet Metadata -->
<Authors>Modulus Team</Authors>
<Company>Agibuild</Company>
<Copyright>Copyright © $([System.DateTime]::UtcNow.Year) Agibuild. All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/AGIBuild/Modulus</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>modulus;plugin;module;extensibility;avalonia;blazor;desktop;web</PackageTags>
<RepositoryUrl>https://github.com/AGIBuild/Modulus</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Build Properties -->
<LangVersion>latest</LangVersion>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
</PropertyGroup>
<!-- Include README and icon in all packages -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" Visible="false" />
<None Include="$(MSBuildThisFileDirectory)docs\Images\modules-logo-100.png" Pack="true" PackagePath="icon.png" Visible="false" />
</ItemGroup>
</Project>