-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
26 lines (23 loc) · 1.1 KB
/
Directory.Build.props
File metadata and controls
26 lines (23 loc) · 1.1 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
<Project>
<Import Project="..\Directory.Build.props" Condition="Exists('..\Directory.Build.props')" />
<PropertyGroup Label="ProjectSettings">
<Authors>Luca Briguglia</Authors>
<Company>Cledev Limited</Company>
<Copyright>Copyright Luca Briguglia</Copyright>
<Product>Memoria</Product>
<Description>Open source DDD, CQRS and Event Sourcing framework for .NET.</Description>
<PackageTags>CQRS EventSourcing DDD OpenCQRS Memoria</PackageTags>
<PackageProjectUrl>https://github.com/lucabriguglia/Memoria</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/lucabriguglia/Memoria</RepositoryUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>logo.png</PackageIcon>
<Version>1.1.0</Version>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)logo.png" Pack="true" PackagePath="" />
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>