-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
37 lines (33 loc) · 1.2 KB
/
Directory.Build.props
File metadata and controls
37 lines (33 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
35
36
37
<Project>
<PropertyGroup>
<Authors>Dylan Snel</Authors>
<Copyright>Dylan Snel</Copyright>
<PackageProjectUrl>https://github.com/DylanSnel/DDDToolkit</PackageProjectUrl>
<RepositoryUrl>https://github.com/DylanSnel/DDDToolkit</RepositoryUrl>
<PackageTags>ddd;domain;driven;design;toolkit</PackageTags>
<PackageLanguage>en-US</PackageLanguage>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>DDDToolkit-Icon.png</PackageIcon>
<Version>2.0.2.20</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\DDDToolkit-Icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
<!--<ItemGroup>
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="$(PackageLicenseFile)"/>
</ItemGroup>-->
</Project>